diff options
author | Rob Pilling <robpilling@gmail.com> | 2019-10-10 22:06:45 +0100 |
---|---|---|
committer | Rob Pilling <robpilling@gmail.com> | 2019-10-22 20:13:02 +0100 |
commit | 194f7bfacea934177d524197127242947bd28471 (patch) | |
tree | d13ac87810663c783907e96c8a9a691630755ddf /src/nvim/ex_cmds.c | |
parent | e284b7233fb459a7a6d4ce0f98371b34b3639d2b (diff) | |
download | rneovim-194f7bfacea934177d524197127242947bd28471.tar.gz rneovim-194f7bfacea934177d524197127242947bd28471.tar.bz2 rneovim-194f7bfacea934177d524197127242947bd28471.zip |
vim-patch:8.1.1228: not possible to process tags with a function
Problem: Not possible to process tags with a function.
Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes vim/vim#4010)
https://github.com/vim/vim/commit/45e18cbdc40afd8144d20dcc07ad2d981636f4c9
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; } |