@@ -57,6 +57,12 @@ build procedural macros. The command is required to output json
57
57
and should therefore include `--message-format=json` or a similar
58
58
option.
59
59
60
+ If there are multiple linked projects/workspaces, this command is invoked for
61
+ each of them, with the working directory being the workspace root
62
+ (i.e., the folder containing the `Cargo.toml` ). This can be overwritten
63
+ by changing `#rust-analyzer.cargo.buildScripts.invocationStrategy#` and
64
+ `#rust-analyzer.cargo.buildScripts.invocationLocation#` .
65
+
60
66
By default, a cargo invocation will be constructed for the configured
61
67
targets and features, with the following base command line:
62
68
@@ -206,9 +212,11 @@ If you're changing this because you're using some tool wrapping
206
212
Cargo, you might also want to change
207
213
`#rust-analyzer.cargo.buildScripts.overrideCommand#` .
208
214
209
- If there are multiple linked projects, this command is invoked for
210
- each of them, with the working directory being the project root
211
- (i.e., the folder containing the `Cargo.toml` ).
215
+ If there are multiple linked projects/workspaces, this command is invoked for
216
+ each of them, with the working directory being the workspace root
217
+ (i.e., the folder containing the `Cargo.toml` ). This can be overwritten
218
+ by changing `#rust-analyzer.cargo.check.invocationStrategy#` and
219
+ `#rust-analyzer.cargo.check.invocationLocation#` .
212
220
213
221
An example command would be:
214
222
@@ -244,6 +252,11 @@ with `self` prefixed to them when inside a method.
244
252
--
245
253
Whether to add parenthesis and argument snippets when completing function.
246
254
--
255
+ [[rust-analyzer.completion.fullFunctionSignatures.enable]]rust-analyzer.completion.fullFunctionSignatures.enable (default: `false` )::
256
+ +
257
+ --
258
+ Whether to show full function/method signatures in completion docs.
259
+ --
247
260
[[rust-analyzer.completion.limit]]rust-analyzer.completion.limit (default: `null` )::
248
261
+
249
262
--
0 commit comments