Created
September 30, 2015 16:32
-
-
Save GabLeRoux/704b1cff53194774df48 to your computer and use it in GitHub Desktop.
Atom split selection into lines (Sublime Text's ctrl+shift+l)
From https://discuss.atom.io/t/multiple-selections/755/45
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
'.platform-win32 .editor, .platform-linux .editor': | |
'ctrl-shift-L': 'editor:split-selections-into-lines' | |
'ctrl-shift-up': 'editor:add-selection-above' | |
'ctrl-shift-down': 'editor:add-selection-below' |
Add the above lines to keymap.cson
by doing ctrl+shift+p within atom and typing "Application: Open Your Keymap"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was looking for this the whole time. Thanks you!