Last active
July 28, 2021 14:06
-
-
Save nachodd/c3d9edbc94e98b5e80d06f94e9156f56 to your computer and use it in GitHub Desktop.
This file contains hidden or 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": "Map Option+Backward-delete to Ctrl+Backward-Delete.", | |
"rules": [ | |
{ | |
"description": "Map Option+Backward-delete to Ctrl+Backward-Delete. (delete current word).", | |
"type": "basic", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "delete_or_backspace", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "delete_or_backspace", | |
"modifiers": [ | |
"control" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment