--indent-preproc-define / -w
#define DEFAULT_CONFIG_VAL \
{ \
.a = 123, \
.b = 345, \
.c =123, \
.d = 123, \
.e = 345, \
.f =123 \
}
become
#define DEFAULT_CONFIG_VAL \
{ \
.a = 123, \
.b = 345, \
.c =123, \
.d = 123, \
.e = 345, \
.f =123 \
}
if the member is much more ,It is so hard to read.
Nothing changes better.
This is fixed in the current release.