nlua.nvim
nlua.nvim copied to clipboard
Lua Development for Neovim
for my neovim keymap, **I remap the K for \** after I install this plugin, I step into the help-doc when I use 'K' for scrolling, How can I fix...
One useful addition to a nvim-lua standard library would be a profiler (since the vim `prof func *` can't trace into lua). I've played a bit with the `debug.sethook` based...
Fix plugin searching for directory "bin/OSX" and instead use "bin/macOS" (auto sumneko_lua install)
https://github.com/tjdevries/nlua.nvim/blob/a0722bd2f6fdf54f85aaf8dcd6a1032f64c83905/lua/nlua/lsp/nvim.lua#L32 should be `isdirectory(...) == 1` or all will be added
thank you for this v helpful plugin. with the following hiearchy: ``` nvim/ - init.lua - lua/ - domain/ - file.lua ``` a line in file init.lua says "require('domain.file')". If...
Resolves #20
Got this error while executing :luafile scripts/download_sumneko.lua I don't know if it is an issue or I have done something wrong, sorry if this is the case. ``` E5113: Error...
This corrects the binary location on macOS and makes the sumneko setup a little more configurable; the latter gives more flexibility for hacks or those who do not use your...
Since lua LSP has predictable platforms it builds to, you could do a conditional check and set the bin location https://github.com/tjdevries/nlua.nvim/blob/b24d8384f5fec15e560386ab045b216590c38de4/lua/nlua/lsp/nvim.lua#L7 ```lua if jit.os == 'osx' then local bin_location =...