In 6.0 Version make own beautifier ! ?

Maybe this is pushing it, but do you happen to have a list of beautifier features/options that are being implemented for v6?

A couple things I have noticed so far that I would like to see:

-Java-style variable naming
ie:
iLoopCounter
sFirstName

etc...

-Option for when breaking "if" statements up, to place the "and" and "or"s on the same line as the statement.

ie:
Instead of:

Code:
IF ( iLoopCounter < iMaxCount AND
    bDone = false) THEN
we could have:

Code:
IF ( iLoopCounter < iMaxCount
    AND bDone = false) THEN
Just got the program installed today (I am with Scott's group and the customer just purchased a site-license from you) and so far I have to say I really like what I see :)
 
The main features are additional layout control options for conditions, parameter list placement, alignment options, and so on.
 
Just wanted to second the idea of having the 'AND's and 'OR's on the same line as the condition. It helps me to see it that way.
 
Have I ever mentioned that I would like to be able to have the 'then' on a separate line?

If condition
then
something
else
something else
end if;
 
I Like to do it like this:

If
..condition
then
..something
else
..something else
end if;

(added '.' for blanks)
 
Back
Top