summaryrefslogtreecommitdiffstats
path: root/src/message.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-01 17:01:32 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-01 17:01:32 +0100
commit3b474dcd30ea188124f5ad766f5096f9a0cef895 (patch)
treed25baa6071e9fc1b29c20d644b6e684282a66401 /src/message.c
parentb5b4f61cf192324379b6a8c4f7ed83a13f0e3bc6 (diff)
patch 9.0.0352: using :echowindow in a timer clears part of messagev9.0.0352
Problem: using :echowindow in a timer clears part of message Solution: Do not use msg_clr_eos().
Diffstat (limited to 'src/message.c')
-rw-r--r--src/message.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index 573f3aedf1..e401882d1a 100644
--- a/src/message.c
+++ b/src/message.c
@@ -1443,7 +1443,7 @@ msg_start(void)
}
#ifdef FEAT_EVAL
- if (need_clr_eos || in_echowindow)
+ if (need_clr_eos)
{
// Halfway an ":echo" command and getting an (error) message: clear
// any text from the command.
@@ -3646,6 +3646,10 @@ msg_clr_eos(void)
void
msg_clr_eos_force(void)
{
+#ifdef HAS_MESSAGE_WINDOW
+ if (in_echowindow)
+ return; // messages go into a popup
+#endif
if (msg_use_printf())
{
if (full_screen) // only when termcap codes are valid