Created
September 5, 2015 19:57
-
-
Save jahio/f3d18f0afd75e1b9c555 to your computer and use it in GitHub Desktop.
Home and End Key Remapping - OS X
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
/* ~/Library/KeyBindings/DefaultKeyBinding.dict */ | |
{ | |
// Home | |
"\UF729" = "moveToBeginningOfLine:"; | |
// End | |
"\UF72B" = "moveToEndOfLine:"; | |
// Shift+Home (highlight from cursor to start of line) | |
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; | |
// Shift+End (highlight from cursor to end of line) | |
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment