aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-07 15:07:58 +0100
committervsrs <[email protected]>2020-05-07 15:07:58 +0100
commit5426e2927e317a5e78179a5bd74b9414c0651b86 (patch)
tree0f8d8b987f6e3c5765cfbad5c66791954893a1c2 /editors/code/package.json
parentc4ca6e29c25df209c2733ef24b8b4eca70ee93a4 (diff)
Add additional debug options
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index eeb3d3513..84aea8249 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -418,6 +418,16 @@
418 "default": { 418 "default": {
419 "/rustc/<id>": "${env:USERPROFILE}/.rustup/toolchains/<toolchain-id>/lib/rustlib/src/rust" 419 "/rustc/<id>": "${env:USERPROFILE}/.rustup/toolchains/<toolchain-id>/lib/rustlib/src/rust"
420 } 420 }
421 },
422 "rust-analyzer.debug.openUpDebugPane": {
423 "description": "Whether to open up the Debug Pane on debugging start.",
424 "type": "boolean",
425 "default": false
426 },
427 "rust-analyzer.debug.engineSettings": {
428 "type": "object",
429 "default": {},
430 "description": "Optional settings passed to the debug engine."
421 } 431 }
422 } 432 }
423 }, 433 },