Skip to content

Instantly share code, notes, and snippets.

@ahmeti
Created May 14, 2017 21:24
Show Gist options
  • Save ahmeti/0101fe62c76ee3b11a2e385c30619889 to your computer and use it in GitHub Desktop.
Save ahmeti/0101fe62c76ee3b11a2e385c30619889 to your computer and use it in GitHub Desktop.
$ cd ~/Library
$ mkdir KeyBindings
$ cd KeyBindings
$ vi DefaultKeyBinding.dict
{
/* Remap Home / End keys to be correct */
"\UF729" = "moveToBeginningOfLine:"; /* Home */
"\UF72B" = "moveToEndOfLine:"; /* End */
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; /* Shift + End */
"^\UF729" = "moveToBeginningOfDocument:"; /* Ctrl + Home */
"^\UF72B" = "moveToEndOfDocument:"; /* Ctrl + End */
"$^\UF729" = "moveToBeginningOfDocumentAndModifySelection:"; /* Shift + Ctrl + Home */
"$^\UF72B" = "moveToEndOfDocumentAndModifySelection:"; /* Shift + Ctrl + End */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment