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/quickfix.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/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index d01ee42cbf..94159181d1 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -23,6 +23,7 @@ #include "nvim/ex_getln.h" #include "nvim/fileio.h" #include "nvim/fold.h" +#include "nvim/help.h" #include "nvim/highlight_group.h" #include "nvim/mark.h" #include "nvim/mbyte.h" |