diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-04-09 19:36:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 19:36:23 +0200 |
commit | 1b030f889ccc3be9ced67bcbe3e817f20536d072 (patch) | |
tree | 43dfd3b61b5719ad70484674a85d1d7ce62778c8 | |
parent | e3d0fb0d3cdc09a716e925627ca0da47224e1390 (diff) | |
download | rneovim-1b030f889ccc3be9ced67bcbe3e817f20536d072.tar.gz rneovim-1b030f889ccc3be9ced67bcbe3e817f20536d072.tar.bz2 rneovim-1b030f889ccc3be9ced67bcbe3e817f20536d072.zip |
doc: advertise nanotee/nvim-lua-guide (#14332) [skip ci]
Mention https://github.com/nanotee/nvim-lua-guide at the beginning of ":h lua" as well as ":h lua-vimscript".
Closes #12369 .
-rw-r--r-- | runtime/doc/lua.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index c2fc25431c..6d007c0e44 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -18,7 +18,8 @@ an idea of what lurks beneath: > Nvim includes a "standard library" |lua-stdlib| for Lua. It complements the "editor stdlib" (|functions| and Ex commands) and the |API|, all of which can -be used from Lua code. +be used from Lua code. A good overview of using Lua in neovim is given by +https://github.com/nanotee/nvim-lua-guide. Module conflicts are resolved by "last wins". For example if both of these are on 'runtimepath': @@ -831,6 +832,7 @@ LUA-VIMSCRIPT BRIDGE *lua-vimscript* Nvim Lua provides an interface to Vimscript variables and functions, and editor commands and options. +See also https://github.com/nanotee/nvim-lua-guide. vim.call({func}, {...}) *vim.call()* Invokes |vim-function| or |user-function| {func} with arguments {...}. |