vote up 5 vote down star
2

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.

This has been closed few months ago for a reason:

flag

50% accept rate
this is already covered in two other questions: stackoverflow.com/questions/98220 stackoverflow.com/questions/54886 – bhinks Sep 25 '08 at 21:00
Maybe you should reword the question and make it specific to Eclipse CDT for C++ development. Ask if there are any shortcuts that don't work for C++ or something like that. – Jay R. Sep 25 '08 at 21:07

closed as exact duplicate by Daok Dec 16 '08 at 1:17

18 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

I use CTRL + SHIFT + F in just about every file to clean up the whitespace.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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 ;-)

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

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?"
It allows you to access UI-elements - like Views, Perspectives, Commands, ... - by just typing their name. And it supports Camel Case too.

  • Open the Navigator View? Ctrl+3, Navi, return
  • Debug Last Launched? Ctrl+3, DLL, return

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.

link|flag
vote up 1 vote down

Ctrl + l: Lets you jump to a specific line.

We have some legacy PHP code with 5000+ line files, it's really useful.

link|flag
vote up 0 vote down
  • Ctrl + Shift + T: Open Type
  • Ctrl + O: Go to member within current file
link|flag
vote up 2 vote down

My favorite is Ctrl-1, so I voted for Jay's answer.
A close second favorite is Ctrl-Space for Content Assist

link|flag
vote up 0 vote down

I've got a couple I can't miss:

  • Ctrl+Shift+T : open type
  • Ctrl+Shift+R : open any resource (includes files that aren't java classes)
  • Ctrl+Alt+H : show all callers of the selected method
  • Ctrl+Shift+G : show all references to the selected item in the workspace

And indeed, Ctrl+Shift+L to browse the list of all shortcuts, even ones you'll never use ;)

link|flag
vote up 2 vote down

Surely the winner would have to be F3: Open declaration?

link|flag
vote up 6 vote down

Ctrl + Shift + L to show all shortcuts.

link|flag
vote up 5 vote down

Ctrl+I for indentation. In badly formatted code: Ctrl+A & Ctrl+I ;)

link|flag
vote up 6 vote down

Crtl+1 Quick fix suggestions.

link|flag
vote up 3 vote down

Go to Matching Bracket - Ctrl+Shift+P

link|flag
vote up 3 vote down

Control+Shift+R Open a project resource.

link|flag
vote up 1 vote down

Shift-control-G for "search for references. " Control-O to display class outline Control-T for "open type"

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.