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

It would be nice if there was a setting to disable the small "Run test" link that's displayed on top of `#[test]` functions. One can globally disable all CodeLens' in...

P-High
enhancement

It would be nice to add support for the [Testing API](https://code.visualstudio.com/api/extension-guides/testing), to get Test Explorer support. I couldn’t find an existing ticket for this, so I thought I’d create this...

I don't have intellisense of build scripts. This would be an important feature for me as I have significant code generation done by build scripts and a big part of...

``` fn nothing(str: &str) -> String { str.split_w // no autocomplete "foo".spl // autocomplete works here } ``` related? https://github.com/rust-lang/vscode-rust/issues/649 version: v0.7.8 rls rust-analyzer nightly installed toolchains -------------------- stable-x86_64-unknown-linux-gnu (default)...

Let's say I'm working on the code below and I want to find the code which "obj.func()" calls, in this case line 6. Afaik, there is currently no way to...

> `await` is only allowed inside `async` functions and blocks > > only allowed inside `async` functions and blocksrustc(E0728) > main.rs(14, 8): this is not `async` > main.rs(15, 20): only...

The latest VSCode version has introduced [breadcrumbs](https://code.visualstudio.com/updates/v1_26#_breadcrumbs) support, which is a quite good addition to navigation experience. Unfortunately, in Rust it works only with files and does not support symbol...

enhancement
rls

I am using remote-ssh to develop on a different machine. But when I open my rust project the following errors appear: ``` Couldn't start client Rust Language Server ``` ```...

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Whenever I create a new .rs file in my project, I don't receive any warnings/lints until I restart VSCode. After I restart, everything works as expected. I'm sure I must...