Skip to content

Instantly share code, notes, and snippets.

@chriddyp
Created April 26, 2018 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriddyp/6e485a9a0992f050f037e3cc348c7870 to your computer and use it in GitHub Desktop.
Save chriddyp/6e485a9a0992f050f037e3cc348c7870 to your computer and use it in GitHub Desktop.
My Atom Keymap
'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