Skip to content

Instantly share code, notes, and snippets.

@k12u
Created June 12, 2025 01:53
Show Gist options
  • Save k12u/590b2b9147db1976019c6ca64dc10e8a to your computer and use it in GitHub Desktop.
Save k12u/590b2b9147db1976019c6ca64dc10e8a to your computer and use it in GitHub Desktop.
Karabiner-Elements: 英語キーボードで英数/かなをコマンドキーで代用
{
"description": "英数/かな切り替えと修飾キーのためのコマンドキー設定",
"manipulators": [
{
"from": {
"key_code": "left_command",
"modifiers": { "optional": ["any"] }
},
"parameters": {
"basic.to_if_alone_timeout_milliseconds": 200,
"basic.to_if_held_down_threshold_milliseconds": 100
},
"to": [
{
"key_code": "left_command",
"lazy": true
}
],
"to_if_alone": [{ "key_code": "japanese_eisuu" }],
"to_if_held_down": [{ "key_code": "left_command" }],
"type": "basic"
},
{
"from": {
"key_code": "right_command",
"modifiers": { "optional": ["any"] }
},
"parameters": {
"basic.to_if_alone_timeout_milliseconds": 200,
"basic.to_if_held_down_threshold_milliseconds": 100
},
"to": [
{
"key_code": "right_command",
"lazy": true
}
],
"to_if_alone": [{ "key_code": "japanese_kana" }],
"to_if_held_down": [{ "key_code": "right_command" }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment