File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ an idea of what lurks beneath: >
18
18
19
19
Nvim includes a "standard library" | lua-stdlib | for Lua. It complements the
20
20
"editor stdlib" (| functions | and Ex commands) and the | API | , all of which can
21
- be used from Lua code.
21
+ be used from Lua code. A good overview of using Lua in neovim is given by
22
+ https://github.com/nanotee/nvim-lua-guide .
22
23
23
24
Module conflicts are resolved by "last wins". For example if both of these
24
25
are on 'runtimepath' :
@@ -831,6 +832,7 @@ LUA-VIMSCRIPT BRIDGE *lua-vimscript*
831
832
832
833
Nvim Lua provides an interface to Vimscript variables and functions, and
833
834
editor commands and options.
835
+ See also https://github.com/nanotee/nvim-lua-guide .
834
836
835
837
vim.call({func} , {...} ) *vim.call()*
836
838
Invokes | vim-function | or | user-function | {func} with arguments {...} .
You can’t perform that action at this time.
0 commit comments