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 /test/functional/vimscript/eval_spec.lua | |
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 'test/functional/vimscript/eval_spec.lua')
-rw-r--r-- | test/functional/vimscript/eval_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/vimscript/eval_spec.lua b/test/functional/vimscript/eval_spec.lua index e1459ab5b8..0c2ca8de78 100644 --- a/test/functional/vimscript/eval_spec.lua +++ b/test/functional/vimscript/eval_spec.lua @@ -5,7 +5,7 @@ -- null_spec.lua -- operators_spec.lua -- --- Tests for the Vimscript |functions| library should live in: +-- Tests for the Vimscript |builtin-functions| library should live in: -- test/functional/vimscript/<funcname>_spec.lua -- test/functional/vimscript/functions_spec.lua |