Last active
May 15, 2017 14:42
-
-
Save pie6k/63a2ece0b55e60bdcbd119c3c0150a43 to your computer and use it in GitHub Desktop.
It allows moving cursor in atom without moving your hand away to arrow keys. I think it might be useful for people typing with all fingers.
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-text-editor:not([mini])': | |
'cmd-shift-j': 'core:move-left' | |
'cmd-shift-k': 'core:move-down' | |
'cmd-shift-l': 'core:move-up' | |
'cmd-:': 'core:move-right' # it's cmd-shift-; (shift + ; = :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment