Wish Editor: Ctrl-Click on Custom Type should jump to line where Custom Type defined

Widget

Well-Known Member
Licensed User
Longtime User
When in the editor I can use Ctrl-Click on a variable and it will take me to the line where the variable is defined. But I'd like to Ctrl-Click on a custom Type like "TAddress" and jump to where the Type is defined.

Example:

ModuleX:
Type TAddress(Street1 as String, City as String ....)


Main:
Private locAddress as TAddress

I'd like to Ctrl-Click on TAddress and the editor should display where TAddress was defined, even if it is in another module. I can see the TAddress definition when I mouse over it, but often I need to change the custom type definition.

TIA
 
Top