Merge pull request #2167 from stegmanh/master

Add support for ale option to override default shell used by ale
This commit is contained in:
w0rp
2019-01-03 21:01:13 +00:00
committed by GitHub
3 changed files with 61 additions and 7 deletions

View File

@@ -4,6 +4,7 @@ Before:
After:
Restore
let g:ale_shell = v:null
Execute(sh should be used when the shell is fish):
if !has('win32')
@@ -43,6 +44,7 @@ Execute(Other shells should be used when set):
if !has('win32')
let &shell = '/bin/bash'
let &shellcmdflag = '-c'
let g:ale_shell = &shell
AssertEqual ['/bin/bash', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), 'foobar')
endif
@@ -54,3 +56,10 @@ Execute(cmd /s/c as a string should be used on Windows):
AssertEqual 'cmd /s/c "foobar"', ale#job#PrepareCommand(bufnr(''), 'foobar')
endif
Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell):
if !has('win32')
let g:ale_shell = '/foo/bar'
AssertEqual ['/foo/bar', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")
endif