Skip to content

Commit abef76b

Browse files
committed
Fix runnable naming in the client side fallback.
1 parent 51d5a08 commit abef76b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export async function getDebugConfiguration(ctx: Ctx, config: ra.Runnable): Prom
9090
if (debugConfig.name === "run binary") {
9191
// The LSP side: crates\rust-analyzer\src\main_loop\handlers.rs,
9292
// fn to_lsp_runnable(...) with RunnableKind::Bin
93-
debugConfig.name = `run binary '${path.basename(executable)}'`;
93+
debugConfig.name = `run ${path.basename(executable)}`;
9494
}
9595

9696
if (debugConfig.cwd) {

0 commit comments

Comments
 (0)