Created
August 26, 2016 19:07
-
-
Save luizcarlos1405/ba167df7a88394faa1e0cd626cb9a125 to your computer and use it in GitHub Desktop.
JILK shortcut system
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
'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