Customize PL/SQL Beautifier

Is it possible to customize the PL/SQL Beautifier beyond the existing options?
Is it possible to write a plugin to beautify?

We have e.g. the following requirement:

Call a funtion should look like this:

begin

if not my_function (
p_param1 => v_param1,
p_param2 => v_param2)
then
...
end if;
end;

Regards,
Andreas
 
No, this is currently not possible. You are restricted to the Rules provided through Edit > PL/SQL Beautfier Options.
 
Back
Top