1
0
forked from aniani/vim

patch 9.0.0431: current mode shows in message window

Problem:    Current mode shows in message window.
Solution:   Reset in_echowindow before redrawing. (issue #11094)
This commit is contained in:
Bram Moolenaar
2022-09-09 20:19:40 +01:00
parent 375141e1f8
commit 7cf5839287
4 changed files with 32 additions and 1 deletions

View File

@@ -4545,6 +4545,8 @@ start_echowindow(void)
void
end_echowindow(void)
{
in_echowindow = FALSE;
// show the message window now
redraw_cmd(FALSE);
@@ -4553,7 +4555,6 @@ end_echowindow(void)
msg_didout = TRUE;
if (msg_col == 0)
msg_col = 1;
in_echowindow = FALSE;
}
#endif