mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0207
This commit is contained in:
15
src/option.c
15
src/option.c
@@ -1115,6 +1115,15 @@ static struct vimoption
|
||||
(char_u *)NULL, PV_NONE,
|
||||
#endif
|
||||
{(char_u *)TRUE, (char_u *)0L}},
|
||||
{"guitablabel", "gtl", P_STRING|P_VI_DEF,
|
||||
#if defined(FEAT_GUI_TABLINE)
|
||||
(char_u *)&p_gtl, PV_NONE,
|
||||
{(char_u *)"", (char_u *)0L}
|
||||
#else
|
||||
(char_u *)NULL, PV_NONE,
|
||||
{(char_u *)NULL, (char_u *)0L}
|
||||
#endif
|
||||
},
|
||||
{"hardtabs", "ht", P_NUM|P_VI_DEF,
|
||||
(char_u *)NULL, PV_NONE,
|
||||
{(char_u *)0L, (char_u *)0L}},
|
||||
@@ -5838,6 +5847,12 @@ did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
|
||||
gui_init_which_components(oldval);
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_GUI_TABLINE)
|
||||
/* 'guitablabel' */
|
||||
else if (varp == &p_gtl)
|
||||
gui_update_tabline();
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
|
||||
/* 'ttymouse' */
|
||||
else if (varp == &p_ttym)
|
||||
|
Reference in New Issue
Block a user