diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-13 00:26:34 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-15 18:06:51 -0400 |
commit | b8c3bb67904794e9f45bdc4546aa43009f43c592 (patch) | |
tree | eeda77625a3126273d549a9ff0967ec066a06dd4 /src/nvim/tag.c | |
parent | 94b10d25dae98852c03173e5c0bb7e3bd22cc80d (diff) | |
download | rneovim-b8c3bb67904794e9f45bdc4546aa43009f43c592.tar.gz rneovim-b8c3bb67904794e9f45bdc4546aa43009f43c592.tar.bz2 rneovim-b8c3bb67904794e9f45bdc4546aa43009f43c592.zip |
vim-patch:8.1.2313: debugging where a delay comes from is not easy
Problem: Debugging where a delay comes from is not easy.
Solution: Use different values when calling ui_delay().
https://github.com/vim/vim/commit/eda1da0c9a8db1400649629117e7d248c07735f7
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 588821f260..a6310344e9 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -625,7 +625,7 @@ do_tag( } if (ic && !msg_scrolled && msg_silent == 0) { ui_flush(); - os_delay(1000L, true); + os_delay(1007L, true); } } @@ -2853,7 +2853,7 @@ static int jumpto_tag( MSG(_("E435: Couldn't find tag, just guessing!")); if (!msg_scrolled && msg_silent == 0) { ui_flush(); - os_delay(1000L, true); + os_delay(1010L, true); } } retval = OK; |