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/help.h | |
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/help.h')
-rw-r--r-- | src/nvim/help.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/help.h b/src/nvim/help.h new file mode 100644 index 0000000000..21e11392ee --- /dev/null +++ b/src/nvim/help.h @@ -0,0 +1,11 @@ +#ifndef NVIM_HELP_H +#define NVIM_HELP_H + +#include <stdbool.h> + +#include "nvim/ex_cmds_defs.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "help.h.generated.h" +#endif +#endif // NVIM_HELP_H |