diff options
author | Othon BriganĂ³ <othonalberto@gmail.com> | 2017-04-22 10:44:58 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-22 15:44:58 +0200 |
commit | e41c044b530d2cc3f548fcef07862640eb249c58 (patch) | |
tree | b20b1d05d47aba19a963e8041ddefdbf5c2fd2ce /src/nvim/search.h | |
parent | 654c50b227b7616300763da75ad4a79151883694 (diff) | |
download | rneovim-e41c044b530d2cc3f548fcef07862640eb249c58.tar.gz rneovim-e41c044b530d2cc3f548fcef07862640eb249c58.tar.bz2 rneovim-e41c044b530d2cc3f548fcef07862640eb249c58.zip |
refactor/single-include (#6563)
Diffstat (limited to 'src/nvim/search.h')
-rw-r--r-- | src/nvim/search.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/search.h b/src/nvim/search.h index d4e40cb287..cb50742990 100644 --- a/src/nvim/search.h +++ b/src/nvim/search.h @@ -4,6 +4,12 @@ #include <stdbool.h> #include <stdint.h> +#include "nvim/types.h" +#include "nvim/buffer_defs.h" +#include "nvim/eval/typval.h" +#include "nvim/normal.h" +#include "nvim/os/time.h" + /* Values for the find_pattern_in_path() function args 'type' and 'action': */ #define FIND_ANY 1 #define FIND_DEFINE 2 |