Skip to content

Instantly share code, notes, and snippets.

@keik
Created December 5, 2017 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save keik/07884ef00455dfd9acfba7cb57831d5e to your computer and use it in GitHub Desktop.
Save keik/07884ef00455dfd9acfba7cb57831d5e to your computer and use it in GitHub Desktop.
Karabiner-Elements で shift + space での IME トグル
{
"title": "For Japanese",
"rules": [
{
"description": "toggle eisuu with shift + space",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "spacebar",
"modifiers": { "mandatory": "left_shift" }
},
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{ "language": "en" }
]
}
],
"to": [{ "key_code": "japanese_kana" }]
},
{
"type": "basic",
"from": {
"key_code": "spacebar",
"modifiers": { "mandatory": "left_shift" }
},
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{ "language": "ja" }
]
}
],
"to": [{ "key_code": "japanese_eisuu" }]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment