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 31794d8 commit d760cc0Copy full SHA for d760cc0
src/MacVim/MMBackend.m
@@ -1993,8 +1993,10 @@ - (void)handleInputEvent:(int)msgid data:(NSData *)data
1993
const void *bytes = [data bytes];
1994
int idx = *((int*)bytes) + 1;
1995
send_tabline_menu_event(idx, TABLINE_MENU_CLOSE);
1996
+ [self redrawScreen];
1997
} else if (AddNewTabMsgID == msgid) {
1998
send_tabline_menu_event(0, TABLINE_MENU_NEW);
1999
2000
} else if (DraggedTabMsgID == msgid) {
2001
if (!data) return;
2002
0 commit comments