Mercurial > vim
view src/testdir/setup_gui.vim @ 30880:82336c3b679d v9.0.0774
patch 9.0.0774: the libvterm code is outdated
Commit: https://github.com/vim/vim/commit/6a12d26f3404e45ce25cf9152857e355b28f392a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 16 19:26:52 2022 +0100
patch 9.0.0774: the libvterm code is outdated
Problem: The libvterm code is outdated.
Solution: Include libvterm changes from revision 802 to 817. Revert some
changes made for C89.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 16 Oct 2022 20:30:07 +0200 |
parents | 9849df834f1d |
children |
line wrap: on
line source
" Common preparations for running GUI tests. let g:x11_based_gui = has('gui_motif') \ || has('gui_gtk2') || has('gui_gnome') || has('gui_gtk3') " Reasons for 'skipped'. let g:not_supported = "Skipped: Feature/Option not supported by this GUI: " let g:not_hosted = "Skipped: Test not hosted by the system/environment" " For KDE set a font, empty 'guifont' may cause a hang. func GUISetUpCommon() if has("gui_kde") set guifont=Courier\ 10\ Pitch/8/-1/5/50/0/0/0/0/0 endif " Gnome insists on creating $HOME/.gnome2/, set $HOME to avoid changing the " actual home directory. But avoid triggering fontconfig by setting the " cache directory. Only needed for Unix. if $XDG_CACHE_HOME == '' && exists('g:tester_HOME') let $XDG_CACHE_HOME = g:tester_HOME . '/.cache' endif call mkdir('Xhome') let $HOME = fnamemodify('Xhome', ':p') endfunc func GUITearDownCommon() call delete('Xhome', 'rf') endfunc " Ignore the "failed to create input context" error. call test_ignore_error('E285')