aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-07 16:53:14 +0100
committervsrs <[email protected]>2020-05-07 16:53:14 +0100
commit23f4859166ba16f02927b476aad2ae91e618b1ef (patch)
tree9ad8972bb4e2ed9078cd7a8f3593c10fb8489ae8 /editors
parent435a17ecd8806f3ae81edf6277c17363b01f4334 (diff)
Add CodeLLDB Rust visualization
Diffstat (limited to 'editors')
-rw-r--r--editors/code/package.json2
-rw-r--r--editors/code/src/commands/runnables.ts3
2 files changed, 3 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index e4dd66924..e8e9598f6 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -609,4 +609,4 @@
609 } 609 }
610 ] 610 ]
611 } 611 }
612} \ No newline at end of file 612}
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts
index e62de7d6e..ae328d2a4 100644
--- a/editors/code/src/commands/runnables.ts
+++ b/editors/code/src/commands/runnables.ts
@@ -72,7 +72,8 @@ function getLldbDebugConfig(config: ra.Runnable, executable: string, sourceFileM
72 program: executable, 72 program: executable,
73 args: config.extraArgs, 73 args: config.extraArgs,
74 cwd: config.cwd, 74 cwd: config.cwd,
75 sourceMap: sourceFileMap 75 sourceMap: sourceFileMap,
76 sourceLanguages: ["rust"]
76 }; 77 };
77} 78}
78 79