indent_param

The continuation indent for func_*_param if they are true. If non-zero, this overrides the indent.

Integer value, default 0.

Probably ignores indent_with_tabs.

Examples

Config:

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