Would like to have the only parameter of a procedure or function on a separate line too. Maybe adding it as option. This way looking for the parameters is consistent.
Like:
But the Beautifier is given me:
Also not sure why the ( is on his own and not part of the next line:
Would like:
Like:
Code:
PROCEDURE test
( p_id NUMBER
)
IS
BEGIN
NULL;
END;
Code:
PROCEDURE test(p_id NUMBER) IS
BEGIN
NULL;
END;
Code:
PROCEDURE test
(
p_id NUMBER
,p_price NUMBER
) IS
BEGIN
NULL;
END;
Code:
PROCEDURE test
( p_id NUMBER
, p_price NUMBER
)
IS
BEGIN
NULL;
END;