I would like to have possibility to indent parameters in the SQL Developer's way:
instead of
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.
Code:
PROCEDURE Insertdept
(p_Deptno IN OUT Dept.Deptno%TYPE
,p_Dname IN Dept.Dname%TYPE
,p_Loc IN Dept.Loc%TYPE
) IS
Code:
PROCEDURE Insertdept
(
p_Deptno IN OUT Dept.Deptno%TYPE
,p_Dname IN Dept.Dname%TYPE
,p_Loc IN Dept.Loc%TYPE
) IS