mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00

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
12 lines
194 B
C
12 lines
194 B
C
#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
|