aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/help.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-17 17:29:06 +0800
committerGitHub <noreply@github.com>2022-08-17 17:29:06 +0800
commit5d8278591a9a527df406b6df0ceb5538af4567ca (patch)
treeef9a7ffbb1eb1c9ea8f9815a02380d7a42289771 /src/nvim/help.h
parentbccb5de89da452d9136b3c813be584f15d3018ba (diff)
downloadrneovim-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.h11
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