diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:13:52 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:13:52 -0400 |
commit | 168575f3f73f79185db0abdb91be364c0d0f29f9 (patch) | |
tree | c9bbf386710d6c57021e03811b2483bcd574812f /src/nvim/search.h | |
parent | 284a38a065f6cedd37f8f7d75c1953884653503c (diff) | |
parent | 1ff8ed7b823623e9abd224f78fbce7e20ce66f5d (diff) | |
download | rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.tar.gz rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.tar.bz2 rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.zip |
Merge #774 'Move defines from vim.h to other header files'
Diffstat (limited to 'src/nvim/search.h')
-rw-r--r-- | src/nvim/search.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/search.h b/src/nvim/search.h index 7dc45f307c..c608aa4a4c 100644 --- a/src/nvim/search.h +++ b/src/nvim/search.h @@ -1,6 +1,17 @@ #ifndef NVIM_SEARCH_H #define NVIM_SEARCH_H +/* Values for the find_pattern_in_path() function args 'type' and 'action': */ +#define FIND_ANY 1 +#define FIND_DEFINE 2 +#define CHECK_PATH 3 + +#define ACTION_SHOW 1 +#define ACTION_GOTO 2 +#define ACTION_SPLIT 3 +#define ACTION_SHOW_ALL 4 +#define ACTION_EXPAND 5 + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "search.h.generated.h" #endif |