summaryrefslogtreecommitdiff
path: root/uvim/src/testdir/util/setup_gui.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/src/testdir/util/setup_gui.vim
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/src/testdir/util/setup_gui.vim')
-rw-r--r--uvim/src/testdir/util/setup_gui.vim31
1 files changed, 0 insertions, 31 deletions
diff --git a/uvim/src/testdir/util/setup_gui.vim b/uvim/src/testdir/util/setup_gui.vim
deleted file mode 100644
index 2e5e77771d..0000000000
--- a/uvim/src/testdir/util/setup_gui.vim
+++ /dev/null
@@ -1,31 +0,0 @@
-" 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')