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 vim/vim#10771)
6791adca53
This commit is contained in:
zeertzjq
2022-07-27 06:26:01 +08:00
parent 0c0a2e4e52
commit fc55f8263c
3 changed files with 49 additions and 2 deletions

View File

@@ -880,6 +880,12 @@ static uint8_t *command_line_enter(int firstc, long count, int indent, bool init
found_one = true;
}
}
if (*p_tal != NUL) {
redraw_tabline = true;
found_one = true;
}
if (found_one) {
redraw_statuslines();
}