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
|
89
|
|
|||
|
|
|
|
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 |
|||
|
|
|
|
Clicking on the return type in a method's declaration highlights all exit points of the method. for instance:
clicking on void will highlight the return on line 4 and the close } on line 7. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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) |
|||
|
|
|
|
CTRL-MouseClick (left) as an alternative for F3 to go to declaration. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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:
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Hit CTRL+S very often. It's CTRL+1's best friend. |
|||
|
|
|
|
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). |
|||
|
|
|
|
Enabling 'Ignore white space' in the Compare/Patch settings is a real time saver! |
|||
|
|
|
|
Here is my collection of the most useful keyboard shortcuts for Eclipse 3:
|
|||
|
|
|
|
One combination to rules them all. CTL+SHFT+L Get the list of all these "hidden" features. |
|||
|
|
|
|
Ctrl + Shift + P to find the matching brace. Really useful while working with long codes. |
|||
|
|
Ctrl-2 somethingSeems 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):
and then I pushed Ctrl-Space to complete the constructor call. Now I type:
and press Ctrl-2 L, which results in:
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. TemplatesAnother favourite of mine in my “npe” template, defined as:
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. CompletionA few code completion tricks:
Assign To A New FieldThis is how I add fields.
A great time saver! |
|||
|
|
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, |
|||
|
|
|
|
Ctrl-Shitf- Up or Down in Java editor jumps to to nearest declaration of a method or a field in that direction. |
|||
|
|
|
|
Absolutely, Ctrl+Q to go to last edit location. It is very useful just after being interrupted by phone, boss or others. |
|||
|
|
|
|
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... |
|||
|
|
|
|
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. |
|||
|
|
|
|
Eclipse let you set breakpoints based on where an Exception occurs.
The official help topic "Add Java Exception Breakpoint " has more on this.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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
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:
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. |
|||
|
|
Ctrl-Alt-h To open the Call hierarchy of the selected method. Really useful on large codebases or unknown codebases |
|||
|
|
|
|
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! |
||||||||
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
ctrl+d - to delete current line |
|||
|
|
ALT+Shift+X + T This will run your current file as a unit test. |
|||
|
|
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. |
|||
|
|

icon in the debugging window.