shell: Don't default to fish

This commit is contained in:
Adriaan Zonnenberg 2017-05-01 21:24:16 +02:00
parent d5c135cfaf
commit dce99faf8f

View File

@ -11,7 +11,7 @@ endif
if !exists('g:ale_sh_shell_default_shell')
let g:ale_sh_shell_default_shell = fnamemodify($SHELL, ':t')
if g:ale_sh_shell_default_shell ==# ''
if g:ale_sh_shell_default_shell ==# '' || g:ale_sh_shell_default_shell ==# 'fish'
let g:ale_sh_shell_default_shell = 'bash'
endif
endif