diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-15 21:55:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-15 21:55:56 -0400 |
commit | fe808f02f69ab8545f343f987534a75b33d9343a (patch) | |
tree | c64018f07b15f915e4dccca77a999cc42cdf7e60 /src/nvim/normal.c | |
parent | d8e7fbe193cb3c811e305873a1f99b9f02d36d5f (diff) | |
parent | 011cfc538cd7325897eb467979d68d6d5c0832cd (diff) | |
download | rneovim-fe808f02f69ab8545f343f987534a75b33d9343a.tar.gz rneovim-fe808f02f69ab8545f343f987534a75b33d9343a.tar.bz2 rneovim-fe808f02f69ab8545f343f987534a75b33d9343a.zip |
Merge pull request #14355 from janlazo/vim-8.1.2313
vim-patch:8.1.2313,8.2.{2046,2769}
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index f016ef6813..c948881eca 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -630,9 +630,9 @@ static void normal_redraw_mode_message(NormalState *s) ui_cursor_shape(); // show different cursor shape ui_flush(); if (msg_scroll || emsg_on_display) { - os_delay(1000L, true); // wait at least one second + os_delay(1003L, true); // wait at least one second } - os_delay(3000L, false); // wait up to three seconds + os_delay(3003L, false); // wait up to three seconds State = save_State; msg_scroll = false; |