diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-13 08:59:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 08:59:11 +0800 |
commit | 6f14c5d2ddbefea51920762769eec217d19a9ed9 (patch) | |
tree | a599db91592f2118dff8db9d15908ccff36003d8 /src/nvim/terminal.c | |
parent | e23c5fda0a3fe385af615372c474d4dad3b74464 (diff) | |
download | rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.tar.gz rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.tar.bz2 rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.zip |
refactor: remove some unused includes (#19747)
- Remove autocmd.h from fileio.h
- Remove normal.h from main.h
- Move bufinfo_T from undo_defs.h to undo.c
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 8a612294d0..dffcf89f2c 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -44,16 +44,15 @@ #include "nvim/api/private/helpers.h" #include "nvim/ascii.h" +#include "nvim/autocmd.h" #include "nvim/buffer.h" #include "nvim/change.h" #include "nvim/cursor.h" -#include "nvim/edit.h" #include "nvim/eval.h" #include "nvim/event/loop.h" #include "nvim/event/time.h" #include "nvim/ex_cmds.h" #include "nvim/ex_docmd.h" -#include "nvim/fileio.h" #include "nvim/getchar.h" #include "nvim/highlight.h" #include "nvim/highlight_group.h" |