File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
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/02/03 22:15
6
+ " Last Modified: 2022/02/20 00:05
7
7
"
8
8
" Run shell command in background and output to quickfix:
9
9
" :AsyncRun[!] [options] {cmd} ...
@@ -765,6 +765,9 @@ function! s:AsyncRun_Job_Start(cmd)
765
765
let l: options [' callback' ] = function (' s:AsyncRun_Job_OnCallback' )
766
766
let l: options [' close_cb' ] = function (' s:AsyncRun_Job_OnClose' )
767
767
let l: options [' exit_cb' ] = function (' s:AsyncRun_Job_OnExit' )
768
+ if v: version < 800
769
+ let l: options [' exit_cb' ] = " <SID>AsyncRun_Job_OnExit"
770
+ endif
768
771
let l: options [' out_io' ] = ' pipe'
769
772
let l: options [' err_io' ] = ' out'
770
773
let l: options [' in_io' ] = ' null'
@@ -2055,7 +2058,7 @@ endfunc
2055
2058
" asyncrun - version
2056
2059
" ----------------------------------------------------------------------
2057
2060
function ! asyncrun#version ()
2058
- return ' 2.9.9 '
2061
+ return ' 2.9.10 '
2059
2062
endfunc
2060
2063
2061
2064
You can’t perform that action at this time.
0 commit comments