diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-28 07:47:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 07:47:36 +0800 |
commit | 718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad (patch) | |
tree | b9dcecd6373c0f9a51c5dde37c2c7c7cf5f43c62 /src/nvim/file_search.h | |
parent | 6c14ae6bfaf51415b555e9a6b85d1d280976358d (diff) | |
download | rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.tar.gz rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.tar.bz2 rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.zip |
refactor: fix runtime_defs.h (#26259)
Diffstat (limited to 'src/nvim/file_search.h')
-rw-r--r-- | src/nvim/file_search.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/file_search.h b/src/nvim/file_search.h index ab47445a79..d4b5c5d352 100644 --- a/src/nvim/file_search.h +++ b/src/nvim/file_search.h @@ -3,7 +3,7 @@ #include <stdlib.h> #include "nvim/globals.h" -#include "nvim/types_defs.h" +#include "nvim/types_defs.h" // IWYU pragma: keep // Flags for find_file_*() functions. #define FINDFILE_FILE 0 // only files |