vote up 50 vote down star
99

Alright it can be a lame question, but everybody uses these things differently. What's some of the best time savers out there for this IDE.

Tom

flag

64 Answers

prev 1 2 3
vote up 27 vote down

Ctrl+Shift+o to organize imports, which will format them nicely, remove unneeded imports, and add missing imports.

link|flag
1  
I noticed the other day that this can be used to organize the whole project or parts of it, not just one file as I had expected. Extremely useful. – Antti Sykäri Sep 12 '08 at 15:26
2  
@boncey yes, it is configurable. Note that since Eclipse3.3 you can ask Eclipse to automatically organize import during saves (Java > Editor > Save actions) – romaintaz Jan 30 at 12:49
show 5 more comments
vote up 3 vote down

ALt + Shift + R to refactor and rename.

link|flag
show 1 more comment
vote up 1 vote down

Ctrl+f then tick the "Regular expressions" checkbox. From that, you can search with regular expressions, but even more powerfully, you can include group matches in your replacement string ($1, $2, etc, or $0 for the whole match).

link|flag
vote up 28 vote down

Crtl+1 is my favorite. The quick fixes for the red-squiggles.

It is also located in the Edit Menu -> Quick Fix.

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.