aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands
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/code/src/commands
parent435a17ecd8806f3ae81edf6277c17363b01f4334 (diff)
Add CodeLLDB Rust visualization
Diffstat (limited to 'editors/code/src/commands')
-rw-r--r--editors/code/src/commands/runnables.ts3
1 files changed, 2 insertions, 1 deletions
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