Hi all,
I am looking for a solution to my problem with C struct in place initialization doesn’t use tabs when UseTab = Always.
Namely, having a snippet like so:
struct typ {
» int x;
» float f;
};
static const struct typ data = {
.x = 1,
.f = 0.1f,
};
int main() {}
I will get lines with initialization not indented with tabs but with spaces instead even though I have UseTab set to Always.
- Is there a solution for this ATM?
- If not then where in the code can I look for the relevant snippet so that I can fiddle with configuration /changing the behavior ?