-
Notifications
You must be signed in to change notification settings - Fork 917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indent mistake with nested struct lit #1019
Comments
Ok, so what's happening here is that multi-line struct expressions are indented using block formatting. This makes sense in situations such as let x = SomeStruct {
a: foo,
b: bar(),
}; But it doesn't really look great in an otherwise visually indented context (function args). This is a common problem in rustfmt. |
Yeah, I was also playing with this, made some things better and some things worse. Examples of how I'd like this to work:
The problem is subtle, but I think it comes down to something like the |
That may not be necessary. Recall that we already have two levels of indent: one passed explicitly to the It just gets a bit tricky when you have function arguments which are closures, which could use either one of the indents depending on its length... |
100% agreed on the ideal formatting btw |
Just played around with this a little. Turns around we already do visual indentation for struct function arguments. In the example we're looking at a tuple function argument though... Not sure how to fix this.. |
Closing since this is fixed on the current master. |
https://github.com/rust-lang/rust/pull/33939/files#diff-3d823311f2b08736340d87893d91e770R471
The text was updated successfully, but these errors were encountered: