indent_func_param_double
Double the indent for indent_func_xxx_param options. Use both values of the options indent_columns and indent_param.
Possible values are true and false, default false.
Probably ignores indent_with_tabs.
Examples
true
Config:
indent_func_param_double = true
indent_func_proto_param = true
indent_param = 2
indent_with_tabs = 2
Before:
int booFunct(int fp,
int sp);
code after:
int booFunct(int fp,
int sp);
false
Config:
indent_func_param_double = false
indent_func_proto_param = true
indent_param = 2
indent_with_tabs = 2
Before:
int booFunct(int fp,
int sp);
code after:
int booFunct(int fp,
int sp);
See also
- indent_columns: The number of columns to indent per level.
- indent_with_tabs: How to use tabs when indenting code.
- 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_def_param, but for function prototypes.