about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crates/rust-analyzer/src/main_loop/handlers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop/handlers.rs b/crates/rust-analyzer/src/main_loop/handlers.rs
index 76ed6f29ad9..a5d0cbe78db 100644
--- a/crates/rust-analyzer/src/main_loop/handlers.rs
+++ b/crates/rust-analyzer/src/main_loop/handlers.rs
@@ -1020,7 +1020,7 @@ fn to_lsp_runnable(
         RunnableKind::Bench { test_id } => format!("bench {}", test_id),
         RunnableKind::DocTest { test_id, .. } => format!("doctest {}", test_id),
         RunnableKind::Bin => {
-            target.map_or_else(|| "run binary".to_string(), |t| format!("run binary '{}'", t))
+            target.map_or_else(|| "run binary".to_string(), |t| format!("run {}", t))
         }
     };
     Ok(lsp_ext::Runnable {