Created
May 10, 2023 03:37
-
-
Save mhucka/5468f89c1d6b1de2021369b445000a8d to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
* File name : Library/KeyBindings/DefaultKeyBinding.dict | |
* Description : MacOSX global key binding personalizations | |
* Original author(s): Michael Hucka <[email protected]> | |
* Organization : California Institute of Technology | |
* | |
* Some bindings were collected from TextServices. | |
* Original (for emacs bindings) came off the net somewhere. | |
* | |
* See here for more documentation: | |
* file:///Developer/Documentation/Cocoa/Conceptual/BasicEventHandling/Tasks/TextDefaultsAndBindings.html | |
* http://www.lsmason.com/articles/macosxkeybindings.html | |
* http://www.lorax.com/FreeStuff/TextExtras.html | |
* | |
* Incremental Search from M. McCracken | |
* http://michael-mccracken.net/blog/blosxom.pl/computers/mac/programming/iSearchPluginNSTextView.html | |
* | |
* Modifiers: | |
* ^ for Control | |
* ~ for Option | |
* $ for Shift | |
* # for numeric keypad | |
* | |
* Do the following in a shell: | |
* ---------------------------- | |
* defaults write -g NSTextKillRingSize -int 20 | |
* defaults write -g NSRepeatCountBinding -string "^u" | |
* | |
*/ | |
{ | |
"^ " = (setMark:); | |
"^_" = (undo:); | |
"^a" = (moveToBeginningOfLine:); | |
"^e" = (moveToEndOfLine:); | |
"^g" = (cancelOperation:); | |
"^i" = (indent:); | |
"^j" = (insertLineBreak:); | |
/* "^k" = (setMark:, moveToEndOfLine:, selectToMark:, copy:, swapWithMark:, deleteToEndOfLine:); */ | |
"^l" = (centerSelectionInVisibleArea:); | |
"^q" = { | |
"^i" = insertTabIgnoringFieldEditor:; | |
"^h" = insertBacktab:; | |
"^j" = insertNewlineIgnoringFieldEditor:; | |
}; | |
"^r" = (ISIM_reverseIncrementalSearch:); | |
"^s" = (ISIM_incrementalSearch:); | |
"^t" = (transpose:); | |
/* ^u is done using 'defaults write -g NSRepeatCountBinding -string "^u"' */ | |
"^v" = (pageDown:); | |
"^w" = (selectToMark:, cut:); | |
"^x" = { | |
"h" = (selectAll:); | |
"k" = (performClose:); | |
"u" = (undo:); | |
"^f" = (openDocument:); | |
"^s" = (save:); | |
"^w" = (saveAs:); | |
"^x" = ("swapWithMark:", "centerSelectionInVisibleArea:"); | |
}; | |
"^y" = (yank:); | |
"~<" = (moveToBeginningOfDocument:); | |
"~>" = (moveToEndOfDocument:); | |
"~{" = (moveBackward:, moveToBeginningOfParagraph:); | |
"~}" = (moveForward:, moveToEndOfParagraph:); | |
"~/" = (complete:); | |
"~\\@" = (moveWordForward:, moveWordBackward:, selectWord:); | |
"~\"" = (scrollLineDown:); | |
"~\'" = (scrollLineUp:); | |
"~\177" = (setMark:, moveWordBackward:, selectToMark:, copy:, moveForward:, swapWithMark:, deleteWordBackward:); | |
"~b" = (moveWordBackward:); | |
"~c" = (moveWordForward:, moveWordBackward:, capitalizeWord:, moveBackward:, moveWordForward:); | |
"~d" = (setMark:, moveWordForward:, selectToMark:, cut:); | |
"~f" = (moveWordForward:); | |
"~h" = (selectParagraph:); | |
"~i" = (insertTab:); | |
"~l" = (moveWordForward:, moveWordBackward:, lowercaseWord:, moveBackward:, moveWordForward:); | |
"~m" = (moveToBeginningOfLine:, moveWordForward:, moveWordBackward:); | |
"~q" = (selectParagraph:, doReformatService:); | |
"~t" = (transposeWords:); | |
"~u" = (moveWordForward:, moveWordBackward:, uppercaseWord:, moveBackward:, moveWordForward:); | |
"~v" = (pageUp:); | |
"~w" = (selectToMark:, copy:); | |
"~y" = (yankAndSelect:); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment