aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/autocmd.c
diff options
context:
space:
mode:
authorkylo252 <59826753+kylo252@users.noreply.github.com>2022-04-27 06:38:12 +0200
committerGitHub <noreply@github.com>2022-04-26 21:38:12 -0700
commit0d41c4dee126b6d93ee8ed82302af47df9a50576 (patch)
tree6c85945ef14d2239a0f5501ed6c37caa55745f21 /src/nvim/autocmd.c
parent5f3018fa1a7a97d1f961f4c33e5ae418c19202ef (diff)
downloadrneovim-0d41c4dee126b6d93ee8ed82302af47df9a50576.tar.gz
rneovim-0d41c4dee126b6d93ee8ed82302af47df9a50576.tar.bz2
rneovim-0d41c4dee126b6d93ee8ed82302af47df9a50576.zip
refactor(build): remove unused includes #17078
Remove unused includes in src/nvim/buffer.c|h using the IWYU library. Yet another step towards #6371 and #549
Diffstat (limited to 'src/nvim/autocmd.c')
-rw-r--r--src/nvim/autocmd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/autocmd.c b/src/nvim/autocmd.c
index 3dc3d3d7a9..783cec4d60 100644
--- a/src/nvim/autocmd.c
+++ b/src/nvim/autocmd.c
@@ -4,7 +4,6 @@
// autocmd.c: Autocommand related functions
#include <signal.h>
-#include "lauxlib.h"
#include "nvim/api/private/helpers.h"
#include "nvim/ascii.h"
#include "nvim/autocmd.h"
@@ -27,6 +26,9 @@
#include "nvim/state.h"
#include "nvim/ui_compositor.h"
#include "nvim/vim.h"
+#include "nvim/window.h"
+
+#include "lauxlib.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "auevents_name_map.generated.h"