aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/debug.ts
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-14 15:32:24 +0100
committervsrs <[email protected]>2020-05-14 15:33:49 +0100
commitabef76bc87137203081faedd3c758796e8d6598d (patch)
treeabc78b884f1507d2fe2069069cf0a3fab49dc743 /editors/code/src/debug.ts
parent51d5a08255482d6cf7dfcb9e3c6bb1a0aec6379d (diff)
Fix runnable naming in the client side fallback.
Diffstat (limited to 'editors/code/src/debug.ts')
-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) {