Created
March 31, 2016 16:56
-
-
Save ubergoober/c12a99ba360491e7a231a8d584a8596f to your computer and use it in GitHub Desktop.
OSX Home/End remapping
This file contains 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
{ | |
"\UF729" = moveToBeginningOfParagraph:; // home | |
"\UF72B" = moveToEndOfParagraph:; // end | |
"$\UF729" = moveToBeginningOfParagraphAndModifySelection:; // shift-home | |
"$\UF72B" = moveToEndOfParagraphAndModifySelection:; // shift-end | |
"^\UF729" = moveToBeginningOfDocument:; // ctrl-home | |
"^\UF72B" = moveToEndOfDocument:; // ctrl-end | |
"^$\UF729" = moveToBeginningOfDocumentAndModifySelection:; // ctrl-shift-home | |
"^$\UF72B" = moveToEndOfDocumentAndModifySelection:; // ctrl-shift-end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create this file in
~/Library/KeyBindings
May have to create the Keybindings folder.
Then reboot for changes to take effect.
Source: damieng.com