Last active
November 12, 2017 00:47
-
-
Save jmblog/3a40fade91f5acfc0a9e53c0889b2c69 to your computer and use it in GitHub Desktop.
かなキーで「英数/かな」のトグル切り替え(Karabiner-Elements 11.1.8以上が必要)
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
{ | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"description": "Toggle input source (English or Japanese) by kana key (available since Karabiner-Elements 11.1.8)", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"input_sources": [ | |
{ | |
"language": "ja" | |
} | |
], | |
"type": "input_source_if" | |
} | |
], | |
"from": { | |
"key_code": "japanese_kana" | |
}, | |
"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