Lookig for a solution as to shade or hide inactive source code. Take following example, where 'DEBUG' would need to be a variable global to the project:
Say DEBUG=0, then source code string 'SomeDebugCode' would be shaded or even hidden.
Can such be achieved in UltraEdit ?
Code: Select all
.if (DEBUG)
SomeDebugCode;
.else
DoSomethingClever;
.endif
Can such be achieved in UltraEdit ?