I was thinking it'd be nice if we could color them in the list? To do it, I was
thinking the editor could check if the "Procedure" line was followed by a
special comment, and if the comment existed, then color it in the browser.
Something like this perhaps?
Code: Select all
Procedure FlushEvents() ; [R,G,B]
While WindowEvent() : Wend
EndProcedure
So to have it show the above in green in the browser, the programmer would
just put a comment of [0,255,0] after the procedure line, as the comment.
It wouldn't affect anyone's existing code and wouldn't color any procedures
that didn't specifically have that style of comment. It would make it easier
to have groups of related procedures seen in the browser, too, because I
could color all my file op procedures in red, and so on.
Here's an example image of what I mean:

.