Mercurial > vim
view src/testdir/setup.vim @ 31896:ecfabcaafc0b v9.0.1280
patch 9.0.1280: inssufficient testing for what 9.0.1265 fixes
Commit: https://github.com/vim/vim/commit/7a1bdaecf2d2a06eb06ed462e6ccae4954939fc9
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 4 15:45:27 2023 +0000
patch 9.0.1280: inssufficient testing for what 9.0.1265 fixes
Problem: Inssufficient testing for what 9.0.1265 fixes.
Solution: Add a couple of test cases. (issue https://github.com/vim/vim/issues/11885)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 04 Feb 2023 17:00:04 +0100 |
parents | dbec60b8c253 |
children | 852040d9b096 |
line wrap: on
line source
" Common preparations for running tests. " Only load this once. if 1 " When using xterm version 377 the response to the modifyOtherKeys status " interferes with some tests. Remove the request from the t_TI termcap " entry. let &t_TI = substitute(&t_TI, "\<Esc>\\[?4m", '', '') if exists('s:did_load') finish endif let s:did_load = 1 endif " Make sure 'runtimepath' and 'packpath' does not include $HOME. set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after if has('packages') let &packpath = &rtp endif " Only when the +eval feature is present. if 1 " Make sure the .Xauthority file can be found after changing $HOME. if $XAUTHORITY == '' let $XAUTHORITY = $HOME . '/.Xauthority' endif " Avoid storing shell history. let $HISTFILE = "" " Make sure $HOME does not get read or written. " It must exist, gnome tries to create $HOME/.gnome2 let $HOME = getcwd() . '/XfakeHOME' if !isdirectory($HOME) call mkdir($HOME) endif endif