indent_func_def_param
Same as indent_func_call_param, but for function definitions.
Possible values are true and false, default false.
Examples
true
Before:
int booFunct(int fp,
int sp)
code after:
int booFunct(int fp,
int sp)
{
false
Before:
int booFunct(int fp,
int sp)
{
code after:
int booFunct(int fp,
int sp)
{
See also
- indent_func_call_param: Whether to indent continued function call parameters one indent level, rather than aligning parameters under the open parenthesis.
- indent_func_proto_param: Same as
indent_func_call_param
, but for function prototypes. - indent_func_class_param: Same as
indent_func_call_param
, but for class declarations. - indent_func_ctor_var_param: Same as
indent_func_call_param
, but for class variable constructors. - indent_template_param: Same as
indent_func_call_param
, but for template parameter lists.