'Eclipse'에 해당되는 글 2건

  1. 2015.02.03 Useful Shortcuts in Eclipse
  2. 2011.10.29 Windows 7 에서 이클립스를 태스크바에 고정하기
2015. 2. 3. 00:04

Useful Shortcuts in Eclipse

Here are the shortcuts that is used very often  by me.


 Ctrl + Shift + O

 imports all classes in a file automatically

 Ctrl + O

 show code outline / structure

 Atl + Shift + F

 Correct indentation in a file

 Ctrl + I

 Correct indentation in a selection

 Ctrl + D delete a line

 Ctrl + 1

 Quick fix 

 Ctrl + B

 Build all. 

 Change this short cut to "Build Project" to save your time.

 F11 Debug
 Ctrl + F11 Run
 F3 Open declaration. Go to source.

 Alt + Left Arrow

 Go to back 

 Alt + Right Arrow 

 Go to forward 

 Ctrl + Shift + R

 Open resource like a file

 Ctrl + Shift + B

 Toggle break point

 Alt + Shift + J Add 
 Alt + Shift + E

 Show in navigator.

 Not default. Need to set this short cut by yourself

 Ctrl + K 

 Find next
 Ctrl + Shift + K Find previous 

 Ctrl + Shift + W

 Close others.
 Not default. Need to set this shout cut by yourself 

 Ctrl + H

 Show search dialog with various options

 Ctrl + / Toggle line comment 

 Ctrl + Shift + /

 Add block comment
 Ctrl + Shift + \

 Remove block comment 

 Alt + G

 Open implementation
 Alt + Shift + G Open super implementation


2011. 10. 29. 09:39

Windows 7 에서 이클립스를 태스크바에 고정하기

이클립스의 실행화일을 그대로 태스크바(작업 표시줄)에 고정하면 제대로 동작하지 않습니다. 이클립스를 실행하면 두 개의 작업이 표시되게 됩니다. 이걸 방지하고 아래 그림처럼 보이게 하기 위해서는 이클립스를 실행한 후에 작업 표시줄에서 이클립스를 선택하고 오른쪽 마우스를 눌러 나오는 메뉴에서 "이 프로그램을 작업 표시줄에 고정"을 선택해 주면 됩니다.

 64비트 JDK 를 사용하는 경우, 간혹 이런 메뉴가 나타나지 않는 경우가 있는데, 이는 System Path 환경변수에 설치된 JDK Path 를 지정을 하고, eclipse.ini 에 -vm 옵션이 javaw.exe 로 지정되어 있으면 이를 삭제합니다. 

설정이 완료되면, 왼쪽 그림처럼 작업표시줄에 이클립스가 고정되면서, 이클립스 실행 후에는 하나의 작업만 표시되게 됩니다.

참고:

 http://aaron-kelley.net/blog/2010/11/cant-pin-eclipse-to-the-taskbar-in-windows-7/