diff options
author | James McCoy <jamessan@jamessan.com> | 2016-06-20 21:04:08 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-07-08 01:43:37 -0400 |
commit | 55dcf0918c364dd58e700cde5f2efbf7da4b3051 (patch) | |
tree | 7849ba89df702346cce1b31ca756eaa2540a8083 /src/nvim/vim.h | |
parent | 26f74fdf61827f5afc6fe4e90b9e9497264cb039 (diff) | |
download | rneovim-55dcf0918c364dd58e700cde5f2efbf7da4b3051.tar.gz rneovim-55dcf0918c364dd58e700cde5f2efbf7da4b3051.tar.bz2 rneovim-55dcf0918c364dd58e700cde5f2efbf7da4b3051.zip |
vim-patch:7.4.1551
Problem: Cannot generate help tags in all doc directories.
Solution: Make ":helptags ALL" work.
https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 5 |
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 */ |