Skip to content

Instantly share code, notes, and snippets.

@ebruning
Created July 25, 2012 04:54
Show Gist options
  • Select an option

  • Save ebruning/3174476 to your computer and use it in GitHub Desktop.

Select an option

Save ebruning/3174476 to your computer and use it in GitHub Desktop.
Change home and end keys Mac OSX
http://www.samuelhwong.com/blog/2011/08/29/remapping-keyboard-and-mouse-in-mac-os-x-lion/
~/Library/KeyBindings/DefaultKeyBinding.dict
{
/* Remap Home / End to be correct */
"\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