Beautifier: indentation

adderek

Member²
I would like to have possibility to indent parameters in the SQL Developer's way:

Code:
PROCEDURE Insertdept
(p_Deptno IN OUT Dept.Deptno%TYPE
,p_Dname  IN Dept.Dname%TYPE
,p_Loc    IN Dept.Loc%TYPE
) IS
instead of

Code:
PROCEDURE Insertdept
(
   p_Deptno IN OUT Dept.Deptno%TYPE
  ,p_Dname  IN Dept.Dname%TYPE
  ,p_Loc    IN Dept.Loc%TYPE
) IS
Similar request was made some time ago - but it was only about positioning the brackets in the same column, so I believe that this is an new enchancement request.
 
Back
Top