Karabinerを使ってCtrl+かなをEnterキーに変更
#ChangeLog
from 2025/05/21
Karabinerを使ってMacのキー割り当てを変更した
code:json
{
"title": "Custom Modifications",
"rules": [
{
"description": "CapsLock + Shift Remaps",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": "left_shift",
"optional": "any"
}
},
"to": [
{
"key_code": "page_down"
}
]
},
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": "right_shift",
"optional": "any"
}
},
"to": [
{
"key_code": "mission_control",
"modifiers": "left_command"
}
]
}
]
},
{
"description": "Ctrl + かな を Enter に割り当てる",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "japanese_kana",
"modifiers": {
"mandatory": "control",
"optional": "any"
}
},
"to": [
{
"key_code": "return_or_enter"
}
]
}
]
}
]
}