-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustdoc search command #2207
Comments
yes! |
I'm sort of working on this (not pulling out of metadata, but rather out of what rustdoc generates, for now), and more (searching by types), over here: http://github.com/dbp/rustle . Perhaps it would make sense to integrate it into rustdoc once it has stabilized a little. |
Nominating for feature-complete |
accepted for feature-complete milestone |
Bug triage: still a bug, milestone/tags look good. |
Such a tool could be implemented by caching rustdoc_ng's JSON in the rustpkg workspace. Perhaps in |
on a related note, how about adding tag-cloud search ... some sort of annotation in docstrings for tagging documented entities for non-heirachical search. for example , functions could be tagged with the names of similar functions in other languages |
Low, not 1.0 |
We now have online/HTML search via some JS included with rustdoc, but nothing at the command line, and it's only within a single crate. |
The search is now within multiple crates. Original reasoning about rustpkg still applies to cargo. |
I'm pulling a massive triage effort to get us ready for 1.0. As part of this, I'm moving stuff that's wishlist-like to the RFCs repo, as that's where major new things should get discussed/prioritized. This issue has been moved to the RFCs repo: rust-lang/rfcs#647 |
ui_test: ensure all worker threads stay around Also organize files such that the by far slowest test (weak_memory/consistency) always starts first. It still finishes last on my system... even after I halved the iteration count. Fixes rust-lang/miri#2204
I want to be able to write
rustdoc search vec::each
and have rustdoc tell me the docs. It would use the following algorithm:Requires #2206
The text was updated successfully, but these errors were encountered: