Align first argument by opening parenthesis

EditorConfig key: cpp-align-first-arg-by-paren

Align first argument by opening parenthesis

cpp-align-first-arg-by-paren

Place the first call argument at the column immediately after the opening parenthesis.

Default value:

false

Possible values:

  • true
  • false

Examples

true
foo(a,
    b);
false
foo(
  a,
  b);