From 134b86553c12c46e0ae7d534f6fe65e8ba2d50bc Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 28 Aug 2022 21:36:43 +0100 Subject: patch 9.0.0307: :echomsg doesn't work properly with cmdheight=0 Problem: :echomsg doesn't work properly with cmdheight=0. Solution: Improve scrolling and displaying. --- src/ex_docmd.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/ex_docmd.c') diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 89c9d26b0..598c6b7c3 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -8370,9 +8370,14 @@ ex_redraw(exarg_T *eap) // After drawing the statusline screen_attr may still be set. screen_stop_highlight(); - // Reset msg_didout, so that a message that's there is overwritten. - msg_didout = FALSE; - msg_col = 0; +#ifdef HAS_MESSAGE_WINDOW + if (!use_message_window()) // append messages in the message window +#endif + { + // Reset msg_didout, so that a message that's there is overwritten. + msg_didout = FALSE; + msg_col = 0; + } // No need to wait after an intentional redraw. need_wait_return = FALSE; -- cgit v1.2.1