Created
April 26, 2018 15:14
-
-
Save chriddyp/6e485a9a0992f050f037e3cc348c7870 to your computer and use it in GitHub Desktop.
My Atom Keymap
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
'atom-text-editor:not([mini])': | |
'ctrl-i': 'core:move-up' | |
'ctrl-k': 'core:move-down' | |
'ctrl-j': 'editor:move-to-beginning-of-word' | |
'ctrl-l': 'editor:move-to-end-of-word' | |
'ctrl-alt-i': 'editor:move-to-beginning-of-previous-paragraph' | |
'ctrl-alt-k': 'editor:move-to-beginning-of-next-paragraph' | |
'shift-ctrl-alt-i': 'editor:select-to-beginning-of-previous-paragraph' | |
'shift-ctrl-alt-k': 'editor:select-to-beginning-of-next-paragraph' | |
'ctrl-alt-j': 'core:move-left' | |
'ctrl-alt-l': 'core:move-right' | |
'ctrl-shift-i': 'core:select-up' | |
'ctrl-shift-k': 'core:select-down' | |
'ctrl-shift-j': 'editor:select-to-beginning-of-word' | |
'ctrl-shift-l': 'editor:select-to-end-of-word' | |
'ctrl-alt-shift-j': 'core:select-left' | |
'ctrl-alt-shift-l': 'core:select-right' | |
'ctrl-;': 'editor:newline' | |
'ctrl-p': 'core:delete' | |
'body': | |
'cmd-shift-}': 'pane:show-next-item' | |
'cmd-shift-{': 'pane:show-previous-item' | |
'ctrl-]': 'window:focus-pane-on-right' | |
'ctrl-[': 'window:focus-pane-on-left' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment