aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-16 19:00:21 +0100
committerGitHub <[email protected]>2020-10-16 19:00:21 +0100
commitf0412da4a2c06e50030d13e37002d0440fc7cded (patch)
tree112d1d55b73d6d5403c3c56272b5c85e4efdb016
parent89aad020c841111b931644e057cd64dcd3d55aca (diff)
parentd718366567275d86523f8b76b98559af547e288a (diff)
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 <[email protected]>
-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 43a69d6ce..780f5cb91 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
392{ 392{
393 workspaceRoot?: string; 393 workspaceRoot?: string;
394 cargoArgs: string[]; 394 cargoArgs: string[];
395 cargoExtraArgs: string[];
395 executableArgs: string[]; 396 executableArgs: string[];
397 expectTest?: boolean;
398 overrideCargo?: string;
396} 399}
397``` 400```
398 401