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/buffer.c | |
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/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 62ab7495da..8191aa6f25 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -1547,6 +1547,7 @@ void free_buf_options(buf_T *buf, int free_p_ff) clear_string_option(&buf->b_p_ep); clear_string_option(&buf->b_p_path); clear_string_option(&buf->b_p_tags); + clear_string_option(&buf->b_p_tc); clear_string_option(&buf->b_p_dict); clear_string_option(&buf->b_p_tsr); clear_string_option(&buf->b_p_qe); |