updated for version 7.0198
diff --git a/src/option.c b/src/option.c
index cca91cc..25ddafb 100644
--- a/src/option.c
+++ b/src/option.c
@@ -2181,6 +2181,13 @@
{(char_u *)0L, (char_u *)0L}
#endif
},
+ {"tabline", "tal", P_NUM|P_VI_DEF|P_RALL,
+#ifdef FEAT_WINDOWS
+ (char_u *)&p_tal, PV_NONE,
+#else
+ (char_u *)NULL, PV_NONE,
+#endif
+ {(char_u *)1L, (char_u *)0L}},
{"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
(char_u *)&p_ts, PV_TS,
{(char_u *)8L, (char_u *)0L}},
@@ -7259,6 +7266,12 @@
{
last_status(FALSE);
}
+
+ /* (re)set tab page line */
+ else if (pp == &p_tal)
+ {
+ shell_new_rows(); /* recompute window positions and heights */
+ }
#endif
#ifdef FEAT_GUI