Created
June 4, 2020 13:23
-
-
Save yamaya/c38ac5598b72cccaffb0bd0a0ec6c0f3 to your computer and use it in GitHub Desktop.
This patch resolves an issue where some modifier keys could not be remapped on MacVim.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/gui.c b/src/gui.c | |
index db59980a7..0d47396c8 100644 | |
--- a/src/gui.c | |
+++ b/src/gui.c | |
@@ -812,7 +812,7 @@ gui_init(void) | |
gui_mch_disable_beval_area(balloonEval); | |
#endif | |
-#ifndef FEAT_GUI_MSWIN | |
+#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_MACVIM) | |
// In the GUI modifiers are prepended to keys. | |
// Don't do this for MS-Windows yet, it sends CTRL-K without the | |
// modifier. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This problem seems to have been mixed in with this patch: