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 5e34509 commit c2b52ddCopy full SHA for c2b52dd
src/MacVim/MMTextViewHelper.m
@@ -187,6 +187,11 @@ - (void)keyDown:(NSEvent *)event
187
// with Ctrl-6 or Ctrl-^ when IM is active.
188
[self doKeyDown:@"\x1e"];
189
string = nil;
190
+#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_10)
191
+ } else if ((flags & NSShiftKeyMask) && [string isEqualToString:@" "]) {
192
+ // HACK! for Yosemite - Fix for Shift+Space inputing
193
+ // do nothing
194
+#endif
195
} else {
196
// HACK! interpretKeyEvents: may call insertText: or
197
// doCommandBySelector:, or it may swallow the key (most likely the
0 commit comments