diff options
| author | bors <bors@rust-lang.org> | 2023-09-24 07:38:38 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-09-24 07:38:38 +0000 |
| commit | e5e937ae5eafe38b995e26f0e6c4f1035d52a313 (patch) | |
| tree | 03e170d786eb051c2cabfc8bf4ea8052f5733ac1 /editors/code/package.json | |
| parent | 2b580a1f3c7bf7f2dd6d1462282362b80a6a3d91 (diff) | |
| parent | 10fae6282070945531853901cc19155f59758bbc (diff) | |
| download | rust-e5e937ae5eafe38b995e26f0e6c4f1035d52a313.tar.gz rust-e5e937ae5eafe38b995e26f0e6c4f1035d52a313.zip | |
Auto merge of #15582 - vxpm:master, r=HKalbasi
add option to show full function signatures in completion docs implements #15538 with `"rust-analyzer.completion.fullFunctionSignatures.enable": false`:  with `"rust-analyzer.completion.fullFunctionSignatures.enable": true`: 
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 673dc0fcbbf..856d69d7eb8 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -799,6 +799,11 @@ "Do no snippet completions for callables." ] }, + "rust-analyzer.completion.fullFunctionSignatures.enable": { + "markdownDescription": "Whether to show full function/method signatures in completion docs.", + "default": false, + "type": "boolean" + }, "rust-analyzer.completion.limit": { "markdownDescription": "Maximum number of completions to return. If `None`, the limit is infinite.", "default": null, |
