Conditional Beautifying? - for function expression

orca777

Member³
Hello,

i have the beautifier configured to one item a line for DML operations, procedure parameters. But called function parameters are also formatted this way.

Code:
g_Mabila_r.Geschums := Nvl(g_Mabila_r.Bpos300,
                                       0) + Nvl(g_Mabila_r.Bpos301,
                                                0) -
                                   Nvl(g_Mabila_r.Bpos302,
                                       0) + Nvl(g_Mabila_r.Bpos303,
                                                0);
better would be :

Code:
g_Mabila_r.Geschums :=
   Nvl( g_Mabila_r.Bpos300, 0) +
   Nvl( g_Mabila_r.Bpos301, 0) -
   Nvl( g_Mabila_r.Bpos302, 0) +
   Nvl( g_Mabila_r.Bpos303, 0);
;)

is there a way to configure it, or a way to disable beautifying f
 
Back
Top