Created
May 14, 2026 21:04
-
-
Save rsegecin/c923534766af316dc5edb6fa765fa7da 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
| 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