Hi,
Lately I've been using a lot more $IFDEF than I use to. And modifying code in the wrong block is what worries me, since there's no difference between active and unactive block.
For example:
{$IFDEF USE_FEATURE}
{ .. procedures and functions using a feature }
{$else}
{ .. procedures and functions not using this feature }
{$endif}
USE_FEATURE might be defined as a project conditional define or in an included unit.( that really depends on the project)
Anyway, I would like to know if there is an extension that would use syntax highlight in the {$IFDEF} block when USE_FEATURE is defined, fade the {$ELSE} block, and of course if USE_FEATURE is not defined, the $ELSE block would be colorful and $IFDEF block grayed out.
TIA,