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
- indent_func_def_param: Same as indent_func_def_param but for function definitions.
- indent_func_proto_param: Same as indent_func_def_param, but for function prototypes.
- indent_func_class_param: Same as indent_func_def_param, but for class declarations.
- indent_func_ctor_var_param: Same as indent_func_def_param, but for class variable constructors.
- indent_template_param: Same as indent_func_def_param, but for template parameter lists.