Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Settings for test script execution |
| 2 | " Always use "sh", don't use the value of "$SHELL". |
| 3 | set shell=sh |
Bram Moolenaar | 89b1042 | 2016-07-12 22:51:22 +0200 | [diff] [blame] | 4 | |
Bram Moolenaar | 94722c5 | 2023-01-28 19:19:03 +0000 | [diff] [blame] | 5 | " Only when the +eval feature is present. |
Bram Moolenaar | c386267 | 2017-02-01 18:07:38 +0100 | [diff] [blame] | 6 | if 1 |
| 7 | " While some tests overwrite $HOME to prevent them from polluting user files, |
| 8 | " we need to remember the original value so that we can tell external systems |
| 9 | " where to ask about their own user settings. |
| 10 | let g:tester_HOME = $HOME |
| 11 | endif |
Bram Moolenaar | 56e6bd7 | 2017-02-01 12:08:47 +0100 | [diff] [blame] | 12 | |
Christian Brabandt | eb380b9 | 2025-07-07 20:53:55 +0200 | [diff] [blame] | 13 | source util/setup.vim |