aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.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/buffer.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/buffer.c')
-rw-r--r--src/nvim/buffer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 8840813b84..99a24464a8 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -25,7 +25,6 @@
#include <string.h>
#include "nvim/api/private/helpers.h"
-#include "nvim/api/vim.h"
#include "nvim/ascii.h"
#include "nvim/assert.h"
#include "nvim/buffer.h"
@@ -50,7 +49,6 @@
#include "nvim/garray.h"
#include "nvim/getchar.h"
#include "nvim/hashtab.h"
-#include "nvim/highlight.h"
#include "nvim/highlight_group.h"
#include "nvim/indent.h"
#include "nvim/indent_c.h"
@@ -64,13 +62,11 @@
#include "nvim/os/input.h"
#include "nvim/os/os.h"
#include "nvim/os/time.h"
-#include "nvim/os_unix.h"
#include "nvim/path.h"
#include "nvim/plines.h"
#include "nvim/quickfix.h"
#include "nvim/regexp.h"
#include "nvim/screen.h"
-#include "nvim/shada.h"
#include "nvim/sign.h"
#include "nvim/spell.h"
#include "nvim/strings.h"