Created
August 1, 2016 18:01
-
-
Save pcnate/b9f33fb1cda97a0c173b1bc048c3b0b4 to your computer and use it in GitHub Desktop.
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-workspace atom-text-editor:not([mini])': | |
'ctrl-shift-down': 'editor:move-line-down' | |
'ctrl-shift-up': 'editor:move-line-up' | |
# requires https://atom.io/packages/multi-cursor | |
'atom-workspace atom-text-editor:not([mini])': | |
# you may have to unset the keybinding if it's already in use. | |
# Expand current cursor | |
'alt-shift-down': 'multi-cursor:expandDown' | |
'alt-shift-up': 'multi-cursor:expandUp' | |
# Move the last cursor. | |
'ctrl-alt-shift-down': 'multi-cursor:move-last-cursor-down' | |
'ctrl-alt-shift-right': 'multi-cursor:move-last-cursor-right' | |
'ctrl-alt-shift-left': 'multi-cursor:move-last-cursor-left' | |
'ctrl-alt-shift-up': 'multi-cursor:move-last-cursor-up' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment