Editor question/suggestion

ScottMattes

Member³
Does the current version of PLSD do code folding such that this example:

Code:
if some condition
   then
     do lots of lines of code here
   else
     do just as many lines of code here
   elsif
     lots and lots of lines of code
   end if;

Displays the if/then/else/elsif/end lines something like this:

Code:
if some condition
+  then

+  else

+  elsif

+  end if;
 
Not really for version 10.0.5.1710.
the +IF folds all the statement including any else/elsif and not only the THEN part.
It would be very nice to be able to fold the THEN part and still leave the else unfolded.

gad
 
Once folded, it would be helpful if the folded line (the one with the +) could have a distinctive color (like Highlight edit Line).
 
Back
Top