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
|
94
|
|
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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-h To open the Call hierarchy of the selected method. Really useful on large codebases or unknown codebases |
|||
|
|
|
|
Ctrl + Shift + P to find the matching brace. Really useful while working with long codes. |
|||
|
|
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. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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)
Then you start to rock with the mandatory source control plugins and the maven 2 plugin. Rock on! |
|||
|
|
|
|
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 :) |
|||
|
|
ALT+Shift+X + T This will run your current file as a unit test. |
|||
|
|
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+, 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 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. |
|||
|
|
|
|
CTRL + b: to build the project under c++ CTRL + SHIFT + f: to format your code (c++) |
|||
|
|
Ctrl+Shift+Enter to move the current line down by one and start typing above it. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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! |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Ctrl-Shitf- Up or Down in Java editor jumps to to nearest declaration of a method or a field in that direction. |
|||
|
|
|
|
One combination to rules them all. CTL+SHFT+L Get the list of all these "hidden" features. |
|||
|
|
|
|
Enabling 'Ignore white space' in the Compare/Patch settings is a real time saver! |
|||
|
|
|
|
Hit CTRL+S very often. It's CTRL+1's best friend. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
CTRL-MouseClick (left) as an alternative for F3 to go to declaration. |
|||
|
|
