vscode-rust
vscode-rust copied to clipboard
Rust extension for Visual Studio Code
I might be wrong, but it seems to me that: The description says: `Additional arguments to be passed to cargo for runnables such as tests or binaries. For example, it...
Ref: #812 Opening to openly track progress made towards completely merging both extensions.
Prior to using the vs-code extension, `cargo build` would not recompile unchanged dependencies. After I installed the extension, `cargo build` does recompile these dependencies. Note that this is a more...
I'm using this in VSCode `settings.json`: ```json { "rust-analyzer.checkOnSave.command": "clippy", } ``` it works good. But I would like to have `rustc` errors before and only after the `clippy` errors/warnings...
The pasted text appears is limited and ends with '...' The C++ extension had the same issue, See https://github.com/microsoft/vscode-cpptools/issues/5470
Hello, I've just gotten Rust setup on VSCode. Whenever I have an error in my code, I try to hover over it, and the documentation immediately covers it up. For...
I got red underlines that shows "use of undeclared type or module", but the code compiles with `cargo build`. How can this be resolved? 
A yellow light bulb should appear that proposes that the user renames the return type to `Self`. From: ```rust struct Foo { bar: u8, } impl Foo { fn new(bar:...
From [#835](https://github.com/rust-lang/vscode-rust/issues/835#issuecomment-680747400): it seems that some users (myself included) sometimes get `TypeError: Cannot read property 'value' of undefined at SignatureHelpProvider.hoverToSignatureHelp` which may or may not be causing IntelliSense to fail....
Even with a custom build command (and ctrl-shift-b succeeding), Cargo.toml still renders everything with red squiggles under everything telling me that the package failed to build, i.e. ``` failed to...