1
0
forked from aniani/vim

patch 9.0.0086: tabline is not redrawn when entering command line

Problem:    Tabline is not redrawn when entering command line.
Solution:   Set "redraw_tabline". (closes #10771)
This commit is contained in:
zeertzjq
2022-07-26 20:42:25 +01:00
committed by Bram Moolenaar
parent 1f0dc5e84f
commit 6791adca53
3 changed files with 25 additions and 0 deletions

View File

@@ -1758,6 +1758,13 @@ getcmdline_int(
wp->w_redr_status = TRUE;
found_one = TRUE;
}
if (*p_tal != NUL)
{
redraw_tabline = TRUE;
found_one = TRUE;
}
if (found_one)
redraw_statuslines();
}