vim-lua-inspect
vim-lua-inspect copied to clipboard
Semantic highlighting for Lua in Vim
Hi, I am new with lua and wanted some highlighting in vim. So I got the luainspect and the misc packege and installed them like the Infofiles told me. When...
I installed using Vundle. Full list of installed plugins (though I don't see any reason for them to be interfering, but just in case): tmhedberg/SimpylFold, vim-scripts/indentpython.vim, Valloric/YouCompleteMe, scrooloose/syntastic, xolox/vim-misc, xolox/vim-lua-ftplugin,...
Lua is frequently used as embedded language (for example in games). The applications, that uses Lua, provides some API to it. But of course Lua Inspect doesn't know anything about...
By default, It runs luainspect after `:w` Add a configure, add runs luainspect! after `:w`
I have some Lua scripts with relative paths in it: ``` lua require "Scripts/Foo/Bar" class 'BarClass' (FooClass) ... ``` Usually I `cd` into the top most directory, e.g. `~/Developer/Foo` which...