Beautifier - Parameters / Return values

Niek

Member²
Would like to have the first parameter after the first ( instead of an empty line. Also the keyword IS I would like on the other line. And line out the INs and OUTs.
Also having the RETURN part of a function on another line would be great.

Right now:

Code:
PROCEDURE blah
(
  p_id IN OUT NUMBER
 ,p_d  IN NUMBER
 ,p_d  OUT NUMBER
) IS

Code:
FUNCTION test RETURN NUMBER IS
But would like to have:

Code:
PROCEDURE blah
( p_id IN OUT NUMBER
, p_d  IN     NUMBER
, p_d     OUT NUMBER
)
IS

Code:
FUNCTION test
RETURN NUMBER
IS
 
Back
Top