We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After I updated to rustfmt 1.4.11-nightly (18382352 2019-12-03), I noticed some comment-intentation regressions:
rustfmt 1.4.11-nightly (18382352 2019-12-03)
Before:
if let Some(MpcEv::PlayDrum(pitch, vel)) = // self.mpc.handle_input(e, /*btn_ctrl_down,*/ tx_launch_to_daw, state_view) self.mpc.handle_input(e, &mut MyBorrowedState { tx_launch_to_daw, state_view }) {
After:
And another one. Before:
if let Some(e) = // self.note_input.handle_input(e, /*btn_ctrl_down,*/ tx_launch_to_daw, state_view) self.note_input.handle_input(e, &mut MyBorrowedState { tx_launch_to_daw, state_view }) {
Notice: It inserts a single space after tab-indentation.
These are my settings:
edition = "2018" version = "Two" max_width = 110 newline_style = "Unix" use_small_heuristics = "Max" hard_tabs = true merge_imports = true reorder_impl_items = true use_field_init_shorthand = true use_try_shorthand = true spaces_around_ranges = true overflow_delimited_expr = true
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
After I updated to
rustfmt 1.4.11-nightly (18382352 2019-12-03)
, I noticed some comment-intentation regressions:Before:
After:
And another one.
Before:
After:
Notice: It inserts a single space after tab-indentation.
These are my settings:
The text was updated successfully, but these errors were encountered: