Skip to content

Instantly share code, notes, and snippets.

@wozozo
Last active February 15, 2021 14:24
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 wozozo/4b0514a44b64f26b78a3a3eb9eb150b1 to your computer and use it in GitHub Desktop.
Save wozozo/4b0514a44b64f26b78a3a3eb9eb150b1 to your computer and use it in GitHub Desktop.
Macで外付けREALFORCEテンキーを使う際にKarabiner-Elementsでキーマップを修正する設定
{
"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