summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-12 21:28:26 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-12 21:28:26 +0100
commit6bef5306e4f2cacb3a93667992c2312d4b293c9d (patch)
tree8e460dcff0698e3ca8c0b60f466705d024a75ab0 /src/vim.h
parent2d8f56acb32428d0f965d42dd13b27100b46fa15 (diff)
downloadvim-6bef5306e4f2cacb3a93667992c2312d4b293c9d.zip
patch 7.4.1551
Problem: Cannot generate help tags in all doc directories. Solution: Make ":helptags ALL" work.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index a89b6683a..ea3c498ba 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2288,4 +2288,9 @@ typedef int VimClipboard; /* This is required for the prototypes. */
int vim_main2(int argc, char **argv);
#endif
+/* 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 /* VIM__H */