diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-21 10:27:59 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-21 10:35:26 -0400 |
commit | c620ca4cc2f5c0b3cebde2e172ed1682b06f4495 (patch) | |
tree | 34a631b515f553447aa21f0400c8a576bb20dc61 /runtime | |
parent | 749a8b6be767ee3e4dfd83af72973b386ac5ead1 (diff) | |
download | rneovim-c620ca4cc2f5c0b3cebde2e172ed1682b06f4495.tar.gz rneovim-c620ca4cc2f5c0b3cebde2e172ed1682b06f4495.tar.bz2 rneovim-c620ca4cc2f5c0b3cebde2e172ed1682b06f4495.zip |
vim-patch:8.2.2634: 'tagfunc' does not indicate using a pattern
Problem: 'tagfunc' does not indicate using a pattern.
Solution: Add the "r" flag. (Andy Massimino, closes vim/vim#7982)
https://github.com/vim/vim/commit/f90c855c71863296859780f7b4e0386e96f1c465
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/tagsrch.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt index 23db809543..a8848b103e 100644 --- a/runtime/doc/tagsrch.txt +++ b/runtime/doc/tagsrch.txt @@ -847,19 +847,25 @@ like |CTRL-]|. The function used for generating the taglist is specified by setting the 'tagfunc' option. The function will be called with three arguments: - a:pattern The tag identifier used during the tag search. - a:flags List of flags to control the function behavior. + a:pattern The tag identifier or pattern used during the tag search. + a:flags String containing flags to control the function behavior. a:info Dict containing the following entries: buf_ffname Full filename which can be used for priority. user_data Custom data String, if stored in the tag stack previously by tagfunc. -Currently two flags may be passed to the tag function: +Currently up to three flags may be passed to the tag function: 'c' The function was invoked by a normal command being processed (mnemonic: the tag function may use the context around the cursor to perform a better job of generating the tag list.) 'i' In Insert mode, the user was completing a tag (with - |i_CTRL-X_CTRL-]|). + |i_CTRL-X_CTRL-]| or 'completeopt' contains `t`). + 'r' The first argument to tagfunc should be interpreted as a + |pattern| (see |tag-regexp|), such as when using: > + :tag /pat +< It is also given when completing in insert mode. + If this flag is not present, the argument is usually taken + literally as the full tag name. Note that when 'tagfunc' is set, the priority of the tags described in |tag-priority| does not apply. Instead, the priority is exactly as the |