diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-17 17:29:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 17:29:06 +0800 |
commit | 5d8278591a9a527df406b6df0ceb5538af4567ca (patch) | |
tree | ef9a7ffbb1eb1c9ea8f9815a02380d7a42289771 /src/nvim/buffer.c | |
parent | bccb5de89da452d9136b3c813be584f15d3018ba (diff) | |
download | rneovim-5d8278591a9a527df406b6df0ceb5538af4567ca.tar.gz rneovim-5d8278591a9a527df406b6df0ceb5538af4567ca.tar.bz2 rneovim-5d8278591a9a527df406b6df0ceb5538af4567ca.zip |
vim-patch:8.2.1262: src/ex_cmds.c file is too big (#19811)
Problem: src/ex_cmds.c file is too big.
Solution: Move help related code to src/help.c. (Yegappan Lakshmanan,
closes vim/vim#6506)
https://github.com/vim/vim/commit/f868ba89039045b25efe83d12ca501d657e170e8
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 18915f1042..08c2746d7b 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -52,6 +52,7 @@ #include "nvim/garray.h" #include "nvim/getchar.h" #include "nvim/hashtab.h" +#include "nvim/help.h" #include "nvim/highlight_group.h" #include "nvim/indent.h" #include "nvim/indent_c.h" |