Skip to content

Instantly share code, notes, and snippets.

@jsmolina
Created December 29, 2022 09:51
Show Gist options
  • Save jsmolina/2574f9998fcb3e7cf66e76c0679a44a5 to your computer and use it in GitHub Desktop.
Save jsmolina/2574f9998fcb3e7cf66e76c0679a44a5 to your computer and use it in GitHub Desktop.
// disables weird keyboard behaviours in mac ~/Library/KeyBindings/DefaultKeyBinding.dict
{
"\UF729" = moveToBeginningOfLine:; // home
"\UF72B" = moveToEndOfLine:; // end
"$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home
"$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end
"@\UF700" = noop:; // command-up
"@\UF701" = noop:; // command-down
"$@\UF700" = noop:; // shift-command-up
"$@\UF701" = noop:; // shift-command-down
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment