diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-07-26 15:18:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-26 15:18:09 +0800 |
| commit | b8b77820371978a5f937ccc0db356574ae33371b (patch) | |
| tree | 1bd313ea23bc347d19845d912535e7b64450e4d6 /src/nvim/generators | |
| parent | 14d047ad2f448885de39966d1963f15d3fa21089 (diff) | |
| download | rneovim-b8b77820371978a5f937ccc0db356574ae33371b.tar.gz rneovim-b8b77820371978a5f937ccc0db356574ae33371b.tar.bz2 rneovim-b8b77820371978a5f937ccc0db356574ae33371b.zip | |
vim-patch:partial:8.1.1981: the evalfunc.c file is too big (#24490)
Problem: The evalfunc.c file is too big.
Solution: Move undo functions to undo.c. Move cmdline functions to
ex_getln.c. Move some container functions to list.c.
https://github.com/vim/vim/commit/08c308aeb5e7dfa18fa61f261b0bff79517a4883
Undo functions only. Cmdline functions have already been moved.
A lot of container functions have been added to eval/funcs.c instead of
list.c in previously ported Vim 8.2.x patches, so deal with that later.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/generators')
| -rw-r--r-- | src/nvim/generators/gen_eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/generators/gen_eval.lua b/src/nvim/generators/gen_eval.lua index e93e9a8d02..6858fbc917 100644 --- a/src/nvim/generators/gen_eval.lua +++ b/src/nvim/generators/gen_eval.lua @@ -39,6 +39,7 @@ hashpipe:write([[ #include "nvim/strings.h" #include "nvim/sign.h" #include "nvim/testing.h" +#include "nvim/undo.h" ]]) |