fix(exmode): do not throttle messages when pressing enter to print line

This commit is contained in:
zeertzjq 2022-07-12 12:34:34 +08:00
parent 540d1af90e
commit 6a670a00b3

View File

@ -233,6 +233,7 @@ void do_exmode(void)
if (prev_msg_row == Rows - 1) {
msg_row--;
}
msg_grid.throttled = false;
}
msg_col = 0;
print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);