Skip to content

Instantly share code, notes, and snippets.

@luizcarlos1405
Created August 26, 2016 19:07
Show Gist options
  • Save luizcarlos1405/feada309cb81f27482f959f855fa316f to your computer and use it in GitHub Desktop.
Save luizcarlos1405/feada309cb81f27482f959f855fa316f to your computer and use it in GitHub Desktop.
JILK shortcut system
'body atom-workspace atom-text-editor:not([mini])':
# Move
'ctrl-alt-j': 'core:move-left'
'ctrl-alt-i': 'core:move-up'
'ctrl-alt-l': 'core:move-right'
'ctrl-alt-k': 'core:move-down'
'ctrl-alt-u': 'editor:move-to-beginning-of-word'
'ctrl-alt-o': 'editor:move-to-end-of-word'
'ctrl-alt-;': 'editor:move-to-end-of-screen-line'
'ctrl-alt-p':'editor:move-to-first-character-of-line'
'ctrl-alt-shift-i': 'editor:move-line-up'
'ctrl-alt-shift-k': 'editor:move-line-down'
# Delete
'ctrl-j': 'core:backspace'
'ctrl-l': 'core:delete'
'ctrl-u': 'editor:delete-to-beginning-of-word'
'ctrl-o': 'editor:delete-to-end-of-word'
'ctrl-p': 'editor:delete-line'
# Select
'alt-shift-j': 'core:select-left'
'alt-shift-l': 'core:select-right'
'alt-shift-i': 'core:select-up'
'alt-shift-k': 'core:select-down'
'alt-shift-u': 'editor:select-to-beginning-of-word'
'alt-shift-o': 'editor:select-to-end-of-word'
'alt-shift-p': 'editor:add-selection-above'
'alt-shift-;': 'editor:add-selection-below'
'ctrl-alt-shift-l': 'editor:select-line'
# Miscelaneous
'shift-enter': 'editor:newline-above'
'ctrl-shift-c': 'editor:toggle-line-comments'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment