indent_func_call_param

Whether to indent continued function call parameters one indent level, rather than aligning parameters under the open parenthesis.

Possible values are true and false, default false.

Examples

true

Before:

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

    booFunct(x,
            y);

    return 0;
}

code after:

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

    booFunct(x,
        y);

    return 0;
}

false

Before:

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

    booFunct(x,
            y);

    return 0;
}

code after:

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

    booFunct(x,
             y);

    return 0;
}

See also