Last active
August 29, 2015 14:11
-
-
Save vamshisuram/9cb86b43f92b72dc176d to your computer and use it in GitHub Desktop.
Atom Editor Shortcuts - windows keyboard
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
// I frequently use. | |
alt - to open/hide menu bar | |
ctrl + \ - toggle dir view | |
ctrl + w - close tab | |
ctrl + p - fuzzy finder for file | |
ctrl + 0 - open and focus the the tree view. | |
ctrl + shift + p - command pallette | |
ctrl + , - open atom editor settings | |
(ctrl + k) + (arrow) - create pane | |
(ctrl + k) + (ctrl + arrow) - focus pane | |
ctrl + alt + [, ] - fold/unfold blocks | |
ctrl + alt + {, } - fold/unfold all blocks | |
ctrl + f - find in the current file. | |
ctrl + e - use selection to find in current file | |
ctrl + shift + f - find in the opened folder in atom | |
ctrl + g - go to line | |
ctrl + r - jump to a symbol such as a method definition. | |
ctrl + j - join current and next line | |
ctrl + shift + k - del current line | |
ctrl + d - select multiple word instances | |
ctrl + l - select current line | |
ctrl + shift + d - duplicate current line | |
ctrl + up/down - move line content in arrow direction | |
ctrl + shift + F2 - toggle bookmark at the line | |
F2 - move to next bookmark | |
shift + F2 - move to previous bookmark | |
ctrl + t - transpose chars on either side of cursor | |
shift + delete OR ctrl + shift + k - delete current line | |
ctrl + enter - insert new line afte current line | |
ctrl + shift + enter - insert line before current line | |
ctrl + shift + pageUp/pageDown - move tab to left / right | |
ctrl + shift + home/end - select till top/bottom of page from cursor | |
resize - panes | |
ctrl + alt + =,- -enlarge/shrink panes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment