We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0de216 commit 50948e4Copy full SHA for 50948e4
2 files changed
src/testdir/test_timers.vim
@@ -257,9 +257,11 @@ func Test_getchar_zero()
257
return
258
endif
259
260
+ " Measure the elapsed time to avoid a hang when it fails.
261
+ let start = reltime()
262
let id = timer_start(20, {id -> feedkeys('x', 'L')})
263
let c = 0
- while c == 0
264
+ while c == 0 && reltimefloat(reltime(start)) < 0.2
265
let c = getchar(0)
266
sleep 10m
267
endwhile
src/version.c
@@ -783,6 +783,8 @@ static char *(features[]) =
783
784
static int included_patches[] =
785
{ /* Add new patch number below this line */
786
+/**/
787
+ 844,
788
/**/
789
843,
790
0 commit comments