ScottMattes
Member³
Does the current version of PLSD do code folding such that this example:
Displays the if/then/else/elsif/end lines something like this:
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;