Last active
January 8, 2024 20:15
-
-
Save greneholt/17827a5a2ffdea2427c59ff45c238353 to your computer and use it in GitHub Desktop.
Keybindings to make home and end move to the beginning and end of the line. Place in ~/Library/KeyBindings/DefaultKeyBinding.dict
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" = moveToBeginningOfLine:; // home | |
"\UF72B" = moveToEndOfLine:; // end | |
"$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home | |
"$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment