Beautifier - IN OUT

Niek

Member²
Would like to line out the INs and OUTs too.

Output of beautified version:

Code:
PROCEDURE test
(
 ,p_price     NUMBER
 ,p_id        IN NUMBER
 ,p_flag      OUT BOOLEAN
 ,p_last_name IN OUT VARCHAR2
) IS
BEGIN
  NULL;
END test;
But I prefer the code fragment below:

Code:
PROCEDURE test
( p_price            NUMBER
, p_id        IN     NUMBER
, p_flag         OUT BOOLEAN
, p_last_name IN OUT VARCHAR2
)
IS
BEGIN
  NULL;
END test;
And maybe something special line out for default values too...?
 
Back
Top