diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-29 16:47:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 16:47:29 +0800 |
commit | 0b79137c59fbe44bded76f123602e552dc6f7b03 (patch) | |
tree | 2d1792b209f4536dc593e3dd904ce57e7407e050 /src/nvim/arglist.c | |
parent | 98695b49992daa2b40eb3d5b5e4a86e99c92ed0e (diff) | |
download | rneovim-0b79137c59fbe44bded76f123602e552dc6f7b03.tar.gz rneovim-0b79137c59fbe44bded76f123602e552dc6f7b03.tar.bz2 rneovim-0b79137c59fbe44bded76f123602e552dc6f7b03.zip |
vim-patch:8.1.2001: some source files are too big (#21231)
Problem: Some source files are too big.
Solution: Move buffer and window related functions to evalbuffer.c and
evalwindow.c. (Yegappan Lakshmanan, closes vim/vim#4898)
https://github.com/vim/vim/commit/261f346f8154c0ec7094a4a211c653c74e9f7c2e
Diffstat (limited to 'src/nvim/arglist.c')
-rw-r--r-- | src/nvim/arglist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/arglist.c b/src/nvim/arglist.c index 8621e48754..0d52cf647f 100644 --- a/src/nvim/arglist.c +++ b/src/nvim/arglist.c @@ -13,9 +13,9 @@ #include "nvim/ascii.h" #include "nvim/buffer.h" #include "nvim/charset.h" -#include "nvim/eval.h" #include "nvim/eval/typval.h" #include "nvim/eval/typval_defs.h" +#include "nvim/eval/window.h" #include "nvim/ex_cmds.h" #include "nvim/ex_cmds2.h" #include "nvim/ex_cmds_defs.h" |