Rust AssistSimple VSCode diagnostic integration. Provides: code diagnostics, formatting, and snippets. This extension is for if the RLS is causing you issues. If it is not, I recommend trying out the official Rust VSCode Extension. FeaturesInline Code DiagnosticsThis extension automatically provides inline diagnostics for Rust by calling By default, this runs on save and on startup. FormattingFormatting is supported through the By default, formatting is not enabled. Supports Multiple Rust ProjectsIt supports multiple rust projects in the same workspace. The extension will search for SnippetsBasic snippets are provided for Rust. InstallationRequirementsInstalling
|
Setting | Description | Default |
---|---|---|
rust-assist.diagnosticsOnStartup |
Specifies if diagnostics should be generated on startup. | true |
rust-assist.diagnosticsOnSave |
Specifies if diagnostics should be generated on save. | true |
rust-assist.formatOnSave |
Specifies if the file should be formatted on save. | false |
rust-assist.formatMode |
The format mode to write in. Backup generates backups, overwrite does not. | overwrite |
Known Issues
If a Cargo.toml
file is not found, the extension will not provide diagnostic data.
Release Notes
0.2.3 - 2018-11-07
- Display an error when there's an configuration error in
rustfmt.toml
.