Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'docs/book/src/configuration_generated.md')
-rw-r--r--docs/book/src/configuration_generated.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/book/src/configuration_generated.md b/docs/book/src/configuration_generated.md
index e208dbadea..e824e18854 100644
--- a/docs/book/src/configuration_generated.md
+++ b/docs/book/src/configuration_generated.md
@@ -1348,6 +1348,24 @@ Default: `true`
Whether to warn when a rename will cause conflicts (change the meaning of the code).
+## rust-analyzer.runnables.bench.command {#runnables.bench.command}
+
+Default: `"bench"`
+
+Subcommand used for bench runnables instead of `bench`.
+
+
+## rust-analyzer.runnables.bench.overrideCommand {#runnables.bench.overrideCommand}
+
+Default: `null`
+
+Override the command used for bench runnables.
+The first element of the array should be the program to execute (for example, `cargo`).
+
+Use the placeholders `${package}`, `${target_arg}`, `${target}` to dynamically replace the package name,
+target option (such as `--bin` or `--example`), and the target name.
+
+
## rust-analyzer.runnables.command {#runnables.command}
Default: `null`
@@ -1355,6 +1373,17 @@ Default: `null`
Command to be executed instead of 'cargo' for runnables.
+## rust-analyzer.runnables.doctest.overrideCommand {#runnables.doctest.overrideCommand}
+
+Default: `null`
+
+Override the command used for bench runnables.
+The first element of the array should be the program to execute (for example, `cargo`).
+
+Use the placeholders `${package}`, `${target_arg}`, `${target}` to dynamically replace the package name,
+target option (such as `--bin` or `--example`), and the target name.
+
+
## rust-analyzer.runnables.extraArgs {#runnables.extraArgs}
Default: `[]`
@@ -1381,6 +1410,24 @@ they will end up being interpreted as options to
[`rustc`’s built-in test harness (“libtest”)](https://doc.rust-lang.org/rustc/tests/index.html#cli-arguments).
+## rust-analyzer.runnables.test.command {#runnables.test.command}
+
+Default: `"test"`
+
+Subcommand used for test runnables instead of `test`.
+
+
+## rust-analyzer.runnables.test.overrideCommand {#runnables.test.overrideCommand}
+
+Default: `null`
+
+Override the command used for test runnables.
+The first element of the array should be the program to execute (for example, `cargo`).
+
+Use the placeholders `${package}`, `${target_arg}`, `${target}` to dynamically replace the package name,
+target option (such as `--bin` or `--example`), and the target name.
+
+
## rust-analyzer.rustc.source {#rustc.source}
Default: `null`