Skip to content

Instantly share code, notes, and snippets.

@jmblog
Last active November 12, 2017 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmblog/3a40fade91f5acfc0a9e53c0889b2c69 to your computer and use it in GitHub Desktop.
Save jmblog/3a40fade91f5acfc0a9e53c0889b2c69 to your computer and use it in GitHub Desktop.
かなキーで「英数/かな」のトグル切り替え(Karabiner-Elements 11.1.8以上が必要)
{
"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