Fix #159 by temporarily setting &shell to sh

This commit is contained in:
Junegunn Choi
2015-02-07 13:36:45 +09:00
parent 61f010ffad
commit 79da5b2654
2 changed files with 31 additions and 6 deletions

View File

@@ -201,3 +201,20 @@ Execute (#145: Merging on-demand loading triggers - map):
Assert empty(mapcheck("<Plug>(xxx)"))
Assert empty(mapcheck("<Plug>(yyy)"))
**********************************************************************
Execute (#159: shell=/bin/tcsh):
let org = &shell
try
set shell=/bin/tcsh
call plug#begin('$TMPDIR/plugged')
Plug 'junegunn/seoul256.vim'
call plug#end()
PlugStatus
Log getline(1, '$')
q
AssertEqual '/bin/tcsh', &shell
finally
let &shell = org
endtry