Is your feature request related to a problem? Please describe.
While writing Rust I usually like to have the docs for std open in another tab in my browser as the doc output for cargo doc doesn't include the std. Having the option to open next to the current doc view another tab for the std doc, would be really handy.
Describe the solution you'd like
Next to the extension.rustDocViewer command that opens a tab with the cargo doc output, I would like to have a command (maybe extension.rustDocViewer.std, I don't know the constraints for commands) that opens another, separate tab that shows the local docs for the rust standard library that is part of your rust installation.
Describe alternatives you've considered
For now I'm running a local webserver in the directory of the std docs and have a simple browser tab that displays the docs that way. Since this extension is a simplification for that process for the cargo doc output, I think this woul be a reasonable addition.
Is your feature request related to a problem? Please describe. While writing Rust I usually like to have the docs for std open in another tab in my browser as the doc output for
cargo doc
doesn't include the std. Having the option to open next to the current doc view another tab for the std doc, would be really handy.Describe the solution you'd like Next to the
extension.rustDocViewer
command that opens a tab with thecargo doc
output, I would like to have a command (maybeextension.rustDocViewer.std
, I don't know the constraints for commands) that opens another, separate tab that shows the local docs for the rust standard library that is part of your rust installation.Describe alternatives you've considered For now I'm running a local webserver in the directory of the std docs and have a simple browser tab that displays the docs that way. Since this extension is a simplification for that process for the cargo doc output, I think this woul be a reasonable addition.