aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code')
-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