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 /src/nvim/options.lua | |
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 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index df77c374ec..a743e8c605 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2332,6 +2332,13 @@ return { defaults={if_true={vi=true}} }, { + full_name='tagcase', abbreviation='tc', + type='string', scope={'global', 'buffer'}, + vim=true, + varname='p_tc', + defaults={if_true={vi="followic", vim="followic"}} + }, + { full_name='taglength', abbreviation='tl', type='number', scope={'global'}, vi_def=true, |