example :
Code: Select all
Truc.Point
Macro Toto(P)
Do someThing
EndMacro
Procedure Titi(*P.Point)
Do something
EndProcedure
Toto(Truc) ; It would be nice to have a color for macro here
Titi(@Truc) ; because parameter is not the same
Code: Select all
Truc.Point
Macro Toto(P)
Do someThing
EndMacro
Procedure Titi(*P.Point)
Do something
EndProcedure
Toto(Truc) ; It would be nice to have a color for macro here
Titi(@Truc) ; because parameter is not the same
I thinks it would be less, because you may get puzzled. I would want a autocomplete which checks all includefiles, too(but optional). A "Open Project..." would also be good, it opens one .pb file and all files which are included in this file.Psychophanta wrote:Well, i thing that would be more than nothingfreak wrote:It would be possible, but it could only color macros of the sources that are currently opened.