diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-08 17:01:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-08 17:01:16 +0200 |
commit | fd4b34af471b3ec485ad82d8e7c47b09d7e90a48 (patch) | |
tree | 1f83acdac4c61866ac59f22fabe0d8d77597ed7b /runtime | |
parent | 13352c00f1909d9296c5f276a3735f5e6f231b39 (diff) | |
parent | 123931e65e8f6ca3ac13fff8279720c8328a018e (diff) | |
download | rneovim-fd4b34af471b3ec485ad82d8e7c47b09d7e90a48.tar.gz rneovim-fd4b34af471b3ec485ad82d8e7c47b09d7e90a48.tar.bz2 rneovim-fd4b34af471b3ec485ad82d8e7c47b09d7e90a48.zip |
Merge #6473 from jamessan/vim-8.0.0499
vim-patch:8.0.0499,8.0.0550
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 7060cc4186..e21f5357a2 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -2291,7 +2291,7 @@ tabpagebuflist([{arg}]) List list of buffer numbers in tab page tabpagenr([{arg}]) Number number of current or last tab page tabpagewinnr({tabarg}[, {arg}]) Number number of current window in tab page -taglist({expr}) List list of tags matching {expr} +taglist({expr}[, {filename}]) List list of tags matching {expr} tagfiles() List tags files used tan({expr}) Float tangent of {expr} tanh({expr}) Float hyperbolic tangent of {expr} @@ -7427,8 +7427,13 @@ tagfiles() Returns a |List| with the file names used to search for tags for the current buffer. This is the 'tags' option expanded. -taglist({expr}) *taglist()* +taglist({expr}[, {filename}]) *taglist()* Returns a list of tags matching the regular expression {expr}. + + If {filename} is passed it is used to prioritize the results + in the same way that |:tselect| does. See |tag-priority|. + {filename} should be the full path of the file. + Each list item is a dictionary with at least the following entries: name Name of the tag. |