Skip to content

Instantly share code, notes, and snippets.

@haraki
Created March 16, 2019 02:52
Show Gist options
  • Save haraki/680190e19877e824904b1b9e1d0fdb54 to your computer and use it in GitHub Desktop.
Save haraki/680190e19877e824904b1b9e1d0fdb54 to your computer and use it in GitHub Desktop.
JISキーボードの全角/半角キーをIMEのON/OFF切り替えキーに変換する Karabiner-Elements の設定
{
"description": "JISキーボードの全角/半角キーをIMEのON/OFF切り替えキーに変換。",
"manipulators": [{
"conditions": [{
"input_sources": [{
"language": "en"
}],
"type": "input_source_if"
}],
"from": {
"key_code": "grave_accent_and_tilde"
},
"to": [{
"key_code": "japanese_kana"
}],
"type": "basic"
},
{
"conditions": [{
"input_sources": [{
"language": "ja"
}],
"type": "input_source_if"
}],
"from": {
"key_code": "grave_accent_and_tilde"
},
"to": [{
"key_code": "japanese_eisuu"
}],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment