From d2c265c71fe76060aa3eaee9693d73f57c9306e9 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Thu, 5 Jun 2025 12:29:18 -0400 Subject: [PATCH] debugger: Change some text in the launch tab (#32170) I think using `Debugger Program` and `~/bin/debugger` here makes it seem like that field is for specifying the path to the debugger itself, and not the program being debugged. Release Notes: - N/A --- crates/debugger_ui/src/new_process_modal.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/debugger_ui/src/new_process_modal.rs b/crates/debugger_ui/src/new_process_modal.rs index 5c6cac6564d4c60a238bd151d88d63ac71439d16..1c6166cfac532f1346d96c6ebe85b506b7ec93c2 100644 --- a/crates/debugger_ui/src/new_process_modal.rs +++ b/crates/debugger_ui/src/new_process_modal.rs @@ -831,7 +831,7 @@ impl LaunchMode { pub(super) fn new(window: &mut Window, cx: &mut App) -> Entity { let program = cx.new(|cx| Editor::single_line(window, cx)); program.update(cx, |this, cx| { - this.set_placeholder_text("ENV=Zed ~/bin/debugger --launch", cx); + this.set_placeholder_text("ENV=Zed ~/bin/program --option", cx); }); let cwd = cx.new(|cx| Editor::single_line(window, cx)); @@ -919,7 +919,7 @@ impl LaunchMode { .child(adapter_menu), ) .child( - Label::new("Debugger Program") + Label::new("Program") .size(ui::LabelSize::Small) .color(Color::Muted), )