| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -67/+0 | |
| 2021-08-25 | Adjust spans | Noah Lev | -0/+12 | |
| * 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-01-12 | Include `..` suggestion if fields are all wildcards | Camelid | -0/+2 | |
| 2021-01-12 | Add a test case with lots of whitespace | Camelid | -0/+8 | |
| 2021-01-12 | Only suggest `..` if more than one field is missing | Camelid | -4/+0 | |
| 2021-01-12 | Specialize `..` help message for all fields vs. the rest | Camelid | -6/+6 | |
| 2021-01-12 | Suggest `_` and `..` if a pattern has too few fields | Camelid | -0/+49 | |
| 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); | ||||
