about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-16 18:00:21 +0000
committerGitHub <noreply@github.com>2020-10-16 18:00:21 +0000
commitf0412da4a2c06e50030d13e37002d0440fc7cded (patch)
tree112d1d55b73d6d5403c3c56272b5c85e4efdb016 /docs/dev
parent89aad020c841111b931644e057cd64dcd3d55aca (diff)
parentd718366567275d86523f8b76b98559af547e288a (diff)
downloadrust-f0412da4a2c06e50030d13e37002d0440fc7cded.tar.gz
rust-f0412da4a2c06e50030d13e37002d0440fc7cded.zip
Merge #6253
6253: Document change of 'cargo' Runnable kind in lsp-extensions.md r=lnicola a=popzxc

As was requested in https://github.com/rust-analyzer/rust-analyzer/pull/5954#issuecomment-708325521


Co-authored-by: Igor Aleksanov <popzxc@yandex.ru>
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/lsp-extensions.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md
index 43a69d6ce75..780f5cb91fb 100644
--- a/docs/dev/lsp-extensions.md
+++ b/docs/dev/lsp-extensions.md
@@ -392,7 +392,10 @@ rust-analyzer supports only one `kind`, `"cargo"`. The `args` for `"cargo"` look
 {
     workspaceRoot?: string;
     cargoArgs: string[];
+    cargoExtraArgs: string[];
     executableArgs: string[];
+    expectTest?: boolean;
+    overrideCargo?: string;
 }
 ```