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