From 23f4859166ba16f02927b476aad2ae91e618b1ef Mon Sep 17 00:00:00 2001 From: vsrs Date: Thu, 7 May 2020 18:53:14 +0300 Subject: [PATCH] Add CodeLLDB Rust visualization --- editors/code/package.json | 2 +- editors/code/src/commands/runnables.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/editors/code/package.json b/editors/code/package.json index e4dd669244..e8e9598f6d 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -609,4 +609,4 @@ } ] } -} \ No newline at end of file +} diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index e62de7d6ed..ae328d2a42 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 program: executable, args: config.extraArgs, cwd: config.cwd, - sourceMap: sourceFileMap + sourceMap: sourceFileMap, + sourceLanguages: ["rust"] }; }