Hi eclipse users, what is your favorite eclipse shortcut? I am using it with CDT for C++ development and have just switched from a commercial editor plugin to the default one so I would like to know what other users' favorite shortcuts are for the default eclipse setup.
|
2
|
|||||
|
closed as exact duplicate by Daok Dec 16 '08 at 1:17 |
|
|
Shift-control-G for "search for references. " Control-O to display class outline Control-T for "open type" |
||
|
|
|
|
Control+Shift+R Open a project resource. |
||
|
|
|
|
Go to Matching Bracket - Ctrl+Shift+P |
||
|
|
|
|
Crtl+1 Quick fix suggestions. |
||
|
|
|
|
Ctrl+I for indentation. In badly formatted code: Ctrl+A & Ctrl+I ;) |
||
|
|
|
|
Ctrl + Shift + L to show all shortcuts. |
||
|
|
|
|
Surely the winner would have to be F3: Open declaration? |
||
|
|
|
|
I've got a couple I can't miss:
And indeed, Ctrl+Shift+L to browse the list of all shortcuts, even ones you'll never use ;) |
||
|
|
|
|
My favorite is Ctrl-1, so I voted for Jay's answer. |
||
|
|
|
|
|
||
|
|
|
|
Ctrl + l: Lets you jump to a specific line. We have some legacy PHP code with 5000+ line files, it's really useful. |
||
|
|
|
|
I am not sure of the version of eclipse you are using... Because if it is eclipse3.3 or more, you could argue that there is only one 'mother-of-all' shortcut out there: CTRL-3 : quick access , only mentioned once in the "What is your favorite hot-key in Eclipse?"
The QuickAccess dialog remembers a list of previous choices, so that these can be found faster the next time. It also remembers, for specific search inputs, which entry was chosen and will select that the next time. Now, that shortcut is also specifically mentioned in the C++ eclipse page project. Yet, it can not brings you directly external tools, like Nuwen MinGW C/C++ compiler, because it is not a registered eclipse plugin. And so, 'Quick access' shortcut can not easily 'discover' it. |
||
|
|
|
|
You can press F4 to show the currently edited class in the class hierarchy. So you can find easily implementing/child classes and anchestor classes. I use it every day. |
||
|
|
|
|
CTRL + 1 to assign variables, split variable declarations and fix most problems in code. But my favorite shortcut is the CTRL + F to format and indent code in a unique standard and avoid discussions about how to indent/format code. |
||
|
|
|
|
CTRL+Shift+C: Comment in/out a block of code CTRL+Shift+F: Used to be but the newer versions can be configured to format code when saving a file (Preferences -> Java -> Editor -> Save Actions). My absolute favourite is definitely CTRL+S ;-) |
|||
|
|
|
|
ALT + SHIFT + X then press T - Run a test ALT + SHIFT + Z - surround with try/catch context menu CTRL + SHIFT + O - organize java imports CTRL + SHIFT + T - open type CTRL + SHIFT + G - references in project / workspace CTRL + T - type hierarchy CTRL + ALT + H - call hierarchy and of course CTRL + 1 for quick fix. |
||
|
|
|
|
I use CTRL + SHIFT + F in just about every file to clean up the whitespace. |
||
|
|
|
|
CTRL + SPACE (content assist) especially useful in Java where you type sysout then CTRL + SPACE then it will type the full System.out.println for you. |
||
|
|
