Skip to content

Instantly share code, notes, and snippets.

@gilbert
Created February 17, 2017 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilbert/a69d5db6d2bcef11bc299e29155344f4 to your computer and use it in GitHub Desktop.
Save gilbert/a69d5db6d2bcef11bc299e29155344f4 to your computer and use it in GitHub Desktop.
Enable terminal text navigation keyboard shortcuts across entire OS X operating system
/* Create a new file at ~/Library/KeyBindings/DefaultKeyBinding.dict */
/* and copy/paste this into it. */
{
"~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