Created
April 28, 2021 16:58
-
-
Save velppa/9469504ee01735a20177b525d4e335ea to your computer and use it in GitHub Desktop.
macOS keybindings
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
{ | |
/* Keybindings for Emacs emulation. | |
* | |
* Place this file to ~/Library/KeyBindings/DefaultKeyBinding.dict, | |
* then log out / log in to the system. | |
* | |
* This is a pretty good set, especially considering that many emacs bindings | |
* such as C-o, C-a, C-e, C-k, C-y, C-v, C-f, C-b, C-p, C-n, C-t, and | |
* perhaps a few more, are already built into the system. | |
* | |
* BEWARE: | |
* This file uses the Option key as a meta key. This has the side-effect | |
* of overriding Mac OS keybindings for the option key, which generally | |
* make common symbols and non-english letters. | |
*/ | |
/* Ctrl shortcuts */ | |
"^l" = "centerSelectionInVisibleArea:"; /* C-l Recenter */ | |
"^_" = "undo:"; /* C-_ Undo */ | |
"^w" = "deleteWordBackward:"; /* C-w Delete word backward */ | |
/* Meta shortcuts */ | |
"~f" = "moveWordForward:"; /* M-f Move forward word */ | |
"~b" = "moveWordBackward:"; /* M-b Move backward word */ | |
"~<" = "moveToBeginningOfDocument:"; /* M-< Move to beginning of document */ | |
"~>" = "moveToEndOfDocument:"; /* M-> Move to end of document */ | |
"~v" = "pageUp:"; /* M-v Page Up */ | |
"~/" = "complete:"; /* M-/ Complete */ | |
"~c" = ( "capitalizeWord:", /* M-c Capitalize */ | |
"moveForward:", | |
"moveForward:"); | |
"~u" = ( "uppercaseWord:", /* M-u Uppercase */ | |
"moveForward:", | |
"moveForward:"); | |
"~l" = ( "lowercaseWord:", /* M-l Lowercase */ | |
"moveForward:", | |
"moveForward:"); | |
"~d" = "deleteWordForward:"; /* M-d Delete word forward */ | |
"~\U007F" = "deleteWordBackward:"; /* M-Bksp Delete word backward */ | |
"~t" = "transposeWords:"; /* M-t Transpose words */ | |
"~\@" = ( "setMark:", /* M-@ Mark word */ | |
"moveWordForward:", | |
"swapWithMark"); | |
"~h" = ( "setMark:", /* M-h Mark paragraph */ | |
"moveToEndOfParagraph:", | |
"swapWithMark"); | |
/* C-x shortcuts */ | |
"^x" = { | |
"u" = "undo:"; /* C-x u Undo */ | |
"k" = "performClose:"; /* C-x k Close */ | |
"^f" = "openDocument:"; /* C-x C-f Open (find file) */ | |
"^x" = "swapWithMark:"; /* C-x C-x Swap with mark */ | |
"^m" = "selectToMark:"; /* C-x C-m Select to mark*/ | |
"^s" = "saveDocument:"; /* C-x C-s Save */ | |
"^w" = "saveDocumentAs:"; /* C-x C-w Save as */ | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment