diff options
author | watiko <service@mail.watiko.net> | 2016-02-17 03:24:54 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-03-06 00:32:39 +0900 |
commit | c78aeb0d467f0cca48c3741c7766790e28646450 (patch) | |
tree | 6ece4088ab7bdcfadc03914a43ec25fbd409ee27 /runtime/doc/usr_29.txt | |
parent | 0e9f7a7b36901842d9cdbe8cd00db47b74ab799b (diff) | |
download | rneovim-c78aeb0d467f0cca48c3741c7766790e28646450.tar.gz rneovim-c78aeb0d467f0cca48c3741c7766790e28646450.tar.bz2 rneovim-c78aeb0d467f0cca48c3741c7766790e28646450.zip |
vim-patch:7.4.941
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
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 22de2f6ce6..e495aad06d 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 |