]> granicus.if.org Git - vim/commitdiff
patch 9.0.0686: the right ALT key does not work on some MS-Windows keyboards v9.0.0686
authorAnton Sharonov <anton.sharonov@gmail.com>
Fri, 7 Oct 2022 15:28:48 +0000 (16:28 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 7 Oct 2022 15:28:48 +0000 (16:28 +0100)
Problem:    The right ALT key does not work on some MS-Windows keyboards.
Solution:   Adjust the modifiers based on GetKeyState(). (Anoton Sharonov,
            closes #11300)

src/gui_w32.c
src/version.c

index 5e8fbe2a802ed98ddf2aeea317b908df727eb091..2dc54bf5f8c84a6489686f5180dc431f590933b3 100644 (file)
@@ -852,6 +852,13 @@ get_active_modifiers(void)
        modifiers |= MOD_MASK_ALT;
     if ((modifiers & MOD_MASK_CTRL) && (GetKeyState(VK_RMENU) & 0x8000))
        modifiers &= ~MOD_MASK_CTRL;
+    // Add RightALT only if it is hold alone (without Ctrl), because if AltGr
+    // is pressed, Windows claims that Ctrl is hold as well. That way we can
+    // recognize Right-ALT alone and be sure that not AltGr is hold.
+    if (!(GetKeyState(VK_CONTROL) & 0x8000)
+           &&  (GetKeyState(VK_RMENU) & 0x8000)
+           && !(GetKeyState(VK_LMENU) & 0x8000)) // seems AltGr has both set
+       modifiers |= MOD_MASK_ALT;
 
     return modifiers;
 }
index 391ae4defbfe2dd54a5bb339d9e827fe7cf8c1ca..c6c01976c77f6fd921fed4c326f45c7712dd0f58 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    686,
 /**/
     685,
 /**/