File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ func SetUp()
1010 set guifont = Courier\ 10 \ Pitch/8/ -1 /5/ 50 /0/ 0 /0/ 0 /0
1111 endif
1212
13- " Gnome insists on creating $HOME/.gnome2/..
13+ " Gnome insists on creating $HOME/.gnome2/, and we're going to abide by
14+ " that, taking care to have the font cache work normally.
15+ if $XDG_CACHE_HOME == ' '
16+ let $XDG_CACHE_HOME = g: tester_HOME . ' /.cache'
17+ endif
1418 call mkdir (' Xhome' )
1519 let $HOME = fnamemodify (' Xhome' , ' :p' )
1620endfunc
Original file line number Diff line number Diff line change 22" Always use "sh", don't use the value of "$SHELL".
33set shell = sh
44
5+ " While some tests overwrite $HOME to prevent them from polluting user files,
6+ " we need to remember the original value so that we can tell external systems
7+ " where to ask about their own user settings.
8+ let g: tester_HOME = $HOME
9+
510source setup.vim
Original file line number Diff line number Diff line change @@ -764,6 +764,8 @@ static char *(features[]) =
764764
765765static int included_patches [] =
766766{ /* Add new patch number below this line */
767+ /**/
768+ 277 ,
767769/**/
768770 276 ,
769771/**/
You can’t perform that action at this time.
0 commit comments