Skip to content

Instantly share code, notes, and snippets.

@2357gi
Created December 10, 2024 06:59
Show Gist options
  • Save 2357gi/a593f3ca81b66284df8329bcbb618d83 to your computer and use it in GitHub Desktop.
Save 2357gi/a593f3ca81b66284df8329bcbb618d83 to your computer and use it in GitHub Desktop.
keymap for deleting c-h
{
"description": "Map shortcuts for deleting to the beginning of the line",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["control", "command"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["command"]
}
],
"type": "basic"
},
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["control", "option"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["option"]
}
],
"type": "basic"
},
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["control"],
"optional": ["any"]
}
},
"to": [{ "key_code": "delete_or_backspace" }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment