This is how the code formatter indents parameters at the open cursor command, if the parameters are stacked.
OPEN l_cursor FOR l_sql
USING p_variable1,
p_variable2,
p_variable3,
p_variable4,
p_variable5,
p_variable6;
I would expect it to be:
OPEN l_cursor FOR l_sql
USING p_variable1,
p_variable2,
p_variable3,
p_variable4,
p_variable5,
p_variable6;