aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json25
1 files changed, 14 insertions, 11 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index aa8065171..4f2df89ef 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -390,22 +390,25 @@
390 "default": false 390 "default": false
391 }, 391 },
392 "rust-analyzer.debug.engine": { 392 "rust-analyzer.debug.engine": {
393 "type": [ 393 "type": "string",
394 "null",
395 "string"
396 ],
397 "enum": [ 394 "enum": [
398 "ms-vscode.cpptools", 395 "auto",
399 "vadimcn.vscode-lldb" 396 "vadimcn.vscode-lldb",
397 "ms-vscode.cpptools"
400 ], 398 ],
401 "default": null, 399 "default": "auto",
402 "description": "Preffered debug engine." 400 "description": "Preffered debug engine.",
401 "markdownEnumDescriptions": [
402 "First try to use [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb), if it's not installed use [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools).",
403 "Use [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb)",
404 "Use [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)"
405 ]
403 }, 406 },
404 "rust-analyzer.debug.sourceFileMap" : { 407 "rust-analyzer.debug.sourceFileMap": {
405 "type":"object", 408 "type": "object",
406 "description": "Optional source file mappings passed to the debug engine.", 409 "description": "Optional source file mappings passed to the debug engine.",
407 "default": { 410 "default": {
408 "<source-path>": "<target-path>" 411 "/rustc/<id>": "${env:USERPROFILE}/.rustup/toolchains/<toolchain-id>/lib/rustlib/src/rust"
409 } 412 }
410 } 413 }
411 } 414 }