File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
" Maintainer: skywind3000 (at) gmail.com, 2016-2024
4
4
" Homepage: https://github.com/skywind3000/asyncrun.vim
5
5
"
6
- " Last Modified: 2024/07/26 10:46:36
6
+ " Last Modified: 2024/11/08 14:42:39
7
7
"
8
8
" Run shell command in background and output to quickfix:
9
9
" :AsyncRun[!] [options] {cmd} ...
@@ -844,11 +844,11 @@ function! s:AsyncRun_Job_Start(cmd)
844
844
endif
845
845
endif
846
846
let l: slash = &shellslash
847
- if l: slash && ( has ( " win32 " ) || has ( " win64 " ) || has ( " win16 " ) || has ( ' win95 ' ))
847
+ if l: slash && s: asyncrun_windows != 0
848
848
set noshellslash
849
849
endif
850
850
let s: async_job = jobstart (l: args , l: callbacks )
851
- if l: slash && ( has ( " win32 " ) || has ( " win64 " ) || has ( " win16 " ) || has ( ' win95 ' ))
851
+ if l: slash && s: asyncrun_windows != 0
852
852
set shellslash
853
853
endif
854
854
let l: success = (s: async_job > 0 )? 1 : 0
@@ -2341,7 +2341,7 @@ endfunc
2341
2341
" asyncrun - version
2342
2342
" ----------------------------------------------------------------------
2343
2343
function ! asyncrun#version ()
2344
- return ' 2.13.1 '
2344
+ return ' 2.13.2 '
2345
2345
endfunc
2346
2346
2347
2347
You can’t perform that action at this time.
0 commit comments