mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
fix(ui): check for cmdline mode properly (#35202)
This commit is contained in:
@@ -3069,7 +3069,7 @@ void repeat_message(void)
|
||||
if (State == MODE_ASKMORE) {
|
||||
msg_moremsg(true); // display --more-- message again
|
||||
msg_row = Rows - 1;
|
||||
} else if (State == MODE_CMDLINE && confirm_msg != NULL) {
|
||||
} else if ((State & MODE_CMDLINE) && confirm_msg != NULL) {
|
||||
display_confirm_msg(); // display ":confirm" message again
|
||||
msg_row = Rows - 1;
|
||||
} else if (State == MODE_EXTERNCMD) {
|
||||
|
Reference in New Issue
Block a user