Skip to content

Commit

Permalink
change '/c' to '/C' on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
skywind3000 committed May 21, 2024
1 parent 2e755c1 commit 11f1979
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/asyncrun.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Maintainer: skywind3000 (at) gmail.com, 2016-2024
" Homepage: https://github.com/skywind3000/asyncrun.vim
"
" Last Modified: 2024/05/22 00:41
" Last Modified: 2024/05/22 00:55
"
" Run shell command in background and output to quickfix:
" :AsyncRun[!] [options] {cmd} ...
Expand Down Expand Up @@ -758,7 +758,7 @@ function! s:AsyncRun_Job_Start(cmd)
let l:args += [a:cmd]
else
let l:tmp = s:ScriptWrite(a:cmd, 0)
let l:args = ['cmd.exe', '/c']
let l:args = ['cmd.exe', '/C']
if s:async_nvim == 0
let l:args += [l:tmp]
elseif has('nvim-0.9.0')
Expand Down Expand Up @@ -2308,7 +2308,7 @@ endfunc
" asyncrun - version
"----------------------------------------------------------------------
function! asyncrun#version()
return '2.12.7'
return '2.12.8'
endfunc


Expand Down

0 comments on commit 11f1979

Please sign in to comment.