IceCold
IceCold

Reputation: 21194

How to jump from .hpp to actual source code (.pas) file?

In C++ Builder, if you Control+Click on an identifier (a VCL class name, for instance), it will take you to the .hpp file where that identifier is declared. But, to see the ACTUAL Pascal code for that class, you need to open Explorer and go hunt down the corresponding PAS file. That is such a waste of time.

Is there a way to convince the IDE to go to the actual source code (.pas file) instead of the .hpp? Or maybe an IDE plug-in?

Upvotes: 1

Views: 220

Answers (1)

ArmandFrvr
ArmandFrvr

Reputation: 127

If you type the name of the .pas file on a blank line, then put the cursor into it, Control+Enter will open the file in the IDE.

Upvotes: 1

Related Questions