Enable configuration of path to sh (default /bin/sh).

See #360.
This commit is contained in:
Andy Stewart
2016-09-16 14:22:13 +01:00
parent 373ad7337b
commit 402257f920
3 changed files with 4 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ function! gitgutter#async#execute(cmd) abort
if has('nvim')
if has('unix')
let command = ["/bin/sh", "-c", a:cmd]
let command = [g:gitgutter_sh, "-c", a:cmd]
elseif has('win32')
let command = ["cmd.exe", "/c", a:cmd]
else
@@ -55,7 +55,7 @@ function! gitgutter#async#execute(cmd) abort
" only occurs when a file is not tracked by git).
if has('unix')
let command = ["/bin/sh", "-c", a:cmd]
let command = [g:gitgutter_sh, "-c", a:cmd]
elseif has('win32')
" Help docs recommend {command} be a string on Windows. But I think
" they also say that will run the command directly, which I believe would

View File

@@ -187,7 +187,7 @@ function! gitgutter#utility#use_known_shell() abort
let s:shell = &shell
let s:shellcmdflag = &shellcmdflag
let s:shellredir = &shellredir
set shell=/bin/sh
let &shell = g:gitgutter_sh
set shellcmdflag=-c
set shellredir=>%s\ 2>&1
endif