Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you switch between header (.h) and implementation files (.cpp) in Eclipse when using the C++/CDT environment with a keyboard shortcut?

In XCode you can quickly switch between headers and implementation with applekey option and up/down arrow keys. I was hoping that eclipse had something similar, but I haven't found it yet.

share|improve this question

4 Answers

up vote 14 down vote accepted

Ctrl + Tab.

See in Preferences -> Keys.

share|improve this answer
Is there a way to switch between the console and the code editor with a keyboard shortcut? I can't find it here... – dmonopoly Dec 4 '11 at 20:25

Ctrl + Tab is the default shortcut and Here is a list of some of the more useful shortcut keys in Eclipse. http://bristle.com/Tips/Eclipse.htm

share|improve this answer

Ctrl + Tab is the default shortcut. You can change it in Window->Preferences->General->Keys - Toggle Source/Header

share|improve this answer

You can also Ctrl + click on an identifier ( method name of member,... ). That way you seldomly need Ctrl + Tab.

share|improve this answer
But while coding, we dont use mouse. So sorry for click. – SunnyShah Sep 29 '10 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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