vote up 46 vote down star
89

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

63 Answers

1 2 3 next
vote up 0 vote down

If you are using the F3 key to navigate to the source code of a method, you could often waste your time to switch to the the Interface instead of going directly to the implementation class (there is often only one, for DAO, Service,... for example)

Using Ctrl+Mouse pointer to one method of the code, you will be able to choose between directly going to the Directly go to the Implementation (the class) or the Declaration (the interface)

More info about this tip here:

http://www.ibm.com/developerworks/opensource/library/os-eclipse-galnav/index.html

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

I recently mapped alt-enter to the same command as ctrl-1. It's just a bit easier to get to.

I also use alt+shift+x &t a bunch, but I'm not a fan of how the integrated test runner works.

link|flag
vote up 0 vote down

ctrl+d to delete the current line

alt+up/down to move the current line or block of selected text up or down

ctrl+alt+up/down to copy/duplication the current line or block of selected text up or down

ctrl+alt+c SVN commit (with subversive)

ctrl+alt+u SVN update (with subversive)

link|flag
vote up 0 vote down

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

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 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

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

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

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

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

link|flag
vote up 2 vote down

Here is my collection of the most useful keyboard shortcuts for Eclipse 3:

Eclipse 3 Favorite Keyboard Shortcuts. 
by -=MaGGuS=-

Navigate:

•   Ctrl + Shift + L – Shows useful keyboard shortcuts in popup window 
•   Ctrl + H – Search.
•   Ctrl + K – Goes to next search match in a single file. Shift + Ctrl + K – goes to previous match.
•   F3 - Goes to ‘declaration’ of something. Same as Ctrl + Click.
•   Ctrl + Shift + G - Use this on a method name or variable. It will search for references in the code (all the code) to that item.
•   Ctrl + O – Shows outline view of the current class or interface.
•   Ctrl + T – Shows class hierarchy of the current class or interface. F4 – shows the same in separate tab.
•   Ctrl + Shift + T - Open Type. Search for any type globally in the workspace.
•   Ctrl + Shift + R – Open Resource. Search for any file inside workspace.
•   Ctrl + J – Incremental search. Similar to the search in firefox. It shows you results as you type. Shift + Ctrl +J - Reverse incremental search.
•   Ctrl + Q – Goes to the last edit location.
•   Ctrl + Left|Right – Go Back/Forward in history.
•   Ctrl + L – Go to line number.
•   Ctrl + E – This will give you a list of all the source code windows that are currently open. You can arrow up or down on the items to go to a tab.
•   Ctrl +PgUp|PgDown – Cycles through editor tabs.
•   Ctrl + Shift + Up|Down - Bounces you up and down through the methods in the source code.
•   Ctrl + F7 – Switches between panes (views).
•   Ctrl + ,|. – Go to the previous/next error. Great in combination with Ctrl + 1.
•   Ctrl + 1 on an error – Brings up suggestions for fixing the error. The suggestions can be clicked.
•   Ctrl + F4 – Close one source window.

Edit:

•   Ctrl + Space – Auto-completion.
•   Ctrl + / – Toggle comment selected lines.
•   Ctrl + Shift + /|\ – Block comment/uncomment selected lines.
•   Ctrl + Shift + F – Quickly ‘formats’ your java code based on your preferences set up under Window –> Preferences.
•   Ctrl + I – Correct indentations.
•   Alt + Up|Down – move the highlighted code up/down one line. If nothing is selected, selects the current line.
•   Ctrl + D – Delete row.
•   Alt + Shift + Up|Down|Left|Right – select increasing semantic units.
•   Ctrl + Shift + O – Organize Imports.
•   Alt + Shift + S – Brings up “Source” menu.
o   Shift + Alt + S, R – Generate getter/setter.
o   Shift + Alt + S, O – Generate constructor using fields.
o   Shift + Alt + S, C – Generate constructor from superclass.
•   Alt + Shift + T – Brings up “Refactor” menu.
•   Alt + Shift + J – Insert javadoc comment.
•   F2 – Display javadoc popup for current item. Shift + F2 – Display javadoc in external browser.

Run/Debug:

