Created
April 3, 2018 07:32
-
-
Save tomstorey/b3a5691f9cf0de6f8fcf4feb66f6068c to your computer and use it in GitHub Desktop.
Mac key bindings
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
{ | |
/* Home */ | |
"\UF729" = "moveToBeginningOfLine:"; | |
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; | |
/* End */ | |
"\UF72B" = "moveToEndOfLine:"; | |
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; | |
/* Page Up/Down */ | |
"\UF72C" = "pageUp:"; | |
"\UF72D" = "pageDown:"; | |
/* Insert Pound Sterling symbol on Ctrl-Shift-4 */ | |
"^\\$" = ("insertText:", "\U00A3"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment