ApexSQL Refactor: Execute Stored Proc - Parameter List with Leading Commas

ApexSQL-

When executing a stored proc, I would like to be able to format the statement with one parameter per line with a leading comma. For example:

EXEC storedproc
    param1 = ...
    , param2 = ...
    , param3 = ...
    ...

I went to ApexSQL --> ApexSQL Refactor --> Options --> Lists --> Parameters and enabled:

  • Format
  • Place list on a new line
  • Place list on a new line, Indent 5 spaces
  • Place each item on a new line, Place comma before each item

However, this appears to only apply to stored proc CREATE or ALTER statements, not when the stored proc is EXECUTEd. Any thoughts or recommendations? Thanks!