diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-20 16:57:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-20 16:57:02 +0200 |
commit | 66e29d7112e437b2b50efe1f82c7e892736d23e4 (patch) | |
tree | a99f9f43e0fc5b56f13cb1426b1fa78f8319632c /runtime/doc/options.txt | |
parent | f04507d132fbcb63999167ec006fc6e700b5af4f (diff) | |
download | vim-git-66e29d7112e437b2b50efe1f82c7e892736d23e4.tar.gz |
patch 7.4.2230v7.4.2230
Problem: There is no equivalent of 'smartcase' for a tag search.
Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian
Brabandt, closes #712) Turn tagcase test into new style.
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 738367d2c..c531168e3 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -7417,6 +7417,9 @@ A jump table for the options with a short description can be found at |Q_op|. By default, tag searches are case-sensitive. Case is ignored when 'ignorecase' is set and 'tagcase' is "followic", or when 'tagcase' is "ignore". + Also when 'tagcase' is "followscs" and 'smartcase' is set, or + 'tagcase' is "smart", and the pattern contains only lowercase + characters. When 'tagbsearch' is off, tags searching is slower when a full match exists, but faster when no full match exists. Tags in unsorted tags @@ -7435,8 +7438,10 @@ A jump table for the options with a short description can be found at |Q_op|. This option specifies how case is handled when searching the tags file: followic Follow the 'ignorecase' option + followscs Follow the 'smartcase' and 'ignorecase' options ignore Ignore case match Match case + smart Ignore case unless an upper case letter is used *'taglength'* *'tl'* 'taglength' 'tl' number (default 0) |