aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index c2f0a0ebd3..745888af6a 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -308,4 +308,9 @@ enum {
# define SET_NO_HLSEARCH(flag) no_hlsearch = (flag); set_vim_var_nr( \
VV_HLSEARCH, !no_hlsearch && p_hls)
+// Used for flags of do_in_path()
+#define DIP_ALL 1 // all matches, not just the first one
+#define DIP_DIR 2 // find directories instead of files
+#define DIP_ERR 4 // give an error message when none found
+
#endif /* NVIM_VIM_H */