aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorwatiko <service@mail.watiko.net>2016-02-17 03:24:54 +0900
committerwatiko <service@mail.watiko.net>2016-03-06 00:32:39 +0900
commitc78aeb0d467f0cca48c3741c7766790e28646450 (patch)
tree6ece4088ab7bdcfadc03914a43ec25fbd409ee27 /src/nvim/buffer_defs.h
parent0e9f7a7b36901842d9cdbe8cd00db47b74ab799b (diff)
downloadrneovim-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_defs.h')
-rw-r--r--src/nvim/buffer_defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index 936a14b903..a5e597702b 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -674,6 +674,8 @@ struct file_buffer {
char_u *b_p_path; /* 'path' local value */
int b_p_ar; /* 'autoread' local value */
char_u *b_p_tags; /* 'tags' local value */
+ char_u *b_p_tc; ///< 'tagcase' local value
+ unsigned b_tc_flags; ///< flags for 'tagcase'
char_u *b_p_dict; /* 'dictionary' local value */
char_u *b_p_tsr; /* 'thesaurus' local value */
long b_p_ul; /* 'undolevels' local value */
@@ -953,9 +955,7 @@ struct window_S {
time through cursupdate() to the
current virtual column */
- /*
- * the next six are used to update the visual part
- */
+ // the next seven are used to update the visual part
char w_old_visual_mode; /* last known VIsual_mode */
linenr_T w_old_cursor_lnum; /* last known end of visual part */
colnr_T w_old_cursor_fcol; /* first column for block visual part */