Beautifier - Procedure/Function parameter(s)

Niek

Member²
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:

Code:
PROCEDURE test
( p_id NUMBER
)
IS
BEGIN
  NULL;
END;
But the Beautifier is given me:

Code:
PROCEDURE test(p_id NUMBER) IS
BEGIN
  NULL;
END;
Also not sure why the ( is on his own and not part of the next line:

Code:
PROCEDURE test
(
  p_id    NUMBER
 ,p_price NUMBER
) IS
BEGIN
  NULL;
END;
Would like:

Code:
PROCEDURE test
( p_id    NUMBER
, p_price NUMBER
)
IS
BEGIN
  NULL;
END;
 
Back
Top