diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-12 12:34:34 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-12 14:06:42 +0800 |
commit | 6a670a00b3553a3ad87ddc6dfd06725796f58f1e (patch) | |
tree | 758822fd46954da7b100341ec6179c7beffccf6e /src | |
parent | 540d1af90e2276a8bd3b5edb1a63c8225a1aa423 (diff) | |
download | rneovim-6a670a00b3553a3ad87ddc6dfd06725796f58f1e.tar.gz rneovim-6a670a00b3553a3ad87ddc6dfd06725796f58f1e.tar.bz2 rneovim-6a670a00b3553a3ad87ddc6dfd06725796f58f1e.zip |
fix(exmode): do not throttle messages when pressing enter to print line
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_docmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 0b40715857..0651c2e24c 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -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); |