diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-22 20:27:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-22 20:27:35 -0700 |
commit | 9e4db2ef508b02583c7f30d12c045ccc07328f16 (patch) | |
tree | 1f239179a6cf53520290949ae9ac30be537b133c /src/nvim/ex_cmds.c | |
parent | 02393a0c74d3aaeece939bafa4f658763acca965 (diff) | |
parent | 3b6b528ea98ca7bf8cd5ae1cf103203e3ca67814 (diff) | |
download | rneovim-9e4db2ef508b02583c7f30d12c045ccc07328f16.tar.gz rneovim-9e4db2ef508b02583c7f30d12c045ccc07328f16.tar.bz2 rneovim-9e4db2ef508b02583c7f30d12c045ccc07328f16.zip |
Merge #11199 from bobrippling/vim-8.1.1228
vim-patch:8.1.{1099,1228,1962} add 'tagfunc'
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 00de7a3d66..2e8bd79c81 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4905,7 +4905,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches, *matches = NULL; *num_matches = 0; - int flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; + int flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE | TAG_NO_TAGFUNC; if (keep_lang) { flags |= TAG_KEEP_LANG; } |