Created
June 12, 2025 01:53
-
-
Save k12u/590b2b9147db1976019c6ca64dc10e8a to your computer and use it in GitHub Desktop.
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": "英数/かな切り替えと修飾キーのためのコマンドキー設定", | |
"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