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/file_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/file_search.h')
-rw-r--r-- | src/nvim/file_search.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/file_search.h b/src/nvim/file_search.h index 0b0b03c56a..833a1a05ff 100644 --- a/src/nvim/file_search.h +++ b/src/nvim/file_search.h @@ -1,6 +1,11 @@ #ifndef NVIM_FILE_SEARCH_H #define NVIM_FILE_SEARCH_H +/* Flags for find_file_*() functions. */ +#define FINDFILE_FILE 0 /* only files */ +#define FINDFILE_DIR 1 /* only directories */ +#define FINDFILE_BOTH 2 /* files and directories */ + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "file_search.h.generated.h" #endif |