| Age | Commit message (Expand) | Author | Lines |
| 2023-09-20 | rustdoc: add comment about numeric spacing | Michael Howell | -0/+4 |
| 2023-09-19 | rustdoc: add test cases, and fix, search tabs | Michael Howell | -2/+7 |
| 2023-09-09 | rustdoc-search: fix bugs when unboxing and reordering combine | Michael Howell | -235/+275 |
| 2023-09-03 | rustdoc: fix test case for generics that look like names | Michael Howell | -1/+2 |
| 2023-09-03 | rustdoc: bug fix for `-> option<t>` | Michael Howell | -1/+4 |
| 2023-09-03 | rustdoc-search: add support for type parameters | Michael Howell | -171/+283 |
| 2023-09-03 | rustdoc-search: `null`, not `-1`, for missing id | Michael Howell | -13/+13 |
| 2023-09-03 | Rollup merge of #115490 - pitaj:rustdoc-searchjs-comment, r=GuillaumeGomez | Guillaume Gomez | -8/+17 |
| 2023-09-02 | rustdoc: update comment in search.js for #107629 | Peter Jaszkowiak | -8/+17 |
| 2023-09-01 | [rustdoc] Fix path in type-based search | Guillaume Gomez | -23/+89 |
| 2023-08-31 | Improve `search.js` code | Guillaume Gomez | -17/+13 |
| 2023-07-18 | Fix display of aliases in rustdoc search results | Guillaume Gomez | -18/+11 |
| 2023-07-02 | Auto merge of #108537 - GuillaumeGomez:rustdoc-search-whitespace-as-separator... | bors | -73/+174 |
| 2023-06-28 | Fix display of long items in search results | Guillaume Gomez | -3/+5 |
| 2023-06-23 | Abbreviate long typenames so they don't get wrapped in results | Noah Lev | -2/+2 |
| 2023-06-19 | rustdoc: js: change color and reduce size of typename in search result | Alexis (Poliorcetics) Bourget | -1/+3 |
| 2023-06-17 | Rollup merge of #112707 - GuillaumeGomez:back-in-history-fix, r=notriddle | Matthias Krüger | -16/+28 |
| 2023-06-16 | Fix invalid handling of "going back in history" when "Directly go to item in ... | Guillaume Gomez | -1/+14 |
| 2023-06-16 | Auto merge of #110688 - GuillaumeGomez:result-search-type, r=notriddle,jsha | bors | -9/+34 |
| 2023-06-16 | Unify history interactions in search | Guillaume Gomez | -15/+14 |
| 2023-06-15 | Auto merge of #112233 - notriddle:notriddle/search-unify, r=GuillaumeGomez | bors | -164/+161 |
| 2023-06-14 | Fix eBNF and handling of whitespace characters when not in a path | Guillaume Gomez | -2/+11 |
| 2023-06-14 | Correctly display whitespace characters in search error | Guillaume Gomez | -1/+1 |
| 2023-06-14 | Use whitespace as path separator like double colon | Guillaume Gomez | -71/+163 |
| 2023-06-12 | rustdoc-search: search never type with `!` | Michael Howell | -5/+43 |
| 2023-06-11 | rustdoc-search: fix order-independence bug | Michael Howell | -68/+98 |
| 2023-06-11 | rustdoc-search: build args, return, and generics on one unifier | Michael Howell | -136/+103 |
| 2023-06-11 | rustdoc-search: simplify JS in `checkGenerics` | Michael Howell | -68/+68 |
| 2023-06-10 | rustdoc: search for slices and arrays by type with `[]` | Michael Howell | -82/+151 |
| 2023-06-03 | Move type name directly into the same DOM element | Guillaume Gomez | -6/+1 |
| 2023-06-02 | Move item kind before the item name | Guillaume Gomez | -3/+8 |
| 2023-06-02 | Add search result item types after their name | Guillaume Gomez | -9/+34 |
| 2023-05-03 | Rollup merge of #110371 - notriddle:notriddle/search-corrections, r=Guillaume... | Manish Goregaokar | -196/+224 |
| 2023-04-21 | rustdoc: clean up redundant search hiding results code | Michael Howell | -4/+0 |
| 2023-04-20 | rustdoc-search: use more descriptive "x not found; y instead" message | Michael Howell | -1/+1 |
| 2023-04-20 | rustdoc-search: make type name correction choice deterministic | Michael Howell | -0/+3 |
| 2023-04-20 | rustdoc-search: clean up `checkIfInGenerics` call at end of `checkType` | Michael Howell | -5/+1 |
| 2023-04-19 | rustdoc-search: give longer notification for type corrections | Michael Howell | -2/+7 |
| 2023-04-17 | rustdoc: restructure type search engine to pick-and-use IDs | Michael Howell | -195/+219 |
| 2023-04-17 | rustdoc-search: fix incorrect doc comment | Michael Howell | -1/+1 |
| 2023-04-14 | rustdoc-search: add support for nested generics | Michael Howell | -11/+10 |
| 2023-04-13 | rustdoc-search: use ES6 Map for `Result` instead of Object | Michael Howell | -20/+34 |
| 2023-04-13 | rustdoc-search: use ES6 `Set` for deduplication instead of `Object` | Michael Howell | -3/+3 |
| 2023-04-13 | rustdoc-search: use ES6 `Map` for generic matching instead of `Object` | Michael Howell | -23/+14 |
| 2023-04-13 | rustdoc-search: use ES6 `Map` for aliases instead of `Object` | Michael Howell | -11/+16 |
| 2023-03-27 | Rollup merge of #109633 - GuillaumeGomez:fix-go-to-only-setting, r=notriddle | Matthias Krüger | -5/+1 |
| 2023-03-26 | Fix "Directly go to item in search if there is only one result" setting | Guillaume Gomez | -5/+1 |
| 2023-03-20 | rustdoc: add support for type filters in arguments and generics | Michael Howell | -53/+111 |
| 2023-03-19 | rustdoc: implement bag semantics for function parameter search | Michael Howell | -26/+70 |
| 2023-03-12 | Rollup merge of #109009 - notriddle:notriddle/edit-distance, r=GuillaumeGomez | Matthias Krüger | -149/+223 |