| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -98/+0 | |
| 2021-12-14 | Stabilize `destructuring_assignment` | Jacob Pratt | -9/+9 | |
| 2021-08-25 | Adjust spans | Noah Lev | -4/+4 | |
| * Highlight the whole pattern if it has no fields * Highlight the whole definition if it has no fields * Only highlight the pattern name if the pattern is multi-line * Determine whether a pattern is multi-line based on distance from name to last field, rather than first field | ||||
| 2021-08-21 | Make E0023 spans even more precise | Noah Lev | -20/+12 | |
| 2021-08-17 | Make spans for tuple patterns in E0023 more precise | Noah Lev | -8/+16 | |
| As suggested in #86307. | ||||
| 2021-08-11 | Modify structured suggestion output | Esteban Küber | -4/+4 | |
| * On suggestions that include deletions, use a diff inspired output format * When suggesting addition, use `+` as underline * Color highlight modified span | ||||
| 2021-01-12 | Include `..` suggestion if fields are all wildcards | Camelid | -0/+8 | |
| 2021-01-12 | Always show suggestions in their own subwindows | Camelid | -8/+12 | |
| 2021-01-12 | Only suggest `..` if more than one field is missing | Camelid | -20/+8 | |
| 2021-01-12 | Specialize `..` help message for all fields vs. the rest | Camelid | -2/+2 | |
| 2021-01-12 | Suggest `Variant(..)` if all of the mentioned fields are `_` | Camelid | -4/+4 | |
| 2021-01-12 | Suggest `_` and `..` if a pattern has too few fields | Camelid | -0/+18 | |
| For example, this code: struct S(i32, f32); let S(x) = S(0, 1.0); will make the compiler suggest either: let S(x, _) = S(0, 1.0); or: let S(x, ..) = S(0, 1.0); | ||||
| 2020-11-14 | Add underscore expressions for destructuring assignments | Fabian Zaiser | -5/+23 | |
| Co-authored-by: varkor <github@varkor.com> | ||||
| 2020-11-11 | Implement destructuring assignment for structs and slices | Fabian Zaiser | -0/+62 | |
| Co-authored-by: varkor <github@varkor.com> | ||||
