Editorconfig Guide
.e
Wrap function call arguments
EditorConfig key: cpp-wrap-arguments-style
Wrap function call arguments
cpp-wrap-arguments-style
Default value:
unset
Possible values:
unset
wrap_if_long
chop_if_long
chop_always
Examples
unset
wrap_if_long
foo(a, b, c);
chop_if_long
foo(a, b, c);
chop_always
foo( a, b, c);