Hidden features of Eclipse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:22:12Z http://stackoverflow.com/feeds/question/54886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54886/hidden-features-of-eclipse 47 Hidden features of Eclipse DIA Tom 2008-09-10T18:05:39Z 2009-11-29T16:07:51Z <p>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. <BR><BR>Tom</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54894#54894 27 Answer by Jay R. for Hidden features of Eclipse Jay R. 2008-09-10T18:06:59Z 2009-01-30T12:32:21Z <p>Crtl+1 is my favorite. The quick fixes for the red-squiggles.</p> <p>It is also located in the Edit Menu -> Quick Fix.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54905#54905 1 Answer by Mike Stone for Hidden features of Eclipse Mike Stone 2008-09-10T18:10:52Z 2008-09-10T18:10:52Z <p>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).</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54913#54913 3 Answer by Ryan Guest for Hidden features of Eclipse Ryan Guest 2008-09-10T18:14:18Z 2008-10-03T03:40:50Z <p>ALt + Shift + R to refactor and rename.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54920#54920 27 Answer by Mike Stone for Hidden features of Eclipse Mike Stone 2008-09-10T18:17:07Z 2008-09-10T18:17:07Z <p>Ctrl+Shift+o to organize imports, which will format them nicely, remove unneeded imports, and add missing imports.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54930#54930 39 Answer by pkaeding for Hidden features of Eclipse pkaeding 2008-09-10T18:21:07Z 2008-09-10T18:21:07Z <p>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.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54985#54985 11 Answer by Boris Terzic for Hidden features of Eclipse Boris Terzic 2008-09-10T18:43:28Z 2008-09-10T18:43:28Z <ul> <li>CTRL-SHIFT-g : finds usages of the method or field under the cursor, absolutely necessary for understanding code</li> <li>CTRL-F6 : navigate between the list of open editor windows, if you just type it once and let go you toggle back to the previous editor window, doing this successively is a nice way to jump back and forth</li> <li>CTRL-t : on a class or method will show you the type hierarchy, very useful for finding implementations of an interface method for example</li> </ul> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54992#54992 0 Answer by nutario for Hidden features of Eclipse nutario 2008-09-10T18:45:38Z 2008-09-10T18:45:38Z <p>CTRL + b: to build the project under c++</p> <p>CTRL + SHIFT + f: to format your code (c++)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55005#55005 7 Answer by jodonnell for Hidden features of Eclipse jodonnell 2008-09-10T18:50:24Z 2008-09-10T18:50:24Z <p>Alt-Shift-Up Arrow does escalating selection. Alt-Shift-Down does the opposite.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55067#55067 1 Answer by svrist for Hidden features of Eclipse svrist 2008-09-10T19:13:21Z 2008-09-10T19:13:21Z <p>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.</p> <p>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) </p> <ul> <li>Code coveragde (ECLEMMA)</li> <li>Static analysis on source(PMD)</li> <li>Static analysis on byte code(FindBugs)</li> <li>CheckStyle</li> <li>SpringIDE.</li> </ul> <p>Then you start to rock with the mandatory source control plugins and the maven 2 plugin. </p> <p>Rock on!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55334#55334 9 Answer by sylvarking for Hidden features of Eclipse sylvarking 2008-09-10T21:09:28Z 2008-09-10T21:09:28Z <p>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).</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55761#55761 6 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-11T03:31:35Z 2008-09-11T03:31:35Z <p>Ctrl-Alt-UP or Ctrl-Alt-DOWN to copy lines</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55763#55763 8 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-11T03:33:33Z 2008-09-11T03:33:33Z <p>Alt-UP or Alt-DOWN to move lines</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55780#55780 0 Answer by Polygraf for Hidden features of Eclipse Polygraf 2008-09-11T03:45:24Z 2008-09-11T08:23:36Z <p>Ctrl+Shift+Enter to move the current line down by one and start typing above it.<br /> Ctrl+Shift+X to capitalize the current selection, Ctrl-Shift-Y to change it lowercase.<br /> Ctrl+. Autocompletes the current word. This works for variables as well as strings (which is a huge timesaver for array keys, for example)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/56394#56394 42 Answer by Ben for Hidden features of Eclipse Ben 2008-09-11T12:19:44Z 2008-09-11T12:19:44Z <p>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).</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/56461#56461 1 Answer by dubcee for Hidden features of Eclipse dubcee 2008-09-11T12:50:02Z 2008-09-11T12:50:02Z <p>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").</p> <p>Voila, there it is :)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/56861#56861 0 Answer by warsze for Hidden features of Eclipse warsze 2008-09-11T15:18:56Z 2008-09-11T15:18:56Z <p>Of course all these shortcuts are available in the menus but who has time for that when you're in the "zone".</p> <p>I like the code hot swapping.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58313#58313 10 Answer by David Schlosnagle for Hidden features of Eclipse David Schlosnagle 2008-09-12T04:45:51Z 2008-09-12T04:45:51Z <p>Also see previous question <a href="http://beta.stackoverflow.com/questions/20529/useful-eclipse-features" rel="nofollow">Useful Eclipse features?</a></p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58334#58334 15 Answer by RodeoClown for Hidden features of Eclipse RodeoClown 2008-09-12T05:05:59Z 2008-09-12T05:05:59Z <p>Ctrl-J starts an incremental find.</p> <p>Hit Ctrl-J, then start typing. Use up/down to find previous/next instances of what you typed.</p> <p>Ctrl-Shift-J searches backwards.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58336#58336 3 Answer by RodeoClown for Hidden features of Eclipse RodeoClown 2008-09-12T05:06:36Z 2008-09-12T05:06:36Z <p>Ctrl-Shift-L will show you all the currently available keyboard shortcuts</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58341#58341 5 Answer by RodeoClown for Hidden features of Eclipse RodeoClown 2008-09-12T05:08:22Z 2008-09-12T05:08:22Z <p>A non-keyboard shortcut trick is to use commit sets in your Team->Synchronise view to organise your changes before committing.</p> <p>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.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58360#58360 6 Answer by timbonicus for Hidden features of Eclipse timbonicus 2008-09-12T05:28:59Z 2008-09-16T20:56:53Z <p>F3 has been my favorite, opens the definition for the selected item. </p> <p>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).</p> <p>Alt-Shift-W > Package Explorer makes life easier when browsing large projects.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58665#58665 9 Answer by awi for Hidden features of Eclipse awi 2008-09-12T10:51:26Z 2008-09-12T10:51:26Z <p>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.</p> <p>Alt + /</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/58859#58859 5 Answer by Claes Mogren for Hidden features of Eclipse Claes Mogren 2008-09-12T12:50:17Z 2008-09-12T12:50:17Z <p>Ctrl+Alt+h on a method to get the call hierarchy for it. Fast way to see where it is called from.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/59413#59413 9 Answer by Antti Sykäri for Hidden features of Eclipse Antti Sykäri 2008-09-12T16:13:36Z 2008-09-12T16:13:36Z <p><strong>Alt-Shift-R</strong> stands for <em>rename</em>, not refactor. Refactoring is a <a href="http://en.wikipedia.org/wiki/Refactoring" rel="nofollow">more general term</a> (as defined by <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">the book</a>).</p> <p>Nevertheless, it is one of my favorite refactorings. Others include:</p> <ul> <li><p><strong>Alt-Shift-M</strong>: <a href="http://www.refactoring.com/catalog/extractMethod.html" rel="nofollow">Extract Method</a> (when a code block or an expression is selected)</p></li> <li><p><strong>Alt-Shift-L</strong>: <a href="http://www.refactoring.com/catalog/introduceExplainingVariable.html" rel="nofollow">Extract Local Variable</a> (when an expression is selected)</p></li> </ul> <p>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 <code>JdbcTemplate createJdbcTemplate()</code> in your class, write some code such as this:</p> <pre><code>void someQuery() { createJdbcTemplate() } </code></pre> <p>Select the expression <code>createJdbcTemplate()</code>, click Alt-Shift-L, type the name of variable and press enter.</p> <pre><code>void someQuery() { JdbcTemplate myTemplate = createJdbcTemplate(); } </code></pre> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/59799#59799 10 Answer by yalestar for Hidden features of Eclipse yalestar 2008-09-12T19:24:59Z 2008-09-12T19:24:59Z <p>CTRL+3 brings up a type-ahead list of any menu command. </p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/69718#69718 5 Answer by MetroidFan2002 for Hidden features of Eclipse MetroidFan2002 2008-09-16T06:07:36Z 2008-09-16T06:07:36Z <p>CTRL+SPACE, for anything, anywhere.</p> <p>Generate getters and setters.</p> <p>Create Constructors using Fields</p> <p>Extract Method...</p> <p>Refactor->Rename</p> <p>CTRL+O for the quick outline. CTRL+O+CTRL+O for the inherited outline.</p> <p>F4 to display a type hierarchy</p> <p>Open Call Hierarchy to display where a method is called from.</p> <p>CTRL+SHIFT+T to open a Java Type</p> <p>CTRL+SHIFT+R to open any resource.</p> <p>ALT + left or right to go forward or backwards through edit places in your documents (easy navigation)</p> <p>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.</p> <p>Refactor->Extract Interface</p> <p>Refactor->Pull up</p> <p>Refactor->Push down</p> <p>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).</p> <p>CTRL+SHIFT+F for formatting (although Eclipse's built in formatter can be a little braindead for long lines of code)</p> <p>EDIT: Oh yeah, some debugging:</p> <p>F5: Step into (show me the details!)</p> <p>F6: Step over (I believe you, on to the next part...)</p> <p>F7: Step out (I thought I cared about this method, but it turns out I don't, get me out of here!)</p> <p>F8: Resume (go until the next breakpoint is reached)</p> <p>CTRL+SHIFT+I: inspect an expression. CTRL+SHIFT+I+CTRL+SHIFT+I: create a watch expression on the inspected expression.</p> <p>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!)</p> <p>F11 - Debug last launched (application)</p> <p>CTRL+F11 - Run last launched (application)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/70719#70719 8 Answer by izb for Hidden features of Eclipse izb 2008-09-16T09:29:29Z 2008-09-16T09:29:29Z <p>Type 'syso' then press ctrl-space to expand it to System.out.println().</p> <p>Tres handy.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/96109#96109 8 Answer by Jim Garrison for Hidden features of Eclipse Jim Garrison 2008-09-18T19:36:30Z 2008-09-18T19:36:30Z <p>Nobody's mentioned the best one yet. Click on a class or method name and press Ctrl-T.</p> <p>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.</p> <p>This is huge when you are at an abstract method declaration and quickly want to see where it is implemented.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/99003#99003 0 Answer by waquin for Hidden features of Eclipse waquin 2008-09-19T02:34:59Z 2008-09-19T02:34:59Z <p>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.</p> <p>Give it a try!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/104569#104569 9 Answer by Olaf for Hidden features of Eclipse Olaf 2008-09-19T19:01:08Z 2008-09-19T19:01:08Z <p>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: </p> <ul> <li>Typing a semicolon anywhere on the line will place it at this lines end (as in word/openoffice: Backspace if you'd like to have it in the original place)</li> <li>Typing an opening curly brace when you're just inside another pair of braces will place it at the end of this line - as in this example</li> </ul> <p>("|" is the cursor):</p> <pre><code>if(i==0|) </code></pre> <p>typing "{" now will result in</p> <pre><code>if(i==0) {| </code></pre> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/116765#116765 2 Answer by Matt for Hidden features of Eclipse Matt 2008-09-22T18:56:48Z 2008-09-22T18:56:48Z <p>ctrl + O is an popup outline view that lets you start typing to filter on a name</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/133850#133850 10 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-25T15:02:24Z 2008-09-25T15:02:24Z <p>Code completion supports CamelCase, e.g., typing <code>CWAR</code> will show a result for <code>ClassWithAReallyLongName</code>. Start using this feature and you'll never type another long classname again.</p> <p>(parts copied from another answer because i think answers w/ just one hint/tip are best for polling)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/175254#175254 0 Answer by mado for Hidden features of Eclipse mado 2008-10-06T17:16:12Z 2008-10-06T17:16:12Z <p>Quick Assist: Ctrl + 2, followed by F (assign to field), L(assign to local variable) and R (rename in file)</p> <p>Last edit location: Ctrl+Q</p> <p>Check out this article: <a href="http://dmy999.com/article/29/using-eclipse-efficiently" rel="nofollow">http://dmy999.com/article/29/using-eclipse-efficiently</a></p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/199513#199513 0 Answer by javamonkey79 for Hidden features of Eclipse javamonkey79 2008-10-14T00:06:54Z 2008-10-14T00:06:54Z <p>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 &amp; delete the mappings of your key combo's.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/199535#199535 1 Answer by Abarax for Hidden features of Eclipse Abarax 2008-10-14T00:17:29Z 2008-10-14T00:17:29Z <p>ALT+Shift+X + T </p> <p>This will run your current file as a unit test.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/202045#202045 8 Answer by marko for Hidden features of Eclipse marko 2008-10-14T17:16:57Z 2008-10-14T17:16:57Z <p>ctrl+d - to delete current line</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/202070#202070 0 Answer by iny for Hidden features of Eclipse iny 2008-10-14T17:25:37Z 2008-10-14T17:25:37Z <p>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.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/225883#225883 2 Answer by chillysapien for Hidden features of Eclipse chillysapien 2008-10-22T14:07:50Z 2008-10-22T14:07:50Z <p>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</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/225891#225891 2 Answer by chillysapien for Hidden features of Eclipse chillysapien 2008-10-22T14:09:22Z 2008-10-22T14:09:22Z <p>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!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/403716#403716 2 Answer by Slayer SA for Hidden features of Eclipse Slayer SA 2008-12-31T18:27:55Z 2008-12-31T18:27:55Z <p>Ctrl-Alt-h To open the Call hierarchy of the selected method.</p> <p>Really useful on large codebases or unknown codebases</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/548271#548271 1 Answer by Ascalonian for Hidden features of Eclipse Ascalonian 2009-02-14T00:50:31Z 2009-02-14T00:50:31Z <p>Depending on what time saver means to you...</p> <p>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...</p> <p>FIXME means it is urgent, which puts a red ! in the task window<br> TODO is normal urgency</p> <pre><code>//FIXME: This accidentally deletes user accounts user.account().delete(); //TODO: Add some validation before assigning everyone as admin user.setPrivilege("Admin"); </code></pre> <p>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:</p> <pre><code>public class SomeBean { private static int FIRST_VALUE = 0; private static int SECOND_VALUE = 1; ... private static int THOUSANDTH_VALUE = 1000; } </code></pre> <p>You can create all the variables, then right-click in the editor, go to Source and then pick Generate Setters &amp; Getters. This will automatically create them for you. </p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/550361#550361 0 Answer by serg555 for Hidden features of Eclipse serg555 2009-02-15T05:14:30Z 2009-02-15T05:14:30Z <p>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.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/591345#591345 5 Answer by VonC for Hidden features of Eclipse VonC 2009-02-26T16:37:34Z 2009-02-26T16:37:34Z <p><strong><a href="http://blogs.bytecode.com.au/glen/2007/04/06/eclipse-tip--breakpoint-on-exception.html" rel="nofollow">Breakpoint on Exception</a></strong></p> <p>Eclipse let you set breakpoints based on where an Exception occurs.<br /> You access the option via the <strong>"j!"</strong> <img src="http://help.eclipse.org/stable/topic/org.eclipse.jdt.doc.user/images/org.eclipse.jdt.debug.ui/elcl16/exc%5Fcatch.png" alt="alt text" /> icon in the debugging window.</p> <p><img src="http://blogs.bytecode.com.au/glen/2007/04/06/images/2007/AddExceptionWindow.png" alt="alt text" /></p> <p>The official help topic "<strong><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/views/breakpoints/ref-addexception%5Fviewaction.htm" rel="nofollow">Add Java Exception Breakpoint </a></strong>" has more on this.</p> <ul> <li>The Uncaught Exception option is to suspend execution when an exception of the same type as the breakpoint is thrown in an uncaught location.</li> <li>The Caught Exception option is to suspend execution when an exception of the same type as the breakpoint is thrown in a caught location. </li> <li>do not forget the <strong><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/breakpoints/ref-suspendsubclass%5Foption.htm" rel="nofollow">Exception Breakpoint Suspend on Subclass of this Exception</a></strong>:<br /> to suspend execution when subclasses of the exception type are encountered.<br /> For example, <strong>if an exception breakpoint for <code>RuntimeException</code> is configured to suspend on subclasses, it will also be triggered by a <code>NullPointerException</code></strong>.</li> </ul> <p><img src="http://help.eclipse.org/stable/topic/org.eclipse.jdt.doc.user/reference/breakpoints/images/ref-breakpoint%5Fsuspendsubclass.PNG" alt="alt text" /></p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/593725#593725 0 Answer by zvikico for Hidden features of Eclipse zvikico 2009-02-27T06:27:08Z 2009-02-27T06:27:08Z <p>I'm really biased and this is blatant advertising... </p> <p>Still, I think my new Eclipse plugin, <a href="http://www.nwiresoftware.com/" rel="nofollow">nWire</a>, 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. </p> <p>Check out <a href="http://www.nwiresoftware.com/" rel="nofollow">the demo on my web site</a>. </p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/593745#593745 1 Answer by banjollity for Hidden features of Eclipse banjollity 2009-02-27T06:37:22Z 2009-02-27T06:37:22Z <p><strong>Ctrl+,</strong> and <strong>Ctrl+.</strong> 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 <strong>Ctrl+1</strong> for suggest fix you can quickly repair the code without having to move your hand to the mouse. </p> <p>In fact, you barely have to lift your finger off Ctrl...</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/595376#595376 5 Answer by grayger for Hidden features of Eclipse grayger 2009-02-27T16:07:18Z 2009-02-27T16:07:18Z <p>Absolutely, Ctrl+Q to go to last edit location. It is very useful just after being interrupted by phone, boss or others.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/595453#595453 0 Answer by david a. for Hidden features of Eclipse david a. 2009-02-27T16:22:56Z 2009-02-27T16:22:56Z <p>Ctrl-Shitf- Up or Down in Java editor jumps to to nearest declaration of a method or a field in that direction. </p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/602021#602021 3 Answer by jtgameover for Hidden features of Eclipse jtgameover 2009-03-02T11:41:38Z 2009-03-02T11:41:38Z <p>A hidden gem is the conditional breakpoint. <strong>Really</strong> useful for skipping over portions of loops, pausing if something is null or meets a certain value, etc... just right-click on the breakpoint, <code>Breakpoint Properties</code> --> <code>Enable Condition</code>. There's even code assist within the textbox!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/628785#628785 32 Answer by Andrey Tarantsov for Hidden features of Eclipse Andrey Tarantsov 2009-03-10T03:01:42Z 2009-03-10T03:01:42Z <h1>Ctrl-2 something</h1> <p>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.</p> <p>Previously, I was typing, say (| is cursor location):</p> <pre><code>Display display = new | </code></pre> <p>and then I pushed Ctrl-Space to complete the constructor call. Now I type:</p> <pre><code>new Display()| </code></pre> <p>and press Ctrl-2 L, which results in:</p> <pre><code>Display display = new Display()| </code></pre> <p>This really speeds things up. (Ctrl-2 F does the same, but assigns to a new field rather than a new variable.)</p> <p>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.</p> <p>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.</p> <h1>Templates</h1> <p>Another favourite of mine in my “npe” template, defined as:</p> <pre><code>if (${arg:localVar} == null) throw new ${exception:link(NullPointerException,IllegalArgumentException)}("${arg:localVar} is null"); </code></pre> <p>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.</p> <p>See more useful templates at <a href="http://www.tarantsov.com/eclipse/templates/" rel="nofollow">www.tarantsov.com/eclipse/templates/</a>. I won't list them all here because there are many, and because I often add new ones.</p> <h1>Completion</h1> <p>A few code completion tricks:</p> <ul> <li>camel case support mentioned in another answer: type cTM, get currentTimeMillis</li> <li>default constructor: in the class declaration with no default constructor push Ctrl-Space, the first choice will be to create one</li> <li>overloading: in the class declaration start typing name of a method you can overload, Ctrl-Space, pick one</li> <li>getter/setter creation: type “get”, Ctrl-Space, choose a getter to create; same with “is” and “set”</li> </ul> <h1>Assign To A New Field</h1> <p>This is how I add fields.</p> <ol> <li><p>If you have no constructors yet, add one. (Ctrl-Space anywhere in a class declaration, pick the first proposal.)</p></li> <li><p>Add an argument (| is cursor position):</p> <pre><code>public class MyClass { public MyClass(int something|) { } } </code></pre></li> <li><p>Press Ctrl-1, choose “assign to a new field”. You get:</p> <pre><code>public class MyClass { private final Object something; public MyClass(Object something) { this.something = something; } } </code></pre></li> <li><p>Add a null-pointer check if appropriate (see “npe” template above):</p> <pre><code>public class MyClass { private final Object something; public MyClass(Object something) { npe| this.something = something; } } </code></pre> <p>Hit Ctrl-Space, get:</p> <pre><code>public class MyClass { private final Object something; public MyClass(Object something) { if (something == null) throw new NullPointerException("something is null"); this.something = something; } } </code></pre></li> </ol> <p>A great time saver!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/653153#653153 2 Answer by Chathuranga Chandrasekara for Hidden features of Eclipse Chathuranga Chandrasekara 2009-03-17T06:07:51Z 2009-03-17T06:07:51Z <p>Ctrl + Shift + P to find the matching brace. Really useful while working with long codes. </p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/681470#681470 0 Answer by baskin for Hidden features of Eclipse baskin 2009-03-25T13:01:23Z 2009-03-25T13:01:23Z <p>One combination to rules them all.</p> <p>CTL+SHFT+L</p> <p>Get the list of all these "hidden" features.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/681562#681562 3 Answer by Ma99uS for Hidden features of Eclipse Ma99uS 2009-03-25T13:22:07Z 2009-03-25T13:22:07Z <p>Here is my collection of the most useful keyboard shortcuts for Eclipse 3:</p> <pre><code>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 –&gt; 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 </code></pre> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/866408#866408 0 Answer by widerworld for Hidden features of Eclipse widerworld 2009-05-14T23:38:34Z 2009-05-14T23:38:34Z <p>Enabling 'Ignore white space' in the Compare/Patch settings is a real time saver!</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/879292#879292 3 Answer by Edward Shtern for Hidden features of Eclipse Edward Shtern 2009-05-18T19:12:27Z 2009-05-18T19:12:27Z <p>How about:</p> <p>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).</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/879346#879346 0 Answer by RobbieV for Hidden features of Eclipse RobbieV 2009-05-18T19:25:57Z 2009-05-18T19:25:57Z <p>Hit CTRL+S very often. It's CTRL+1's best friend.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/879427#879427 0 Answer by bedwyr for Hidden features of Eclipse bedwyr 2009-05-18T19:43:23Z 2009-05-18T19:43:23Z <p>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.</p> <p>Windows->Preferences->General->Keys->Scheme.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/923471#923471 1 Answer by MasterPeter for Hidden features of Eclipse MasterPeter 2009-05-28T22:15:56Z 2009-05-28T22:15:56Z <p>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:</p> <p>Word completion:</p> <pre><code>Alt + / </code></pre> <p>is a really nice alternative to Ctrl+Space. It doesn't quite replace Ctrl+Space, but is <em>much faster</em>. And don't be afraid to press it multiple times, it will keep cycling over possible options.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/933080#933080 0 Answer by Thorbjørn Ravn Andersen for Hidden features of Eclipse Thorbjørn Ravn Andersen 2009-05-31T23:11:06Z 2009-05-31T23:11:06Z <p>Shift-F2 goes to the Javadoc for any method.</p> <p>Use it a LOT. For libraries you need to configure the location , but for standard classes they are predefined by Eclipse</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1004059#1004059 0 Answer by cyberguide for Hidden features of Eclipse cyberguide 2009-06-16T21:32:03Z 2009-06-16T21:32:03Z <p>CTRL-MouseClick (left) as an alternative for F3 to go to declaration.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1025491#1025491 0 Answer by Justin Johnson for Hidden features of Eclipse Justin Johnson 2009-06-22T04:48:36Z 2009-06-22T04:48:36Z <p>ctrl+d to delete the current line</p> <p>alt+up/down to move the current line or block of selected text up or down</p> <p>ctrl+alt+up/down to copy/duplication the current line or block of selected text up or down</p> <p>ctrl+alt+c SVN commit (with subversive)</p> <p>ctrl+alt+u SVN update (with subversive)</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1258076#1258076 0 Answer by RKitson for Hidden features of Eclipse RKitson 2009-08-11T01:34:47Z 2009-08-11T01:34:47Z <p>I recently mapped alt-enter to the same command as ctrl-1. It's just a bit easier to get to.</p> <p>I also use alt+shift+x &amp;t a bunch, but I'm not a fan of how the integrated test runner works.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1369376#1369376 2 Answer by Trevor Harrison for Hidden features of Eclipse Trevor Harrison 2009-09-02T18:26:41Z 2009-09-02T18:26:41Z <p>Clicking on the return type in a method's declaration highlights all exit points of the method.</p> <p>for instance:</p> <pre><code>1: public void foo() 2: { 3: somecode(); 4: if ( blah ) return; 5: 6: bar(); 7: } </code></pre> <p>clicking on <strong>void</strong> will highlight the <strong>return</strong> on line 4 and the close <strong>}</strong> on line 7.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1674457#1674457 0 Answer by Lastnico for Hidden features of Eclipse Lastnico 2009-11-04T15:17:08Z 2009-11-04T15:17:08Z <p>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)</p> <p>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)</p> <p>More info about this tip here:</p> <p><a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-galnav/index.html" rel="nofollow">http://www.ibm.com/developerworks/opensource/library/os-eclipse-galnav/index.html</a></p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/1815891#1815891 0 Answer by sarav for Hidden features of Eclipse sarav 2009-11-29T16:00:47Z 2009-11-29T16:07:51Z <p>alt+shift+z - to active the "surround with" sub menu. Handy when have to surround with a try catch block.</p>