Alt key gets ignored by Keyman Developer
Clash Royale CLAN TAG #URR8PPP Alt key gets ignored by Keyman Developer I'm attempting to make a keyboard in Keyman Developer 9.0. But rules involving any of the Alt keys seem to get ignored and produce no output in the debugger. Here's my MCVE: this keyboard layout code is an attempt to modify the behavior of a single key, the Z key. store(&VERSION) '9.0' store(&NAME) 'Sandbox' begin Unicode > use(main) group(main) using keys + [SHIFT K_Z] > 'Shift! ' + [LALT K_Z] > 'Lalt! ' + [RALT K_Z] > 'Ralt! ' This compiles cleanly. Then typing Shift z in the debugger print Shift! as intended. Shift! But Alt z and Alt Gr z don't do anything. It's as if those rules get ignored. Same problem if I don't distinguish between left and right Alt keys and just use + [ALT K_Z] > 'Alt! ' How do I fix this? My physical keyboard has a European layout, more specifically for Denmark... though I don't think thi...