vscode-rust icon indicating copy to clipboard operation
vscode-rust copied to clipboard

Rust extension for Visual Studio Code

Results 116 vscode-rust issues
Sort by recently updated
recently updated
newest added

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...

bug

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? ![image](https://user-images.githubusercontent.com/4164808/95632483-95a60b00-0a3a-11eb-8ea6-becbf541abaf.png)

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...