1
0
forked from aniani/vim

patch 9.0.0296: message in popup is shortened unnecessary

Problem:    Message in popup is shortened unnecessary.
Solution:   Do not use 'showcmd' and 'ruler' for a message in the popup.
            Set the timer when unhiding the message popup.
This commit is contained in:
Bram Moolenaar
2022-08-28 14:39:53 +01:00
parent 00d4ceecca
commit 35a4fbc5d0
5 changed files with 39 additions and 3 deletions

View File

@@ -4501,7 +4501,7 @@ popup_show_message_win(void)
popup_update_color(message_win, TYPE_MESSAGE_WIN);
popup_show(message_win);
}
else if (message_win->w_popup_timer != NULL)
if (message_win->w_popup_timer != NULL)
timer_start(message_win->w_popup_timer);
}
}