Created
December 29, 2022 09:51
-
-
Save jsmolina/2574f9998fcb3e7cf66e76c0679a44a5 to your computer and use it in GitHub Desktop.
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
// 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