This is the code i wrote in SQLDev:
PROCEDURE something_to_do(param1 IN employee%rowtype, param2 IN VARCHAR2)
IS
…
Now i format this code by context-menu inside the editor with Format (Strg-F7) and get the following result:
PROCEDURE something_to_do(
param1 IN employee%rowtype,
param2 IN VARCHAR2
)IS
…
I try to find the rule inside the SQLDev arbori file, but i can't find it. Can anybody help me? Did i have to write some line to the arbori file or did i have to disable some line?