From abef76bc87137203081faedd3c758796e8d6598d Mon Sep 17 00:00:00 2001 From: vsrs Date: Thu, 14 May 2020 17:32:24 +0300 Subject: Fix runnable naming in the client side fallback. --- editors/code/src/debug.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/code/src') 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 if (debugConfig.name === "run binary") { // The LSP side: crates\rust-analyzer\src\main_loop\handlers.rs, // fn to_lsp_runnable(...) with RunnableKind::Bin - debugConfig.name = `run binary '${path.basename(executable)}'`; + debugConfig.name = `run ${path.basename(executable)}`; } if (debugConfig.cwd) { -- cgit v1.2.3