Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kazgoto/e0b5f81916910b0a4c01cfa2810c00b2 to your computer and use it in GitHub Desktop.
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
{
"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