currently search result is delievered as plain text. one can't see wether a line is commented or not if it is within an huge commented block.
example: search for $searchme
$line = 1;
// $searchme = $line;
$someother = $stupidstuff;
|
will result in:
Find: // $searchme = $line;
But
/*
$line = 1;
$searchme = $line;
$someother = $stupidstuff;
*/
|
will result in:
Find: $searchme = $line;
If you search hundreds of files it could be useful to see in the result already which LOC is commented out and which is not. This could be done by writing commented lines italic or in another color.[/code]