Created
March 16, 2019 02:52
-
-
Save haraki/680190e19877e824904b1b9e1d0fdb54 to your computer and use it in GitHub Desktop.
JISキーボードの全角/半角キーをIMEのON/OFF切り替えキーに変換する Karabiner-Elements の設定
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": "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