File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 3
3
" Maintainer: skywind3000 (at) gmail.com, 2016-2022
4
4
" Homepage: https://github.com/skywind3000/asyncrun.vim
5
5
"
6
- " Last Modified: 2022/11/27 21:03
6
+ " Last Modified: 2022/11/27 23:31
7
7
"
8
8
" Run shell command in background and output to quickfix:
9
9
" :AsyncRun[!] [options] {cmd} ...
@@ -409,11 +409,7 @@ endfunc
409
409
410
410
" find quickfix window and scroll to the bottom then return last window
411
411
function ! s: AsyncRun_Job_AutoScroll ()
412
- if s: async_quick == 0
413
- if &buftype == ' quickfix'
414
- silent exec ' normal! G'
415
- endif
416
- else
412
+ if s: async_quick != 0
417
413
cbottom
418
414
endif
419
415
endfunc
@@ -867,7 +863,7 @@ function! s:AsyncRun_Job_Start(cmd)
867
863
if type (t ) == type (' ' )
868
864
let format = t
869
865
elseif type (t ) == type (0 )
870
- let format = (t != 0 )? ' %Y/%m/%d %T ' : ' '
866
+ let format = (t != 0 )? ' %Y/%m/%d %H:%M:%S ' : ' '
871
867
endif
872
868
if format != ' '
873
869
let t = strftime (format, s: async_start )
@@ -2226,7 +2222,7 @@ endfunc
2226
2222
" asyncrun - version
2227
2223
" ----------------------------------------------------------------------
2228
2224
function ! asyncrun#version ()
2229
- return ' 2.11.8 '
2225
+ return ' 2.11.9 '
2230
2226
endfunc
2231
2227
2232
2228
You can’t perform that action at this time.
0 commit comments