Version 6.1 new stuff

ScottMattes

Member³
Is it at a point where you can talk about what is in the new version?

Like, can I hit a key and go from the IF to the THEN to the ELSIF to the ELSE to the END IF?
 
I want to be complete, and don't want to overpromise, so you'll have to be a little patient.

In 6.0 you can already highlight these structures, so you can easily find the matching if/then/elsif/else/end if keywords. There is no key to jump between these highlighted keywords, but we could add it if you want. Just let me know.
 
yes, please add it. the code I have to work with is full of multi-multiscreens long IFs and matching up, even with the hilighting, is not fun.
 
I would also like the Beautifier to take the following

Code:
l_str := 'now ' || 'is ' || 'the ' || 'time ';
and give me this

Code:
l_str := 'now ' ||
         'is ' ||
         'the ' ||
         'time ';
 
I would like the Beautifier to take the following

code:

l_str := 'now ' || 'is ' || 'the ' || 'time ';

and give me this

code:

l_str := 'now '
|| 'is '
|| 'the '
|| 'time ';

Martien van den Akker
 
Back
Top