diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-12-23 05:43:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 05:43:52 -0800 |
commit | 2a7d0ed6145bf3f8b139c2694563f460f829813a (patch) | |
tree | 8bb488f7cb612ecf56ccea2c62042012584eba68 /src/nvim/file_search.c | |
parent | 55c5d0de262b8a9eb03a65f6e6f45e8d26213eb4 (diff) | |
download | rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.gz rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.bz2 rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.zip |
refactor: iwyu #31637
Result of `make iwyu` (after some "fixups").
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index d183978d2d..1e6153bf8d 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -41,6 +41,7 @@ // functions. #include <assert.h> +#include <ctype.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> @@ -52,6 +53,7 @@ #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" +#include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cursor.h" #include "nvim/errors.h" @@ -67,6 +69,7 @@ #include "nvim/message.h" #include "nvim/normal.h" #include "nvim/option.h" +#include "nvim/option_defs.h" #include "nvim/option_vars.h" #include "nvim/os/fs.h" #include "nvim/os/fs_defs.h" @@ -76,7 +79,6 @@ #include "nvim/path.h" #include "nvim/strings.h" #include "nvim/vim_defs.h" -#include "nvim/window.h" static char *ff_expand_buffer = NULL; // used for expanding filenames |