aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/sign.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/sign.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/sign.c')
-rw-r--r--src/nvim/sign.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/sign.c b/src/nvim/sign.c
index a50b4a5a99..6685c2f231 100644
--- a/src/nvim/sign.c
+++ b/src/nvim/sign.c
@@ -5,6 +5,7 @@
// sign.c: functions for managing with signs
//
+#include "nvim/sign.h"
#include "nvim/ascii.h"
#include "nvim/buffer.h"
@@ -17,9 +18,9 @@
#include "nvim/move.h"
#include "nvim/option.h"
#include "nvim/screen.h"
-#include "nvim/sign.h"
#include "nvim/syntax.h"
#include "nvim/vim.h"
+#include "nvim/window.h"
/// Struct to hold the sign properties.
typedef struct sign sign_T;