aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/debug.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts
index 1f93a2b7e..d3fe588e8 100644
--- a/editors/code/src/debug.ts
+++ b/editors/code/src/debug.ts
@@ -90,7 +90,7 @@ export async function getDebugConfiguration(ctx: Ctx, config: ra.Runnable): Prom
90 if (debugConfig.name === "run binary") { 90 if (debugConfig.name === "run binary") {
91 // The LSP side: crates\rust-analyzer\src\main_loop\handlers.rs, 91 // The LSP side: crates\rust-analyzer\src\main_loop\handlers.rs,
92 // fn to_lsp_runnable(...) with RunnableKind::Bin 92 // fn to_lsp_runnable(...) with RunnableKind::Bin
93 debugConfig.name = `run binary '${path.basename(executable)}'`; 93 debugConfig.name = `run ${path.basename(executable)}`;
94 } 94 }
95 95
96 if (debugConfig.cwd) { 96 if (debugConfig.cwd) {