Sierra で karabiner が動かなくなったので、Karabiner elements に移行しました。
左利き用の下記設定です。
- shift+delete to command+v
- fn+delete to command+c
~/.config/karabiner/assets/complex_modifications/123456789.json
{
"title": "Lefty Key",
"rules": [
{
"description": "Change shift+delete to command+v",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "delete_or_backspace",
"modifiers": { "mandatory": [ "right_shift" ] }
},
"to": [
{
"key_code": "v",
"modifiers": ["right_command"]
}
]
}
]
},
{
"description": "Change fn+delete to command+c",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "delete_or_backspace",
"modifiers": { "mandatory": [ "fn" ] }
},
"to": [
{
"key_code": "c",
"modifiers": ["right_command"]
}
]
}
]
}
]
}