diff options
Diffstat (limited to 'editors/code/package.json')
-rw-r--r-- | editors/code/package.json | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 3acc375f6..f542a490a 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -336,6 +336,14 @@ | |||
336 | "default": null, | 336 | "default": null, |
337 | "description": "List of features to activate. Defaults to `rust-analyzer.cargo.features`." | 337 | "description": "List of features to activate. Defaults to `rust-analyzer.cargo.features`." |
338 | }, | 338 | }, |
339 | "rust-analyzer.cargoRunner": { | ||
340 | "type": [ | ||
341 | "null", | ||
342 | "string" | ||
343 | ], | ||
344 | "default": null, | ||
345 | "description": "Custom cargo runner extension ID." | ||
346 | }, | ||
339 | "rust-analyzer.inlayHints.enable": { | 347 | "rust-analyzer.inlayHints.enable": { |
340 | "type": "boolean", | 348 | "type": "boolean", |
341 | "default": true, | 349 | "default": true, |
@@ -426,7 +434,7 @@ | |||
426 | "Full log" | 434 | "Full log" |
427 | ], | 435 | ], |
428 | "default": "off", | 436 | "default": "off", |
429 | "description": "Trace requests to the rust-analyzer" | 437 | "description": "Trace requests to the rust-analyzer (this is usually overly verbose and not recommended for regular users)" |
430 | }, | 438 | }, |
431 | "rust-analyzer.trace.extension": { | 439 | "rust-analyzer.trace.extension": { |
432 | "description": "Enable logging of VS Code extensions itself", | 440 | "description": "Enable logging of VS Code extensions itself", |
@@ -510,6 +518,11 @@ | |||
510 | "type": "boolean", | 518 | "type": "boolean", |
511 | "default": true | 519 | "default": true |
512 | }, | 520 | }, |
521 | "rust-analyzer.hoverActions.gotoTypeDef": { | ||
522 | "markdownDescription": "Whether to show `Go to Type Definition` action. Only applies when `#rust-analyzer.hoverActions.enable#` is set.", | ||
523 | "type": "boolean", | ||
524 | "default": true | ||
525 | }, | ||
513 | "rust-analyzer.linkedProjects": { | 526 | "rust-analyzer.linkedProjects": { |
514 | "markdownDescription": "Disable project auto-discovery in favor of explicitly specified set of projects. \nElements must be paths pointing to Cargo.toml, rust-project.json, or JSON objects in rust-project.json format", | 527 | "markdownDescription": "Disable project auto-discovery in favor of explicitly specified set of projects. \nElements must be paths pointing to Cargo.toml, rust-project.json, or JSON objects in rust-project.json format", |
515 | "type": "array", | 528 | "type": "array", |