Aliaksei Budavei | d33afe1 | 2024-08-12 18:37:15 +0200 | [diff] [blame] | 1 | vim9script |
| 2 | |
Aliaksei Budavei | 6bff6a2 | 2024-08-19 21:33:26 +0200 | [diff] [blame] | 3 | exec 'source ' .. (((cwdpath: string) => cwdpath |
| 4 | ->strpart(0, cwdpath->strridx('/vim')))(getcwd())) |
| 5 | .. '/vim/src/testdir/commondumps.vim' |
| 6 | g:Init('\<syntax\>', -1) |
Aliaksei Budavei | d33afe1 | 2024-08-12 18:37:15 +0200 | [diff] [blame] | 7 | |
| 8 | # THE FOLLOWING SETTINGS PERTAIN TO "input/" FILES THAT ARE LIKELY TO BE |
| 9 | # LOADED SIDE BY SIDE WHENEVER BATCHES OF NEW SCREENDUMPS ARE GENERATED. |
| 10 | |
| 11 | # Match "LC_ALL=C" of Makefile. |
| 12 | language C |
| 13 | |
| 14 | # Match the settings from term_util.vim#RunVimInTerminal(). |
| 15 | set t_Co=256 background=light |
| 16 | hi Normal ctermfg=NONE ctermbg=NONE |
| 17 | |
| 18 | # Match the settings from runtest.vim#Xtestscript#SetUpVim(). |
| 19 | set display=lastline ruler scrolloff=5 t_ZH= t_ZR= |
| 20 | |
| 21 | # Anticipate non-Latin-1 characters in "input/" files. |
| 22 | set encoding=utf-8 termencoding=utf-8 |
| 23 | |
zeertzjq | 3e5bbb8 | 2024-10-22 23:11:27 +0200 | [diff] [blame] | 24 | # vim:fdm=syntax:sw=2:ts=8:noet:nosta: |