diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-13 10:40:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-13 10:40:53 +0800 |
commit | 6a273af10517d1f7e4ea85635f1d25a9158adeb5 (patch) | |
tree | 58236cf1b3288713603bfabedecd0f3399aca47f /src/nvim/help.c | |
parent | f76e1ac92eda9cb364a9de49422b45a035256ca6 (diff) | |
download | rneovim-6a273af10517d1f7e4ea85635f1d25a9158adeb5.tar.gz rneovim-6a273af10517d1f7e4ea85635f1d25a9158adeb5.tar.bz2 rneovim-6a273af10517d1f7e4ea85635f1d25a9158adeb5.zip |
refactor: remove typval.h from most header files (#23601)
Because typval_defs.h is enough for most of them.
Diffstat (limited to 'src/nvim/help.c')
-rw-r--r-- | src/nvim/help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/help.c b/src/nvim/help.c index 633e9df244..d412f3a098 100644 --- a/src/nvim/help.c +++ b/src/nvim/help.c @@ -22,6 +22,7 @@ #include "nvim/globals.h" #include "nvim/help.h" #include "nvim/macros.h" +#include "nvim/mark.h" #include "nvim/mbyte.h" #include "nvim/memline.h" #include "nvim/memory.h" |