From d6af4253228c20069ee66d0324fd1441aed8e3e7 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 7 Aug 2018 23:04:01 -0400 Subject: [PATCH] oldtests: win: set shellpipe for cmd.exe Redirect errors from :make to error file. Fix execption error in test_compiler.vim on Windows. --- src/nvim/testdir/setup.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim index f3cc7da70f..51bf8ce0fc 100644 --- a/src/nvim/testdir/setup.vim +++ b/src/nvim/testdir/setup.vim @@ -33,4 +33,5 @@ if has('win32') let $TERM = '' let &shell = empty($COMSPEC) ? exepath('cmd.exe') : $COMSPEC set shellcmdflag=/s/c shellxquote=\" shellredir=>%s\ 2>&1 + let &shellpipe = &shellredir endif