Continuous line indent

EditorConfig key: cpp-continuous-line-indent

Continuous line indent

cpp-continuous-line-indent

Indent applied to a line wrapped from the previous one.

Default value:

unset

Possible values:

  • unset
  • none
  • single
  • double

Examples

unset
none
int x = a +
b;
single
int x = a +
  b;
double
int x = a +
    b;