Skip to content

Commit 7b0b509

Browse files
committed
Fix async commands with Neovim on Windows
Closes #894.
1 parent bed580a commit 7b0b509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/gitgutter/async.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function! s:build_command(cmd)
4646
endif
4747

4848
if has('win32')
49-
return has('nvim') ? ['cmd.exe', '/c', a:cmd] : 'cmd.exe /c '.a:cmd
49+
return has('nvim') ? a:cmd : 'cmd.exe /c '.a:cmd
5050
endif
5151

5252
throw 'unknown os'

0 commit comments

Comments
 (0)