Show comment of procedure implementation/declaration in call

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

Show comment of procedure implementation/declaration in call

Post by HanPBF »

Hello!

When I move the cursor in the editor "into" a call-a-procedure name I get help about it in the status bar next to "Line: ... Column: ...".

So far so comfortable.

As a little further evolving of IDE I would like any one line comment after procedure/declare also shown.

I don't know what's scanned; so comment of declaration or implementation may be shown.

Code: Select all

declare myProcedure(P1.i, P2.s="") ; as .s

Code: Select all

procedure myProcedure(P1.i, P2.s="") ; as .s
So, that the status bar shows as help
procedure myProcedure(P1.i, P2.s="") ; as .s
or
declare myProcedure(P1.i, P2.s="") ; as .s

So, the little "; as .s" is also shown.

Yes, I can jump forward into procedure, but can't jump back (only in the same file with Ctrl-l)...

Thanks!
User avatar
RSBasic
Moderator
Moderator
Posts: 1228
Joined: Thu Dec 31, 2009 11:05 pm
Location: Gernsbach (Germany)
Contact:

Re: Show comment of procedure implementation/declaration in

Post by RSBasic »

Image
Image
HanPBF
Enthusiast
Enthusiast
Posts: 570
Joined: Fri Feb 19, 2010 3:42 am

Re: Show comment of procedure implementation/declaration in

Post by HanPBF »

Hello RSBasic!

Yes... I know those requests from the "big" IDEs...

But, I want to put some more little wishes into the forum.
Hopefully the IDE evolves then with some little steps.

I could imagine that those big wishes are not easy to implement.

Regards!
Post Reply