Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Settings for test script execution |
| 2 | " Always use "COMMAND.COM", don't use the value of "$SHELL". |
| 3 | set shell=c:\COMMAND.COM shellquote= shellxquote= shellcmdflag=/c shellredir=> |
| 4 | " This is used only when the +eval feature is available. |
| 5 | if executable("cmd.exe") |
Milly | 4f5681d | 2024-10-20 11:06:00 +0200 | [diff] [blame] | 6 | set shell=cmd.exe shellcmdflag=/D\ /c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7 | endif |
Bram Moolenaar | 89b1042 | 2016-07-12 22:51:22 +0200 | [diff] [blame] | 8 | |
Christian Brabandt | eb380b9 | 2025-07-07 20:53:55 +0200 | [diff] [blame] | 9 | source util/setup.vim |