Created
July 25, 2012 04:54
-
-
Save ebruning/3174476 to your computer and use it in GitHub Desktop.
Change home and end keys Mac OSX
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
| 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