Skip to content

Commit 11f1979

Browse files
author
skywind3000
committed
change '/c' to '/C' on windows
1 parent 2e755c1 commit 11f1979

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugin/asyncrun.vim

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Maintainer: skywind3000 (at) gmail.com, 2016-2024
44
" Homepage: https://github.com/skywind3000/asyncrun.vim
55
"
6-
" Last Modified: 2024/05/22 00:41
6+
" Last Modified: 2024/05/22 00:55
77
"
88
" Run shell command in background and output to quickfix:
99
" :AsyncRun[!] [options] {cmd} ...
@@ -758,7 +758,7 @@ function! s:AsyncRun_Job_Start(cmd)
758758
let l:args += [a:cmd]
759759
else
760760
let l:tmp = s:ScriptWrite(a:cmd, 0)
761-
let l:args = ['cmd.exe', '/c']
761+
let l:args = ['cmd.exe', '/C']
762762
if s:async_nvim == 0
763763
let l:args += [l:tmp]
764764
elseif has('nvim-0.9.0')
@@ -2308,7 +2308,7 @@ endfunc
23082308
" asyncrun - version
23092309
"----------------------------------------------------------------------
23102310
function! asyncrun#version()
2311-
return '2.12.7'
2311+
return '2.12.8'
23122312
endfunc
23132313

23142314

0 commit comments

Comments
 (0)