•   F11 / Ctrl + F11 – Execute/debug.
•   Ctrl + Shift +B – Toggle breakpoint.
•   When paused: F5 – Step into, F6 – Step over, F7 – Step out, F8 – Resume.
•   Ctrl + F2 – Terminate.

EOF
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 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 31 vote down

Ctrl-2 something

Seems that nobody mentioned Ctrl-2 L (assign to new local variable) and Ctrl-2 F (assign to a new field), these ones have changed how I write code.

Previously, I was typing, say (| is cursor location):

Display display = new |

and then I pushed Ctrl-Space to complete the constructor call. Now I type:

new Display()|

and press Ctrl-2 L, which results in:

Display display = new Display()|

This really speeds things up. (Ctrl-2 F does the same, but assigns to a new field rather than a new variable.)

Another good shortcut is Ctrl-2 R: rename in file. It is much faster than rename refactoring (Alt-Shift-R) when renaming things like local variables.

Actually I went to Keys customization preference page and assigned all sorts of additional quick fixes to Ctrl-2-something. For example I now press Ctrl-2 J to split/join variable declaration, Ctrl-2 C to extract an inner class into top-level, Ctrl-2 T to add throws declaration to the function, etc. There are tons of assignable quick fixes, go pick your favourite ones and assign them to Ctrl-2 shortcuts.

Templates

Another favourite of mine in my “npe” template, defined as:

if (${arg:localVar} == null)
    throw new ${exception:link(NullPointerException,IllegalArgumentException)}("${arg:localVar} is null");

This allows me to quickly add null argument checks at the start of every function (especially ones that merely save the argument into a field or add it into a collection, especially constructors), which is great for detecting bugs early.

See more useful templates at www.tarantsov.com/eclipse/templates/. I won't list them all here because there are many, and because I often add new ones.

Completion

A few code completion tricks:

  • camel case support mentioned in another answer: type cTM, get currentTimeMillis
  • default constructor: in the class declaration with no default constructor push Ctrl-Space, the first choice will be to create one
  • overloading: in the class declaration start typing name of a method you can overload, Ctrl-Space, pick one
  • getter/setter creation: type “get”, Ctrl-Space, choose a getter to create; same with “is” and “set”

Assign To A New Field

This is how I add fields.

  1. If you have no constructors yet, add one. (Ctrl-Space anywhere in a class declaration, pick the first proposal.)

  2. Add an argument (| is cursor position):

    public class MyClass {
        public MyClass(int something|) {
        }
    }
    
  3. Press Ctrl-1, choose “assign to a new field”. You get:

    public class MyClass {
        private final Object something;
        public MyClass(Object something) {
            this.something = something;
        }
    }
    
  4. Add a null-pointer check if appropriate (see “npe” template above):

    public class MyClass {
        private final Object something;
        public MyClass(Object something) {
            npe|
            this.something = something;
        }
    }
    

    Hit Ctrl-Space, get:

    public class MyClass {
        private final Object something;
        public MyClass(Object something) {
            if (something == null)
                throw new NullPointerException("something is null");
            this.something = something;
        }
    }
    

A great time saver!

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

A hidden gem is the conditional breakpoint. Really useful for skipping over portions of loops, pausing if something is null or meets a certain value, etc... just right-click on the breakpoint, Breakpoint Properties --> Enable Condition. There's even code assist within the textbox!

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 5 vote down

Absolutely, Ctrl+Q to go to last edit location. It is very useful just after being interrupted by phone, boss or others.

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

Breakpoint on Exception

Eclipse let you set breakpoints based on where an Exception occurs.
You access the option via the "j!" alt text icon in the debugging window.

alt text

The official help topic "Add Java Exception Breakpoint " has more on this.

  • The Uncaught Exception option is to suspend execution when an exception of the same type as the breakpoint is thrown in an uncaught location.
  • The Caught Exception option is to suspend execution when an exception of the same type as the breakpoint is thrown in a caught location.
  • do not forget the Exception Breakpoint Suspend on Subclass of this Exception:
    to suspend execution when subclasses of the exception type are encountered.
    For example, if an exception breakpoint for RuntimeException is configured to suspend on subclasses, it will also be triggered by a NullPointerException.

alt text

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 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 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

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 at 21:44
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 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 8 vote down

ctrl+d - to delete current line

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 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
1 2 3 next

Your Answer

Get an OpenID
or

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