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/buffer_defs.h | |
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/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index d3b80c8891..0269060c2f 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -21,7 +21,7 @@ typedef struct { #include "nvim/extmark_defs.h" #include "nvim/garray_defs.h" #include "nvim/grid_defs.h" -#include "nvim/hashtab.h" +#include "nvim/hashtab_defs.h" #include "nvim/highlight_defs.h" #include "nvim/map.h" #include "nvim/mapping_defs.h" |