diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-28 10:47:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 10:47:22 +0800 |
commit | 1a8f60c7d2699826b51f23b040b83b1d96a14930 (patch) | |
tree | f75a8679c9991a47b6f637c4cd7fb2f771aa6508 /src/nvim/eval.c | |
parent | 3a3474371b6b87e630e7aa217e7860e9154cd563 (diff) | |
download | rneovim-1a8f60c7d2699826b51f23b040b83b1d96a14930.tar.gz rneovim-1a8f60c7d2699826b51f23b040b83b1d96a14930.tar.bz2 rneovim-1a8f60c7d2699826b51f23b040b83b1d96a14930.zip |
refactor: move hashtab types to hashtab_defs.h (#26262)
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 02e0be9a94..e7fe7e17bc 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -42,6 +42,7 @@ #include "nvim/gettext.h" #include "nvim/globals.h" #include "nvim/grid_defs.h" +#include "nvim/hashtab.h" #include "nvim/highlight_group.h" #include "nvim/insexpand.h" #include "nvim/keycodes.h" |