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
|
95
|
|
|||
|
|
|
|
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) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
alt+shift+z - to active the "surround with" sub menu. Handy when have to surround with a try catch block. |
|||
|
|
