Code formatter incorrectly indents parameter at OPEN Cursor command

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;

Today I stumbled across this problem again :wink: I had even forgotten that I had created this post and was about to post a new one.