Eclipse intelliJ Atom 단축키
2019-08-02
VSCode는 쓰다가 관둬서 정보가 별로 없다.
CODE DEVELOP REL.
intelliJ
- extends selection
Ctrl+W인데, 다른 툴에서 해당 단축키는 창닫기로 쓰고 있기 때문에 일관성을 위해Alt+W로 변경했다.- delete line
Ctrl+Y인데, 마찬가지 이유로Ctrl+D로 변경하고,Ctrl+D의 line copy 는 그냥 안쓰기로했다.
| descriptioin | Eclipse | intelliJ | Atom | VSCode |
|---|---|---|---|---|
| delete line | Ctrl+D | Ctrl+Y >> Ctrl+D | Ctr+Shift+K | Ctrl+D |
| jump to declaration | F3 | Ctrl+B | ||
| backward | Alt+Left | Ctrl+Alt+Left | ||
| forward | Alt+Right | Ctrl+Alt+Right | ||
| next method | Ctrl+Shift+Up | Alt+Up | ||
| previous method | Ctrl+Shift+Down | Alt+Down | ||
| auto correction | Ctrl+Shift | Alt+Enter | ||
| auto import | Ctrl+Shift+O | Ctrl+Alt+O | ||
| code beautify | Ctrl+Shift+F | Ctrl+Alt+L | ||
| extends selection | Ctrl+W >> Alt+W | |||
| next highlighted error | Ctrl+. (dot) | F2 | ||
| previous highlighted error | Ctrl+, (comma) | Shift+F2 |
NAVIGATE EDITOR REL.
| descriptioin | Eclipse | intelliJ | Atom | VSCode |
|---|---|---|---|---|
| previous editor | Ctrl+PageDown | Alt+Left | Ctrl+PageDown | Ctrl+PageDown |
| next editor | Ctrl+PageUp | Alt+Right | Ctrl+PageUp | Ctrl+PageUp |
| close editor | Ctrl+W | Ctrl+F4 | Ctrl+W | Ctrl+W |
| open resource | Ctrl+Shift+R | Ctrl+Shift+N | Ctrl+P | Ctrl+P |
| open class | Ctrl+N |
FIND & REPLACE REL.
| descriptioin | Eclipse | intelliJ | Atom | VSCode |
|---|---|---|---|---|
| only find | Ctrl+F | = | = | = |
| find and replace | Ctrl+F | Ctrl+F | Ctrl+F | Ctrl+H |
| after find, replace all | Alt+A | Ctrl+Enter | Ctrl+Alt+Enter |
BUILD / RUN / DEBUG REL.
Eclipse개인적인 취향으로 아래 단축키를 사용한다.
Run=Alt+Shift+X (eXecute)+J (Java application)Debug=Alt+Shift+D (Debug)+J (Java application)
intelliJ-Debug관련 단축키는 좀 이상한듯?
| descriptioin | Eclipse | intelliJ | Atom | VSCode |
|---|---|---|---|---|
| Build | Ctrl+B | Ctrl+F9 | ||
| Run | Ctrl+F11 | Shift+10 | ||
| Step Over | F6 | F8 | ||
| Step Into | F5 | F7 | ||
| Step Out | F7 | Shift+F8 | ||
| Resume Program | F8 | F9 |
NAVIGATE VIEW REL.
Eclipse아래와 같이 변경하면 편하다.
Next View=Ctrl+F7(default)»F7Next Perspective=Ctrl+F8(default)»F8
| descriptioin | Eclipse | intelliJ | Atom | VSCode |
|---|---|---|---|---|
| focus to project view | Ctrl+F7 >> F7 | Alt+1 | ||
| show run console | Ctrl+F7 >> F7 | Alt+4 | Ctrl+Shift+Y | |
| show debug console | Ctrl+F8 >> F8 | Alt+5 |
