Created
July 26, 2025 04:04
-
-
Save kazgoto/e0b5f81916910b0a4c01cfa2810c00b2 to your computer and use it in GitHub Desktop.
Eisu (英数) and Kana (かな) act as Command when held with other keys, normal when pressed alone
This file contains hidden or 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
{ | |
"description": "Eisu (英数) and Kana (かな) act as Command when held with other keys, normal when pressed alone", | |
"manipulators": [ | |
{ | |
"from": { "key_code": "japanese_eisuu" }, | |
"to": [{ "key_code": "left_command" }], | |
"to_after_key_up": [], | |
"to_if_alone": [{ "key_code": "japanese_eisuu" }], | |
"to_if_held_down": [{ "key_code": "left_command" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { "key_code": "japanese_kana" }, | |
"to": [{ "key_code": "left_command" }], | |
"to_after_key_up": [], | |
"to_if_alone": [{ "key_code": "japanese_kana" }], | |
"to_if_held_down": [{ "key_code": "left_command" }], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment