Last active
February 27, 2018 11:30
-
-
Save gilbert/10fdd692799fc7269b50abbcfb2ea410 to your computer and use it in GitHub Desktop.
Add missing keyboard shortcuts on 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
/* | |
Create this as a file ~/Library/KeyBindings/DefaultKeyBinding.dict | |
Then restart your computer. | |
NOTE: ~ means alt/option | |
^ means ctrl | |
*/ | |
{ | |
"~f"="moveWordForward:"; | |
"~b"="moveWordBackward:"; | |
"~<"="moveToBeginningOfDocument:"; | |
"~>"="moveToEndOfDocument:"; | |
"~v"="pageUp:"; | |
"~d"="deleteWordForward:"; | |
"~^h"="deleteWordBackward:"; | |
"~\010"="deleteWordBackward:"; /* Alt-backspace */ | |
"~\177"="deleteWordBackward:"; /* Alt-delete */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
keeper