diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2022-04-27 06:38:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 21:38:12 -0700 |
commit | 0d41c4dee126b6d93ee8ed82302af47df9a50576 (patch) | |
tree | 6c85945ef14d2239a0f5501ed6c37caa55745f21 /src/nvim/eval/funcs.c | |
parent | 5f3018fa1a7a97d1f961f4c33e5ae418c19202ef (diff) | |
download | rneovim-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/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index 9170dd113a..f572440edc 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -25,7 +25,6 @@ #include "nvim/eval/funcs.h" #include "nvim/eval/typval.h" #include "nvim/eval/userfunc.h" -#include "nvim/ex_cmds2.h" #include "nvim/ex_docmd.h" #include "nvim/ex_getln.h" #include "nvim/file_search.h" @@ -70,7 +69,7 @@ #include "nvim/undo.h" #include "nvim/version.h" #include "nvim/vim.h" - +#include "nvim/window.h" /// Describe data to return from find_some_match() typedef enum { |