diff options
Diffstat (limited to 'test/old/testdir/shared.vim')
-rw-r--r-- | test/old/testdir/shared.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/shared.vim b/test/old/testdir/shared.vim index e7a5f471e7..fc7e6b643a 100644 --- a/test/old/testdir/shared.vim +++ b/test/old/testdir/shared.vim @@ -64,7 +64,7 @@ func RunCommand(cmd) let job = job_start(a:cmd, {"stoponexit": "hup"}) call job_setoptions(job, {"stoponexit": "kill"}) elseif has('win32') - exe 'silent !start cmd /c start "test_channel" ' . a:cmd + exe 'silent !start cmd /D /c start "test_channel" ' . a:cmd else exe 'silent !' . a:cmd . '&' endif |