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/doc/usr_29.txt | |
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/doc/usr_29.txt')
-rw-r--r-- | runtime/doc/usr_29.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/usr_29.txt b/runtime/doc/usr_29.txt index f13cd3a40..dc71e71dd 100644 --- a/runtime/doc/usr_29.txt +++ b/runtime/doc/usr_29.txt @@ -255,7 +255,8 @@ function. RELATED ITEMS -You can set 'ignorecase' to make case in tag names be ignored. +To make case in tag names be ignored, you can set 'ignorecase' while leaving +'tagcase' as "followic", or set 'tagcase' to "ignore". The 'tagbsearch' option tells if the tags file is sorted or not. The default is to assume a sorted tags file, which makes a tags search a lot faster, but |