diff options
author | Daniel Steinberg <dstein64@users.noreply.github.com> | 2022-01-07 12:28:17 -0500 |
---|---|---|
committer | Daniel Steinberg <dstein64@users.noreply.github.com> | 2022-01-29 15:19:29 -0500 |
commit | a94632d2126823bcd593f4cdd5a41aaff197b291 (patch) | |
tree | 834805154e96cbe3b1307f45a2db9fd48cf564a6 /runtime/doc/lua.txt | |
parent | 4458413bc02a1308bd722611227664033916d6f7 (diff) | |
download | rneovim-a94632d2126823bcd593f4cdd5a41aaff197b291.tar.gz rneovim-a94632d2126823bcd593f4cdd5a41aaff197b291.tar.bz2 rneovim-a94632d2126823bcd593f4cdd5a41aaff197b291.zip |
vim-patch:8.2.3917: the eval.txt help file is way too big
Problem: The eval.txt help file is way too big.
Solution: Move the builtin function details to a separate file.
https://github.com/vim/vim/commit/1cae5a0a034d0545360387407a7a409310f1efe2
Note: Neovim-specific references to |functions| were changed to
|builtin-functions|. This included updates to:
1. test/functional/vimscript/functions_spec.lua
2. test/functional/vimscript/eval_spec.lua
3. runtime/doc/lua.txt
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 3d4abed550..77f1dad6c7 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -17,9 +17,9 @@ an idea of what lurks beneath: > :lua print(vim.inspect(package.loaded)) 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. A good overview of using Lua in neovim is given by -https://github.com/nanotee/nvim-lua-guide. +"editor stdlib" (|builtin-functions| and Ex commands) and the |API|, all of +which can 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': |