mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
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:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user