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 1da0502 commit 63488e8Copy full SHA for 63488e8
2 files changed
src/MacVim/MMBackend.m
@@ -633,7 +633,6 @@ - (void)update
633
while (CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true)
634
== kCFRunLoopRunHandledSource)
635
; // do nothing
636
- [self processInputQueue];
637
}
638
639
- (void)flushQueue:(BOOL UNUSED)force
src/testdir/test_options.vim
@@ -850,10 +850,13 @@ func Test_opt_default_cdpath()
850
else
851
let $CDPATH='/path/to/dir1;/path/to/dir2'
852
endif
853
+ " Workaround for https://github.com/macvim-dev/macvim/issues/1050
854
+ if !(has('gui_macvim') && has('gui_running'))
855
if RunVim([], after, '')
856
call assert_equal([], readfile('Xtestout'))
857
call delete('Xtestout')
858
859
+ endif
860
endfunc
861
862
" Test for setting keycodes using set
0 commit comments