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