2021-01-07 11:37:38 +00:00
|
|
|
[[rust-analyzer.assist.importMergeBehavior]]rust-analyzer.assist.importMergeBehavior (default: `"full"`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
The strategy to use when inserting new imports or merging imports.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.assist.importPrefix]]rust-analyzer.assist.importPrefix (default: `"plain"`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
The path structure for newly inserted paths to use.
|
|
|
|
--
|
2021-03-06 11:02:26 +00:00
|
|
|
[[rust-analyzer.assist.importGroup]]rust-analyzer.assist.importGroup (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Group inserted imports by the [following order](https://rust-analyzer.github.io/manual.html#auto-import). Groups are separated by newlines.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.callInfo.full]]rust-analyzer.callInfo.full (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Show function name and docs in parameter hints.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.autoreload]]rust-analyzer.cargo.autoreload (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Automatically refresh project info via `cargo metadata` on
|
|
|
|
`Cargo.toml` changes.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.allFeatures]]rust-analyzer.cargo.allFeatures (default: `false`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Activate all available features (`--all-features`).
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.features]]rust-analyzer.cargo.features (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
List of features to activate.
|
|
|
|
--
|
2021-03-08 11:52:16 +00:00
|
|
|
[[rust-analyzer.cargo.runBuildScripts]]rust-analyzer.cargo.runBuildScripts (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Run build scripts (`build.rs`) for more precise code analysis.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.noDefaultFeatures]]rust-analyzer.cargo.noDefaultFeatures (default: `false`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Do not activate the `default` feature.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.target]]rust-analyzer.cargo.target (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Compilation target (target triple).
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.cargo.noSysroot]]rust-analyzer.cargo.noSysroot (default: `false`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Internal config for debugging, disables loading of sysroot crates.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.enable]]rust-analyzer.checkOnSave.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Run specified `cargo check` command for diagnostics on save.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.allFeatures]]rust-analyzer.checkOnSave.allFeatures (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Check with all features (`--all-features`).
|
|
|
|
Defaults to `#rust-analyzer.cargo.allFeatures#`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.allTargets]]rust-analyzer.checkOnSave.allTargets (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Check all targets and tests (`--all-targets`).
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.command]]rust-analyzer.checkOnSave.command (default: `"check"`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Cargo command to use for `cargo check`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.noDefaultFeatures]]rust-analyzer.checkOnSave.noDefaultFeatures (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Do not activate the `default` feature.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.target]]rust-analyzer.checkOnSave.target (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Check for a specific target. Defaults to
|
|
|
|
`#rust-analyzer.cargo.target#`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.extraArgs]]rust-analyzer.checkOnSave.extraArgs (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Extra arguments for `cargo check`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.features]]rust-analyzer.checkOnSave.features (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
List of features to activate. Defaults to
|
|
|
|
`#rust-analyzer.cargo.features#`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.checkOnSave.overrideCommand]]rust-analyzer.checkOnSave.overrideCommand (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Advanced option, fully override the command rust-analyzer uses for
|
|
|
|
checking. The command should include `--message-format=json` or
|
|
|
|
similar option.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.completion.addCallArgumentSnippets]]rust-analyzer.completion.addCallArgumentSnippets (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to add argument snippets when completing functions.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.completion.addCallParenthesis]]rust-analyzer.completion.addCallParenthesis (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to add parenthesis when completing functions.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.completion.postfix.enable]]rust-analyzer.completion.postfix.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show postfix snippets like `dbg`, `if`, `not`, etc.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.completion.autoimport.enable]]rust-analyzer.completion.autoimport.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Toggles the additional completions that automatically add imports when completed.
|
|
|
|
Note that your client must specify the `additionalTextEdits` LSP client capability to truly have this feature enabled.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.diagnostics.enable]]rust-analyzer.diagnostics.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show native rust-analyzer diagnostics.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.diagnostics.enableExperimental]]rust-analyzer.diagnostics.enableExperimental (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show experimental rust-analyzer diagnostics that might
|
|
|
|
have more false positives than usual.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.diagnostics.disabled]]rust-analyzer.diagnostics.disabled (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
List of rust-analyzer diagnostics to disable.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.diagnostics.warningsAsHint]]rust-analyzer.diagnostics.warningsAsHint (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
List of warnings that should be displayed with info severity.
|
|
|
|
|
|
|
|
The warnings will be indicated by a blue squiggly underline in code
|
|
|
|
and a blue icon in the `Problems Panel`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.diagnostics.warningsAsInfo]]rust-analyzer.diagnostics.warningsAsInfo (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
List of warnings that should be displayed with hint severity.
|
|
|
|
|
|
|
|
The warnings will be indicated by faded text or three dots in code
|
|
|
|
and will not show up in the `Problems Panel`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.files.watcher]]rust-analyzer.files.watcher (default: `"client"`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Controls file watching implementation.
|
|
|
|
--
|
2021-01-26 13:18:01 +00:00
|
|
|
[[rust-analyzer.files.excludeDirs]]rust-analyzer.files.excludeDirs (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
These directories will be ignored by rust-analyzer.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.debug]]rust-analyzer.hoverActions.debug (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Debug` action. Only applies when
|
|
|
|
`#rust-analyzer.hoverActions.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.enable]]rust-analyzer.hoverActions.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show HoverActions in Rust files.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.gotoTypeDef]]rust-analyzer.hoverActions.gotoTypeDef (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Go to Type Definition` action. Only applies when
|
|
|
|
`#rust-analyzer.hoverActions.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.implementations]]rust-analyzer.hoverActions.implementations (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Implementations` action. Only applies when
|
|
|
|
`#rust-analyzer.hoverActions.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.run]]rust-analyzer.hoverActions.run (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Run` action. Only applies when
|
|
|
|
`#rust-analyzer.hoverActions.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.hoverActions.linksInHover]]rust-analyzer.hoverActions.linksInHover (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Use markdown syntax for links in hover.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.inlayHints.chainingHints]]rust-analyzer.inlayHints.chainingHints (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show inlay type hints for method chains.
|
|
|
|
--
|
2021-03-23 17:43:55 +00:00
|
|
|
[[rust-analyzer.inlayHints.maxLength]]rust-analyzer.inlayHints.maxLength (default: `25`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
2021-03-23 17:04:48 +00:00
|
|
|
Maximum length for inlay hints. Set to null to have an unlimited length.
|
2021-03-09 11:43:05 +00:00
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.inlayHints.parameterHints]]rust-analyzer.inlayHints.parameterHints (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show function parameter name inlay hints at the call
|
|
|
|
site.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.inlayHints.typeHints]]rust-analyzer.inlayHints.typeHints (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show inlay type hints for variables.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lens.debug]]rust-analyzer.lens.debug (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Debug` lens. Only applies when
|
|
|
|
`#rust-analyzer.lens.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lens.enable]]rust-analyzer.lens.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show CodeLens in Rust files.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lens.implementations]]rust-analyzer.lens.implementations (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Implementations` lens. Only applies when
|
|
|
|
`#rust-analyzer.lens.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lens.run]]rust-analyzer.lens.run (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Run` lens. Only applies when
|
|
|
|
`#rust-analyzer.lens.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lens.methodReferences]]rust-analyzer.lens.methodReferences (default: `false`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `Method References` lens. Only applies when
|
|
|
|
`#rust-analyzer.lens.enable#` is set.
|
|
|
|
--
|
2021-01-23 13:56:20 +00:00
|
|
|
[[rust-analyzer.lens.references]]rust-analyzer.lens.references (default: `false`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `References` lens. Only applies when
|
|
|
|
`#rust-analyzer.lens.enable#` is set.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.linkedProjects]]rust-analyzer.linkedProjects (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Disable project auto-discovery in favor of explicitly specified set
|
|
|
|
of projects.
|
|
|
|
|
|
|
|
Elements must be paths pointing to `Cargo.toml`,
|
|
|
|
`rust-project.json`, or JSON objects in `rust-project.json` format.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.lruCapacity]]rust-analyzer.lruCapacity (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.notifications.cargoTomlNotFound]]rust-analyzer.notifications.cargoTomlNotFound (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Whether to show `can't find Cargo.toml` error message.
|
|
|
|
--
|
2021-03-15 15:19:08 +00:00
|
|
|
[[rust-analyzer.procMacro.enable]]rust-analyzer.procMacro.enable (default: `true`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Enable support for procedural macros, implies `#rust-analyzer.cargo.runBuildScripts#`.
|
|
|
|
--
|
2021-01-06 10:54:28 +00:00
|
|
|
[[rust-analyzer.procMacro.server]]rust-analyzer.procMacro.server (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Internal config, path to proc-macro server executable (typically,
|
|
|
|
this is rust-analyzer itself, but we override this in tests).
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.runnables.overrideCargo]]rust-analyzer.runnables.overrideCargo (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Command to be executed instead of 'cargo' for runnables.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.runnables.cargoExtraArgs]]rust-analyzer.runnables.cargoExtraArgs (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Additional arguments to be passed to cargo for runnables such as
|
|
|
|
tests or binaries. For example, it may be `--release`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.rustcSource]]rust-analyzer.rustcSource (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Path to the Cargo.toml of the rust compiler workspace, for usage in rustc_private
|
|
|
|
projects, or "discover" to try to automatically find it.
|
|
|
|
|
|
|
|
Any project which uses rust-analyzer with the rustcPrivate
|
|
|
|
crates must set `[package.metadata.rust-analyzer] rustc_private=true` to use it.
|
|
|
|
|
|
|
|
This option is not reloaded automatically; you must restart rust-analyzer for it to take effect.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.rustfmt.extraArgs]]rust-analyzer.rustfmt.extraArgs (default: `[]`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Additional arguments to `rustfmt`.
|
|
|
|
--
|
2021-01-05 10:09:06 +00:00
|
|
|
[[rust-analyzer.rustfmt.overrideCommand]]rust-analyzer.rustfmt.overrideCommand (default: `null`)::
|
2021-03-09 11:43:05 +00:00
|
|
|
+
|
|
|
|
--
|
|
|
|
Advanced option, fully override the command rust-analyzer uses for
|
|
|
|
formatting.
|
|
|
|
--
|