ex_getln: don't redraw statusline on top of scrolled messages

This commit is contained in:
Björn Linse
2018-05-31 16:12:00 +02:00
parent 39a03c0fe7
commit 1efe65a155
2 changed files with 84 additions and 19 deletions

View File

@@ -349,7 +349,7 @@ static uint8_t *command_line_enter(int firstc, long count, int indent)
// redraw the statusline for statuslines that display the current mode
// using the mode() function.
if (KeyTyped) {
if (KeyTyped && msg_scrolled == 0) {
curwin->w_redr_status = true;
redraw_statuslines();
}