Skip to content

Instantly share code, notes, and snippets.

@rsegecin
Created May 14, 2026 21:04
Show Gist options
  • Select an option

  • Save rsegecin/c923534766af316dc5edb6fa765fa7da to your computer and use it in GitHub Desktop.

Select an option

Save rsegecin/c923534766af316dc5edb6fa765fa7da to your computer and use it in GitHub Desktop.
left command -> left control
left control -> left command
{
"description": "Forward Delete → Partial Screenshot (Shift + Cmd + 4)",
"manipulators": [
{
"from": { "key_code": "delete_forward" },
"to": [
{
"key_code": "4",
"modifiers": ["left_shift", "left_command"]
}
],
"type": "basic"
}
]
}
{
"description": "Remap Home → Delete Forward",
"manipulators": [
{
"from": { "key_code": "home" },
"to": [{ "key_code": "delete_forward" }],
"type": "basic"
}
]
}
{
"description": "Page Up → Home",
"manipulators": [
{
"from": { "key_code": "page_up" },
"to": [{ "key_code": "home" }],
"type": "basic"
}
]
}
{
"description": "Page Down → End",
"manipulators": [
{
"from": { "key_code": "page_down" },
"to": [{ "key_code": "end" }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment