We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d524fd + 041fc93 commit c147e0cCopy full SHA for c147e0c
2 files changed
.github/workflows/ci-macvim.yaml
@@ -380,6 +380,7 @@ jobs:
380
- name: Test Vim (GUI)
381
timeout-minutes: 25
382
run: |
383
+ defaults delete org.vim.MacVim # Clean up stale states left from MacVim tests
384
make ${MAKE_BUILD_ARGS} -C src/testdir clean
385
make ${MAKE_BUILD_ARGS} -C src testgui
386
src/testdir/runtest.vim
@@ -58,6 +58,9 @@ if has('gui_running')
58
if has('gui_gtk')
59
" to keep screendump size unchanged
60
set guifont=Monospace\ 10
61
+ elseif has('gui_macvim')
62
+ " keep defaults consistent with other GUIs
63
+ set guioptions-=k
64
endif
65
set columns=80 lines=25
66
0 commit comments