From c78aeb0d467f0cca48c3741c7766790e28646450 Mon Sep 17 00:00:00 2001 From: watiko Date: Wed, 17 Feb 2016 03:24:54 +0900 Subject: 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 --- src/nvim/buffer.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/buffer.c') 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); -- cgit