]> git.lizzy.rs Git - rust.git/commitdiff
Add CodeLLDB Rust visualization
authorvsrs <vit@conrlab.com>
Thu, 7 May 2020 15:53:14 +0000 (18:53 +0300)
committervsrs <vit@conrlab.com>
Thu, 7 May 2020 15:53:14 +0000 (18:53 +0300)
editors/code/package.json
editors/code/src/commands/runnables.ts

index e4dd66924482fbb387a74173393298a93d75f8c6..e8e9598f6d609e82781614eb42fe00752f25695f 100644 (file)
             }
         ]
     }
-}
\ No newline at end of file
+}
index e62de7d6ede601d3489b7ef9aa62635018fb904e..ae328d2a427a96e72513dca96a136560e3998942 100644 (file)
@@ -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"]
     };
 }