vote up 47 vote down star
96

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

vote up 3 vote down

How about:

Ctrl-PgUp and Ctrl-PgDn to navigate through the open files in the editor (including the overflow section if you Ctrl-PgDn all the way to the right).

link|flag
vote up 2 vote down

ctrl + O is an popup outline view that lets you start typing to filter on a name

Turn on the Save Action to clean up your code and it will be automatically formatted and import optimized every time you save. To easily get to this option choose "Windows|Preferences" start type "Save Act" in the filter box and turn on the option.

In the new 3.4 release, turn on the "Breadcrumb trail" at the top of the editor window. There's a new toolbar button for this.

link|flag
vote up 2 vote down

ctrl-alt-up/down to copy a line up (or down). That followed by alt-up/down is often much quicker than a copy-paste

link|flag
vote up 2 vote down

Don't know a keyboard shortcut to it, but select a local variable in a method, and then right click. Under refactor is "convert local variable to field". Very useful on occasions. Just wish there was a shortcut for it!

link|flag
1  
On my MacBook the keyboard shortcut is command-alt-F. Of course these key mappings are configurable under preferences->keys (In Eclipse 3.4) – Scott Bale Oct 25 '08 at 20:33
1  
You can do that by calling the quick-refactoring menu, CTRL-1 with the cursor on the local var. – Urs Reupke Jan 9 '09 at 21:44
vote up 2 vote down

Ctrl-Alt-h To open the Call hierarchy of the selected method.

Really useful on large codebases or unknown codebases

link|flag
vote up 2 vote down

Ctrl + Shift + P to find the matching brace. Really useful while working with long codes.

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

Clicking on the return type in a method's declaration highlights all exit points of the method.

for instance:

1: public void foo()
2: {
3:   somecode();
4:    if ( blah ) return;
5:
6:    bar();
7: }

clicking on void will highlight the return on line 4 and the close } on line 7.

link|flag
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 1 vote down

Save Actions rocks. There you can get your Imports organized (Ctrl+Shift+o) and formatting of code (CTRL + SHIFT + f). Besides from that i love ALt + Shift + R for refactoring.

My favorite things is the plugins though: They might cause you to use more time but most of the time they give quality (subjective I know)

  • Code coveragde (ECLEMMA)
  • Static analysis on source(PMD)
  • Static analysis on byte code(FindBugs)
  • CheckStyle
  • SpringIDE.

Then you start to rock with the mandatory source control plugins and the maven 2 plugin.

Rock on!

link|flag
vote up 1 vote down

If you want to put a System.out.println("anything"); to your code you can simply do as follows: Only write ", then mark the "" and press Crtl-Space Up-Arrow and enter (you should land on "sysout").

Voila, there it is :)

link|flag
show 2 more comments
vote up 1 vote down

ALT+Shift+X + T

This will run your current file as a unit test.

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

Depending on what time saver means to you...

Adding TODO and FIXME in a comment automatically adds a task to the task list in Eclipse. So if there is code you want to come back to, say you were debugging and need to do some research, you can do...

FIXME means it is urgent, which puts a red ! in the task window
TODO is normal urgency

//FIXME: This accidentally deletes user accounts
user.account().delete();

//TODO: Add some validation before assigning everyone as admin
user.setPrivilege("Admin");

And then there are the setters/getters automatically being built. This is great if you are creating a bean or something. Say you have declared a class such as:

public class SomeBean {
    private static int FIRST_VALUE = 0;
    private static int SECOND_VALUE = 1;
    ...
    private static int THOUSANDTH_VALUE = 1000;
}

You can create all the variables, then right-click in the editor, go to Source and then pick Generate Setters & Getters. This will automatically create them for you.

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

Ctrl+, and Ctrl+. move the text cursor to the next and previous error or warning (red or yellow squiggle) in the source. This gets really useful if you're dealing with a big block of dirty or broken code when you're in the depths of refactoring or pasting. Combined with Ctrl+1 for suggest fix you can quickly repair the code without having to move your hand to the mouse.

In fact, you barely have to lift your finger off Ctrl...

link|flag
vote up 1 vote down

I am sorry if this is a duplicate, but I don't think I have seen this one mentioned here and I scanned over all of the posts:

Word completion:

Alt + /

is a really nice alternative to Ctrl+Space. It doesn't quite replace Ctrl+Space, but is much faster. And don't be afraid to press it multiple times, it will keep cycling over possible options.

link|flag
vote up 0 vote down

CTRL + b: to build the project under c++

CTRL + SHIFT + f: to format your code (c++)

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

Ctrl+Shift+Enter to move the current line down by one and start typing above it.
Ctrl+Shift+X to capitalize the current selection, Ctrl-Shift-Y to change it lowercase.
Ctrl+. Autocompletes the current word. This works for variables as well as strings (which is a huge timesaver for array keys, for example)

link|flag
vote up 0 vote down

Of course all these shortcuts are available in the menus but who has time for that when you're in the "zone".

I like the code hot swapping.

link|flag
vote up 0 vote down

When debuggin I find the "Display" view really useful. It lets you type code (using auto complete) and lets you run/display they outcome of whatever you write.

Give it a try!

link|flag
vote up 0 vote down

Quick Assist: Ctrl + 2, followed by F (assign to field), L(assign to local variable) and R (rename in file)

Last edit location: Ctrl+Q

Check out this article: http://dmy999.com/article/29/using-eclipse-efficiently

link|flag
vote up 0 vote down

Of course if you can't find the binding you are looking for, or don't like the current binding Window -> Preferences -> General -> Keys will allow you to change, add & delete the mappings of your key combo's.

link|flag
vote up 0 vote down

Ctrl-1 to convert if to conditional expression and back, split an assignment or join it back or do other such small manipulations. There is a list of these in the help.

link|flag
vote up 0 vote down

If you build your project with Ant you can assign a shortcut to "Runs the last launched external Tool" like Ctrl+Enter and it will repeat your last build. It is much easier than standard Alt+Shift+X,Q also it helps with a bug in the latest Eclipse that cannot find an ant build file in the project.

link|flag
vote up 0 vote down

I'm really biased and this is blatant advertising...

Still, I think my new Eclipse plugin, nWire, is the best time saver you can get for Eclipse. I developed it after years of working with Eclipse, I just came to the conclusion that I need one tool to show me all the associations of my code instead of learning different tools and views.

Check out the demo on my web site.

link|flag
vote up 0 vote down

Ctrl-Shitf- Up or Down in Java editor jumps to to nearest declaration of a method or a field in that direction.

link|flag
vote up 0 vote down

One combination to rules them all.

CTL+SHFT+L

Get the list of all these "hidden" features.

link|flag
vote up 0 vote down

Enabling 'Ignore white space' in the Compare/Patch settings is a real time saver!

link|flag
vote up 0 vote down

Hit CTRL+S very often. It's CTRL+1's best friend.

link|flag
vote up 0 vote down

I'm surprised no one mentioned the Emacs keybinding setting available in Eclipse. This is one of my favorite little features; it allows me to transition from Emacs to Eclipse with little adjustment in my navigation preferences.

Windows->Preferences->General->Keys->Scheme.

link|flag
vote up 0 vote down

Shift-F2 goes to the Javadoc for any method.

Use it a LOT. For libraries you need to configure the location , but for standard classes they are predefined by Eclipse

link|flag
vote up 0 vote down

CTRL-MouseClick (left) as an alternative for F3 to go to declaration.

link|flag

Your Answer

Get an OpenID
or

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