diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-27 18:37:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 18:37:35 +0800 |
commit | acf525287950277e7b83794184e3df5dcfdecc48 (patch) | |
tree | e31224f05d196d13bf8a057cc6aa8809ee5ed9f0 /src/nvim/api/private/helpers.h | |
parent | a03bd2b87882c2a7e0c9e63dadcb2e5fabda1670 (diff) | |
download | rneovim-acf525287950277e7b83794184e3df5dcfdecc48.tar.gz rneovim-acf525287950277e7b83794184e3df5dcfdecc48.tar.bz2 rneovim-acf525287950277e7b83794184e3df5dcfdecc48.zip |
refactor: remove vim.h from more headers (#26244)
Diffstat (limited to 'src/nvim/api/private/helpers.h')
-rw-r--r-- | src/nvim/api/private/helpers.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/api/private/helpers.h b/src/nvim/api/private/helpers.h index 82c24b7c65..56ca9b2057 100644 --- a/src/nvim/api/private/helpers.h +++ b/src/nvim/api/private/helpers.h @@ -2,11 +2,13 @@ #include <stdbool.h> #include <stddef.h> +#include <stdint.h> #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/dispatch.h" #include "nvim/decoration.h" +#include "nvim/eval/typval_defs.h" #include "nvim/ex_eval_defs.h" #include "nvim/getchar.h" #include "nvim/gettext.h" @@ -14,7 +16,7 @@ #include "nvim/macros.h" #include "nvim/map.h" #include "nvim/memory.h" -#include "nvim/vim.h" +#include "nvim/message.h" #define OBJECT_OBJ(o) o |