diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-24 18:48:14 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-24 18:48:14 +0100 |
commit | 0f6562e9036f889185dff49a75c7fc5ffb28b307 (patch) | |
tree | 3fec0e8c765e63d940eb324be8322517c66acd8a /runtime/optwin.vim | |
parent | 2a1b474fd82aff922f18570593972b12feaa2073 (diff) | |
download | vim-git-0f6562e9036f889185dff49a75c7fc5ffb28b307.tar.gz |
patch 7.4.941v7.4.941
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 048b1ad7e..ecfec901b 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -289,6 +289,10 @@ call append("$", " \tset tl=" . &tl) call append("$", "tags\tlist of file names to search for tags") call append("$", "\t(global or local to buffer)") call <SID>OptionG("tag", &tag) +call append("$", "tagcase\thow to handle case when searching in tags files:") +call append("$", "\t\"followic\" to follow 'ignorecase', \"ignore\" or \"match\"") +call append("$", "\t(global or local to buffer)") +call <SID>OptionG("tc", &tc) call append("$", "tagrelative\tfile names in a tags file are relative to the tags file") call <SID>BinOptionG("tr", &tr) call append("$", "tagstack\ta :tag command will use the tagstack") |