Created
September 16, 2025 19:43
-
-
Save lionello/34b1697a901c84c0f3b031329d9f0ad4 to your computer and use it in GitHub Desktop.
Remapped Page-Up/Down Home/End for MacOS/Darwin
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
| { | |
| /* Home */ | |
| "\UF729" = "moveToBeginningOfLine:"; | |
| "^\UF729" = "moveToBeginningOfDocument:"; | |
| "$\UF729" = "moveToBeginningOfLineAndModifySelection:"; | |
| "^$\UF729" = "moveToBeginningOfDocumentAndModifySelection:"; | |
| /* End */ | |
| "\UF72B" = "moveToEndOfLine:"; | |
| "^\UF72B" = "moveToEndOfDocument:"; | |
| "$\UF72B" = "moveToEndOfLineAndModifySelection:"; | |
| "^$\UF72B" = "moveToEndOfDocumentAndModifySelection:"; | |
| /* PgUp */ | |
| "\UF72C" = "pageUp:"; | |
| "$\UF72C" = "pageUpAndModifySelection:"; | |
| /* PgDown */ | |
| "\UF72D" = "pageDown:"; | |
| "$\UF72D" = "pageDownAndModifySelection:"; | |
| /* Left */ | |
| "^\UF702" = "moveWordLeft:"; | |
| "^$\UF702" = "moveWordLeftAndModifySelection:"; | |
| /* Right */ | |
| "^\UF703" = "moveWordRight:"; | |
| "^$\UF703" = "moveWordRightAndModifySelection:"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment