{
"description": "Change delete to comand+backspace",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.finder"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "delete_forward"
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": [
"command"
]
}
],
"type": "basic"
}
]
}
,
{
"description": "Change shift+delete to comand+option+backspace",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.finder"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "delete_forward",
"modifiers": {
"mandatory": [
"shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": [
"command",
"option"
]
}
],
"type": "basic"
}
]
}