forked from aniani/vim
Problem: tests: tests may fail on Windows environment
Solution: use shellcmdflag=/D to skip executing autorun from
the registry (Milly)
closes: #15900
Signed-off-by: Milly <milly.ca@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 lines
324 B
VimL
10 lines
324 B
VimL
" Settings for test script execution
|
|
" Always use "COMMAND.COM", don't use the value of "$SHELL".
|
|
set shell=c:\COMMAND.COM shellquote= shellxquote= shellcmdflag=/c shellredir=>
|
|
" This is used only when the +eval feature is available.
|
|
if executable("cmd.exe")
|
|
set shell=cmd.exe shellcmdflag=/D\ /c
|
|
endif
|
|
|
|
source setup.vim
|