diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-12 21:28:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-12 21:28:26 +0100 |
commit | 6bef5306e4f2cacb3a93667992c2312d4b293c9d (patch) | |
tree | 8e460dcff0698e3ca8c0b60f466705d024a75ab0 /src/vim.h | |
parent | 2d8f56acb32428d0f965d42dd13b27100b46fa15 (diff) | |
download | vim-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.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 */ |