vscode-rust
vscode-rust copied to clipboard
Rust extension for Visual Studio Code
I'm new to Rust, so it's entirely possible I'm missing something obvious here, but I've run into a weird scenario where the VS Code extension (I've disabled every other extension)...
When a user hovers the cursor over a method parameter, a yellow light bulb should appear that lets wrap it into a box. From: ```rust struct Foo { bar: &Bar,...
When a user hovers the cursor over a method parameter, a yellow light bulb should appear that lets the user add a lifetime annotations to the method and its struct...
I opened a rust project folder in VS Code and rls started. After that it kept showing build_script_build. Sometimes VS Code alerted that rls crashed 5 times in the last...
Steps to reproduce: 1. Create a new library crate, in `lib.rs` copy-paste the following code. ```rust enum EnumTest {} mod test { use crate::EnumTest; } ``` 2. Using rename symbol...
Running `cargo clean` while VS Code was open (with a Rust project), I got the following error: ``` $ cargo clean error: could not remove build directory Caused by: failed...