Skip to content

Instantly share code, notes, and snippets.

@nachodd
Last active July 28, 2021 14:06
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 nachodd/c3d9edbc94e98b5e80d06f94e9156f56 to your computer and use it in GitHub Desktop.
Save nachodd/c3d9edbc94e98b5e80d06f94e9156f56 to your computer and use it in GitHub Desktop.
{
"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