Last active
February 15, 2021 14:24
-
-
Save wozozo/4b0514a44b64f26b78a3a3eb9eb150b1 to your computer and use it in GitHub Desktop.
Macで外付けREALFORCEテンキーを使う際にKarabiner-Elementsでキーマップを修正する設定
This file contains 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
{ | |
"title": "REALFORCE 23U(テンキー)用キーバインド変更", | |
"rules": [ | |
{ | |
"description": "テンキーでイコールを入力", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"simultaneous": [ | |
{ "key_code": "keypad_6" }, | |
{ "key_code": "keypad_1" } | |
], | |
"modifiers": { "mandatory": [ "left_alt" ] } | |
}, | |
"to": [ | |
{ "key_code": "equal_sign" } | |
] | |
} | |
] | |
}, | |
{ | |
"description": "テンキーのPasteを修正", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"simultaneous": [ | |
{ "key_code": "v" } | |
], | |
"modifiers": { "mandatory": [ "left_control" ] } | |
}, | |
"to": [ | |
{ | |
"key_code": "v", | |
"modifiers": [ "left_command" ] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "テンキーのCopyを修正", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"simultaneous": [ | |
{ "key_code": "c" } | |
], | |
"modifiers": { "mandatory": [ "left_control" ] } | |
}, | |
"to": [ | |
{ | |
"key_code": "c", | |
"modifiers": [ "left_command" ] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "テンキーのCutを修正", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"simultaneous": [ | |
{ "key_code": "x" } | |
], | |
"modifiers": { "mandatory": [ "left_control" ] } | |
}, | |
"to": [ | |
{ | |
"key_code": "x", | |
"modifiers": [ "left_command" ] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment