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 ae04a60 commit 65258d3Copy full SHA for 65258d3
src/testdir/runtest.vim
@@ -479,7 +479,8 @@ for g:testfunc in sort(s:tests)
479
call add(s:messages, 'Found errors in ' .. g:testfunc .. ':')
480
call extend(s:messages, v:errors)
481
482
- call add(total_errors, starttime .. ' Run ' .. g:run_nr .. ':')
+ let endtime = strftime("%H:%M:%S")
483
+ call add(total_errors, $'Run {g:run_nr}, {starttime} - {endtime}:')
484
call extend(total_errors, v:errors)
485
486
if g:run_nr >= 5 || prev_error == v:errors[0]
src/version.c
@@ -703,6 +703,8 @@ static char *(features[]) =
703
704
static int included_patches[] =
705
{ /* Add new patch number below this line */
706
+/**/
707
+ 426,
708
/**/
709
425,
710
0 commit comments