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
|
|
locked by Robert Harvey♦ Oct 5 '11 at 5:46
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
closed as not constructive by Robert Harvey♦ Sep 26 '11 at 23:04
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Don't forget Ctrl+Shift+L, which displays a list of all the keyboard shortcut combinations (just in case you forget any of those listed here). |
|||||
|
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! |
|||||||||||||
|
|
ctrl-shift-r and its buddy, ctrl-shift-t, to open a resource or type, respectively. Resources includes all files in your open projects (including non-java files), and types includes java types either in your projects, or in a library included in the projects. |
|||||
|
|
Crtl+1 is my favorite. The quick fixes for the red-squiggles. It is also located in the Edit Menu -> Quick Fix. |
|||||
|
|
Ctrl+Shift+O to organize imports, which will format them nicely, remove unneeded imports, and add missing imports. |
|||||||||
|
|
Ctrl-J starts an incremental find. Hit Ctrl-J, then start typing. Use up/down to find previous/next instances of what you typed. Ctrl-Shift-J searches backwards. |
|||||
|
|
Type 'syso' then press Ctrl+Space to expand it to System.out.println(). Tres handy. |
|||||
|
|
CTRL+3 brings up a type-ahead list of any menu command. |
||||
|
|
|
|||||||||||||||||
|
|
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. Update: It even works for try{} catch blocks. If you put cursor on exception in the catch block and eclipse will highlight the probable methods which may throw that exception. |
||||
|
|
|
Code completion supports CamelCase, e.g., typing (parts copied from another answer because i think answers w/ just one hint/tip are best for polling) |
||||
|
|
|
Alt-Up Arrow moves the current selection up a line, Alt-Down Arrow moves it down. I also use Alt-Shift-Up/Down Arrow all the time. Ctrl-K and Ctrl-Shift-K is quite handy, finding next/previous occurrence of the current selection (or the last Find, if nothing is selected). |
||||
|
|
|
There's an option to place the opening curly brace and a semicolon automagically in the "correct" position. You'll have to enable this - Choose Window/Preferences and type "brace" in the searchbox - should be easily findable (no eclipse on this computer). The effect:
("|" is the cursor):
typing "{" now will result in
|
||||
|
|
|
Hippie expand/Word Complete, afaik inspired by Emacs: will autocomplete any word in any editor based on other words in that file. Autocomplete inside String literals in Java code, in xml files, everywhere. Alt + / |
|||||
|
|
Also see previous question Useful Eclipse features? |
||||
|
|
|
Alt-Shift-R stands for rename, not refactor. Refactoring is a more general term (as defined by the book). Nevertheless, it is one of my favorite refactorings. Others include:
Extract Local Variable is especially useful when I don't remember (or bother to type) the result type of a method. Assuming you have a method
Select the expression
|
|||||||||
|
|
CTRL + D - to delete current line |
||||
|
|
|
Absolutely, Ctrl+Q to go to last edit location. It is very useful just after being interrupted by phone, boss or others. |
||||
|
|
|
Ctrl + Shift + M: changes a static method or static attribute reference of a class to a static import. Before
After
|
||||
|
|
|
Nobody's mentioned the best one yet. Click on a class or method name and press Ctrl+T. You get a quick type hierarchy. For a class name you see the entire class hierarchy. For a method name you get the hierarchy showing superclasses and subclasses, with implementations of that method distinguished from abstract mentions, or classes that don't mention the method. This is huge when you are at an abstract method declaration and quickly want to see where it is implemented. |
||||
|
|
|
Alt+Shift+Up Arrow does escalating selection. Alt+Shift+Down does the opposite. |
||||
|
|
|
Alt+Up or Alt+Down to move lines |
||||
|
|
|
F3 has been my favorite, opens the definition for the selected item. Ctrl+Shift+R has an interesting feature, you can use just the uppercase camel letters from a class when searching (such as typing CWAR will show a result for ClassWithAReallyLongName). Alt+Shift+W > Package Explorer makes life easier when browsing large projects. |
|||||
|
|
A non-keyboard shortcut trick is to use commit sets in your Team->Synchronise view to organise your changes before committing. Set a change set to be the default, and all changes you make on files will be put in that set, making it easy to see what you have changed while working on a specific defect/feature, and other changes you had while testing etc. |
||||
|
|
|
CTRL+SPACE, for anything, anywhere. Generate getters and setters. Create Constructors using Fields Extract Method... Refactor->Rename CTRL+O for the quick outline. CTRL+O+CTRL+O for the inherited outline. F4 to display a type hierarchy Open Call Hierarchy to display where a method is called from. CTRL+SHIFT+T to open a Java Type CTRL+SHIFT+R to open any resource. ALT + left or right to go forward or backwards through edit places in your documents (easy navigation) Override/Implement methods if you know you're going to do a lot of methods (otherwise, CTRL+SPACE is better for one at a time selection. Refactor->Extract Interface Refactor->Pull up Refactor->Push down CTRL+SHIFT+O for organize imports (when typing the general class name such as Map, pressing CTRL+SPACE and then selecting the appropriate class will import it directly for you). CTRL+SHIFT+F for formatting (although Eclipse's built in formatter can be a little braindead for long lines of code) EDIT: Oh yeah, some debugging: F5: Step into (show me the details!) F6: Step over (I believe you, on to the next part...) F7: Step out (I thought I cared about this method, but it turns out I don't, get me out of here!) F8: Resume (go until the next breakpoint is reached) CTRL+SHIFT+I: inspect an expression. CTRL+SHIFT+I+CTRL+SHIFT+I: create a watch expression on the inspected expression. Conditional breakpoints: Right click a breakpoint and you may set a condition that occurs which triggers its breaking the execution of the program (context assist, with Ctrl+Space, is available here!) F11 - Debug last launched (application) CTRL+F11 - Run last launched (application) |
||||
|
|
|
Eclipse let you set breakpoints based on where an Exception occurs.
The official help topic "Add Java Exception Breakpoint " has more on this.
|
||||
|
|
|
Ctrl+Alt+H on a method to get the call hierarchy for it. Fast way to see where it is called from. |
||||
|
|
|
Ctrl+Alt+UP or Ctrl+Alt+DOWN to copy lines |
|||||
|
|
Not so Hidden but IMO the best Trick. Assuming Default Settings (and you have'nt added new snippets) Highlight (or select) a Text (String or Variable)...Press Ctrl+Space. Hit End+Enter. the "sysout" snippet is triggered which wraps the selection around as its parameter. eg.
I love it so much that i've implemented a similar snippet for Android's Toast and Log.i() HUGE Time saver during Manual Debugging.... |
||||
|
|
|
Ctrl+Shift+L will show you all the currently available keyboard shortcuts |
|||||
|
icon in the debugging window.