aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/channel.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-13 08:59:11 +0800
committerGitHub <noreply@github.com>2022-08-13 08:59:11 +0800
commit6f14c5d2ddbefea51920762769eec217d19a9ed9 (patch)
treea599db91592f2118dff8db9d15908ccff36003d8 /src/nvim/channel.c
parente23c5fda0a3fe385af615372c474d4dad3b74464 (diff)
downloadrneovim-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/channel.c')
-rw-r--r--src/nvim/channel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/channel.c b/src/nvim/channel.c
index 20fae3a206..169f2dacde 100644
--- a/src/nvim/channel.c
+++ b/src/nvim/channel.c
@@ -4,14 +4,15 @@
#include "nvim/api/private/converter.h"
#include "nvim/api/private/helpers.h"
#include "nvim/api/ui.h"
+#include "nvim/autocmd.h"
#include "nvim/channel.h"
#include "nvim/eval.h"
#include "nvim/eval/encode.h"
#include "nvim/event/socket.h"
-#include "nvim/fileio.h"
#include "nvim/lua/executor.h"
#include "nvim/msgpack_rpc/channel.h"
#include "nvim/msgpack_rpc/server.h"
+#include "nvim/os/fs.h"
#include "nvim/os/shell.h"
#ifdef WIN32
# include "nvim/os/os_win_console.h"