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)
f868ba8903
This commit is contained in:
zeertzjq
2022-08-17 17:29:06 +08:00
committed by GitHub
parent bccb5de89d
commit 5d8278591a
10 changed files with 1199 additions and 1173 deletions

11
src/nvim/help.h Normal file
View File

@@ -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