beautifier: Parameter Declaration

Niek

Member²
Using the following options:

Format: One parameter per line
'Align datatypes' enabled
'Comma after datatype' disabled
'List at left margin' enabled

Will result in:

Code:
PROCEDURE insertdept
(
  p_deptno IN OUT dept.deptno%TYPE
 ,p_dname  IN dept.dname%TYPE
 ,p_loc    IN dept.loc%TYPE
) IS
I was expecting when the option align datatypes was actually aligning the data type like the example below.

I also was expecting that the first argument would be directly after the (. When the option 'List at left margin' is disabled the first argument will be directly after the (.

I was hoping that the , was aligned with the ().

Code:
PROCEDURE insertdept
( p_deptno IN OUT dept.deptno%TYPE
, p_dname  IN     dept.dname%TYPE
, p_loc    IN     dept.loc%TYPE
) IS
 
Back
Top