mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Fix processing of netbeans messages
Processing of netbeans messages in macvim has been broken since b4winckler/macvim@1e08012084 due to that processing being moved to gui_x11.c. Add similar block to gui_macvim.m to restore the processing of netbeans messages.
This commit is contained in:
@@ -392,6 +392,11 @@ gui_mch_wait_for_chars(int wtime)
|
||||
// called, so force a flush of the command queue here.
|
||||
[[MMBackend sharedInstance] flushQueue:YES];
|
||||
|
||||
#if defined(FEAT_NETBEANS_INTG)
|
||||
/* Process any queued netbeans messages. */
|
||||
netbeans_parse_messages();
|
||||
#endif
|
||||
|
||||
return [[MMBackend sharedInstance] waitForInput:wtime];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user