Skip to content

Instantly share code, notes, and snippets.

@grassdog
Created February 4, 2011 04:50
Show Gist options
  • Save grassdog/810749 to your computer and use it in GitHub Desktop.
Save grassdog/810749 to your computer and use it in GitHub Desktop.
Change the home, end, page up, and page down key bindings in macosx
{
/* home */
"\UF729" = "moveToBeginningOfLine:";
"$\UF729" = "moveToBeginningOfLineAndModifySelection:";
/* end */
"\UF72B" = "moveToEndOfLine:";
"$\UF72B" = "moveToEndOfLineAndModifySelection:";
/* page up/down */
"\UF72C" = "pageUp:";
"\UF72D" = "pageDown:";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment