indent_comma_paren

Whether to indent a comma when inside a parenthesis. If true, aligns under the open parenthesis.

Possible values are true and false, default false.

Examples

Base example:

int main()
{
    int x = 10;
    int y = 20;

    many_param_func(x
        ,y
        ,33
        ,44
    );

    return 0;
}

It's hard to spot difference, but there is one space in below results.

true

After:

int main()
{
    int x = 10;
    int y = 20;

    many_param_func(x
                   ,y
                   ,33
                   ,44
                    );

    return 0;
}

false

After:

int main()
{
    int x = 10;
    int y = 20;

    many_param_func(x
                    ,y
                    ,33
                    ,44
                    );

    return 0;
}

See also