<ctrl>-<double-left-click>; find variable and procedure;

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
HanPBF
Enthusiast
Enthusiast
Posts: 570
Joined: Fri Feb 19, 2010 3:42 am

<ctrl>-<double-left-click>; find variable and procedure;

Post by HanPBF »

Hello!

When I double-left click on a symbol while pressing the <ctrl>-key, the cursor jumps in the editor to
the file and the position, where a procedure with that name is defined.

I think, that is done by searching for "procedure <symbol>".

It should be possible to search for
- structure <symbol>
- protected <symbol>
- define <symbol>
- global <symbol>
- #symbol

Prolem maybe:

Code: Select all

protected x, y, w, h
But every variable has define, protected, global, # before it as everybody uses "EnableExplicit";-)

Btw, a compiler switch for EnableEplicit = always on would be great...

Thanks!