| Age | Commit message (Expand) | Author | Lines |
| 2022-06-23 | Rollup merge of #97636 - nnethercote:revert-96682, r=dtolnay | Dylan DPC | -18/+5 |
| 2022-05-11 | ast: Introduce some traits to get AST node properties generically | Vadim Petrochenkov | -3/+43 |
| 2022-05-07 | Auto merge of #96094 - Elliot-Roberts:fix_doctests, r=compiler-errors | bors | -5/+5 |
| 2022-05-05 | Rollup merge of #96682 - nnethercote:show-invisible-delims, r=petrochenkov | Matthias Krüger | -5/+18 |
| 2022-05-05 | Rollup merge of #96628 - joshtriplett:stabilize-then-some, r=m-ou-se | Yuki Okushi | -1/+0 |
| 2022-05-04 | Auto merge of #96546 - nnethercote:overhaul-MacArgs, r=petrochenkov | bors | -8/+20 |
| 2022-05-05 | Overhaul `MacArgs::Eq`. | Nicholas Nethercote | -3/+14 |
| 2022-05-04 | Stabilize `bool::then_some` | Josh Triplett | -1/+0 |
| 2022-05-04 | Show invisible delimeters (within comments) when pretty printing. | Nicholas Nethercote | -5/+18 |
| 2022-05-02 | fix most compiler/ doctests | Elliot Roberts | -5/+5 |
| 2022-04-30 | Add `do yeet` expressions to allow experimentation in nightly | Scott McMurray | -1/+13 |
| 2022-04-29 | Tweak `print_attr_item`. | Nicholas Nethercote | -7/+8 |
| 2022-04-28 | rustc_ast: Harmonize delimiter naming with `proc_macro::Delimiter` | Vadim Petrochenkov | -13/+15 |
| 2022-04-27 | Avoid producing `NoDelim` values in `MacArgs::delim()`. | Nicholas Nethercote | -18/+20 |
| 2022-04-16 | Rollup merge of #94985 - dtolnay:constattr, r=pnkfelix | Dylan DPC | -4/+15 |
| 2022-04-14 | Reimplement lowering of sym operands for asm! so that it also works with glob... | Amanieu d'Antras | -2/+6 |
| 2022-03-28 | Remove `Nonterminal::NtTT`. | Nicholas Nethercote | -1/+0 |
| 2022-03-15 | Parse inner attributes on inline const block | David Tolnay | -4/+15 |
| 2022-03-05 | Change syntax for TyAlias where clauses | Jack Huey | -4/+34 |
| 2022-02-07 | Pretty print ItemKind::Use in rustfmt style | David Tolnay | -15/+39 |
| 2022-02-03 | Change struct expr pretty printing to match rustfmt style | David Tolnay | -31/+83 |
| 2022-02-03 | Support offsetting the most recent break | David Tolnay | -0/+6 |
| 2022-02-03 | Change pp indent to signed to allow negative indents | David Tolnay | -9/+8 |
| 2022-02-03 | Add trailing comma support | David Tolnay | -7/+27 |
| 2022-02-03 | Rollup merge of #93515 - dtolnay:convenience, r=davidtwco | Yuki Okushi | -75/+78 |
| 2022-01-31 | Factor convenience functions out of main printer implementation | David Tolnay | -75/+78 |
| 2022-01-31 | Allow any line to have at least 60 chars | David Tolnay | -1/+4 |
| 2022-01-31 | Extract constant MARGIN out of Printer struct | David Tolnay | -7/+6 |
| 2022-01-30 | Restore a visual alignment mode for block comments | David Tolnay | -4/+30 |
| 2022-01-30 | Fix some double indents on exprs containing blocks | David Tolnay | -10/+18 |
| 2022-01-30 | Compute indent never relative to current column | David Tolnay | -19/+22 |
| 2022-01-30 | Rollup merge of #92908 - dtolnay:rustdoc, r=GuillaumeGomez | Eric Huss | -1/+1 |
| 2022-01-27 | try apply `rustc_pass_by_value` to `Span` | lcnr | -3/+3 |
| 2022-01-19 | Deduplicate branches of print_break implementation | David Tolnay | -19/+14 |
| 2022-01-19 | Inline print_newline function | David Tolnay | -7/+4 |
| 2022-01-19 | Inline indent function | David Tolnay | -8/+3 |
| 2022-01-19 | Eliminate offset number from Fits frames | David Tolnay | -28/+19 |
| 2022-01-19 | Touch up print_string | David Tolnay | -5/+4 |
| 2022-01-19 | Replace all single character variable names | David Tolnay | -47/+49 |
| 2022-01-19 | Combine advance_left matches | David Tolnay | -8/+8 |
| 2022-01-19 | Inline print into advance_left | David Tolnay | -11/+8 |
| 2022-01-19 | Simplify advance_left | David Tolnay | -8/+4 |
| 2022-01-19 | Simplify left_total tracking | David Tolnay | -16/+6 |
| 2022-01-19 | Eliminate a token clone from advance_left | David Tolnay | -7/+7 |
| 2022-01-19 | Grow scan_stack in the conventional direction | David Tolnay | -9/+9 |
| 2022-01-19 | Delete unused Display for pretty printer Token | David Tolnay | -12/+0 |
| 2022-01-19 | Rollup merge of #93065 - dtolnay:ringbuffer, r=lcnr | Matthias Krüger | -112/+103 |
| 2022-01-19 | Rollup merge of #92920 - dtolnay:printtidy, r=cjgillot | Matthias Krüger | -1200/+1220 |
| 2022-01-18 | Eliminate left and right cursors in favor of ring buffer | David Tolnay | -30/+33 |
| 2022-01-18 | Eliminate eof token state | David Tolnay | -42/+44 |