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.
1 parent 74e0ed7 commit c9228deCopy full SHA for c9228de
1 file changed
src/testdir/test_gui.vim
@@ -1,6 +1,6 @@
1
" Tests specifically for the GUI
2
3
-if !has('gui') || ($DISPLAY == "" && !has('gui_running'))
+if !has('gui') || (($DISPLAY == "" || has('gui_macvim')) && !has('gui_running'))
4
finish
5
endif
6
@@ -559,6 +559,11 @@ func Test_set_guioptions()
559
set guioptions&
560
call assert_equal('egmrLtT', &guioptions)
561
562
+ elseif has('gui_macvim')
563
+ " Default Value
564
+ set guioptions&
565
+ call assert_equal('egmrL', &guioptions)
566
+
567
else
568
" Default Value
569
0 commit comments