diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-12-03 09:44:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 09:44:28 -0800 |
commit | ae93c7f369a174f3d738ab55030de2c9dfc10c57 (patch) | |
tree | edda44dff7261c3b28e47f9493d8aba998ce482d /runtime/doc/lua.txt | |
parent | 2495e7e22a0d56911d3677a17de3ff946b68a9a1 (diff) | |
download | rneovim-ae93c7f369a174f3d738ab55030de2c9dfc10c57.tar.gz rneovim-ae93c7f369a174f3d738ab55030de2c9dfc10c57.tar.bz2 rneovim-ae93c7f369a174f3d738ab55030de2c9dfc10c57.zip |
docs: misc, help tags for neovim.io searches #31428
Problem:
Various keywords are commonly searched-for on https://neovim.io, but
don't have help tags.
Solution:
Add help tags.
fix #31327
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 047e263768..48fa595a53 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -17,9 +17,9 @@ get an idea of what lurks beneath: >vim :lua vim.print(package.loaded) Nvim includes a "standard library" |lua-stdlib| for Lua. It complements the -"editor stdlib" (|builtin-functions| and |Ex-commands|) and the |API|, all of -which can be used from Lua code (|lua-vimscript| |vim.api|). Together these -"namespaces" form the Nvim programming interface. +"editor stdlib" (|vimscript-functions| + |Ex-commands|) and the |API|, all of +which can be used from Lua code (|lua-vimscript| |vim.api|). These three +namespaces form the Nvim programming interface. Lua plugins and user config are automatically discovered and loaded, just like Vimscript. See |lua-guide| for practical guidance. |