diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-12 22:51:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-12 22:51:22 +0200 |
commit | 89b10421ca1aea55acbafac1df93be4e20210ceb (patch) | |
tree | 1d1bc73cedd32510fd398da16a528b71e6f58e82 /src/testdir/unix.vim | |
parent | e048539195e1c0a060cf41b39fca118130bdc151 (diff) | |
download | vim-git-89b10421ca1aea55acbafac1df93be4e20210ceb.tar.gz |
patch 7.4.2031v7.4.2031
Problem: The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets
'textwidth' to a non-zero value. (Oyvind A. Holm)
Solution: Add a setup.vim file that sets 'runtimepath' and $HOME to a safe
value. (partly by Christian Brabandt, closes #912)
Diffstat (limited to 'src/testdir/unix.vim')
-rw-r--r-- | src/testdir/unix.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/unix.vim b/src/testdir/unix.vim index f766e74c3..36dd4e1e3 100644 --- a/src/testdir/unix.vim +++ b/src/testdir/unix.vim @@ -1,3 +1,5 @@ " Settings for test script execution " Always use "sh", don't use the value of "$SHELL". set shell=sh + +source setup.vim |