diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-17 22:18:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:18:34 +0800 |
commit | f7cfca49d6f1380b2ec0b0f7723ea308d0810857 (patch) | |
tree | f820b9f500101b3df82cd9e17ec6bbd2f2212640 /src/nvim/autocmd.c | |
parent | f5588ee8968c564f6f7b0e42ac0ad44f83489659 (diff) | |
download | rneovim-f7cfca49d6f1380b2ec0b0f7723ea308d0810857.tar.gz rneovim-f7cfca49d6f1380b2ec0b0f7723ea308d0810857.tar.bz2 rneovim-f7cfca49d6f1380b2ec0b0f7723ea308d0810857.zip |
refactor: remove some unused includes (#19820)
Replace grid.h in screen.h and screen.h in buffer.h with grid_defs.h
Diffstat (limited to 'src/nvim/autocmd.c')
-rw-r--r-- | src/nvim/autocmd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/autocmd.c b/src/nvim/autocmd.c index 0d8efbb830..218aad0099 100644 --- a/src/nvim/autocmd.c +++ b/src/nvim/autocmd.c @@ -20,6 +20,7 @@ #include "nvim/ex_getln.h" #include "nvim/fileio.h" #include "nvim/getchar.h" +#include "nvim/grid.h" #include "nvim/insexpand.h" #include "nvim/lua/executor.h" #include "nvim/map.h" @@ -28,6 +29,7 @@ #include "nvim/profile.h" #include "nvim/regexp.h" #include "nvim/runtime.h" +#include "nvim/screen.h" #include "nvim/search.h" #include "nvim/state.h" #include "nvim/ui_compositor.h" |