diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-26 22:58:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 22:58:52 +0800 |
commit | 6361806aa28edca55ad3316a58bc3e936df9c0eb (patch) | |
tree | fed82d95b3cadb76112b6a1124e7d7def6b7bc2c /src/nvim/fold.c | |
parent | 34509bbea3e8c6a8033911aea645b1b5579f7d1a (diff) | |
download | rneovim-6361806aa28edca55ad3316a58bc3e936df9c0eb.tar.gz rneovim-6361806aa28edca55ad3316a58bc3e936df9c0eb.tar.bz2 rneovim-6361806aa28edca55ad3316a58bc3e936df9c0eb.zip |
refactor: move garray_T to garray_defs.h (#26227)
Diffstat (limited to 'src/nvim/fold.c')
-rw-r--r-- | src/nvim/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fold.c b/src/nvim/fold.c index 477e4a20cd..1cd57946a6 100644 --- a/src/nvim/fold.c +++ b/src/nvim/fold.c @@ -20,7 +20,6 @@ #include "nvim/charset.h" #include "nvim/cursor.h" #include "nvim/decoration.h" -#include "nvim/decoration_defs.h" #include "nvim/diff.h" #include "nvim/drawscreen.h" #include "nvim/eval.h" @@ -29,6 +28,7 @@ #include "nvim/extmark.h" #include "nvim/fold.h" #include "nvim/garray.h" +#include "nvim/garray_defs.h" #include "nvim/gettext.h" #include "nvim/globals.h" #include "nvim/indent.h" |