plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.checkOnSave
Run the check command for diagnostics on save.
Type: null or boolean
Default:
null
Plugin default: true
plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.linkedProjects
Disable project auto-discovery in favor of explicitly specified set of projects.
Elements must be paths pointing to Cargo.toml
,
rust-project.json
, .rs
files (which will be treated as standalone files) or JSON
objects in rust-project.json
format.
Type: null or (list of (string or attribute set of anything))
Default:
null
Plugin default: [ ]
plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.numThreads
How many worker threads in the main loop. The default null
means to pick automatically.
Values:
- physical: Use the number of physical cores
- logical: Use the number of logical cores
Type: null or integer or floating point number between 0 and 255 (both inclusive) or one of “physical”, “logical”
Default:
null
Plugin default: null