diff --git a/codex-rs/tui/src/status_indicator_widget.rs b/codex-rs/tui/src/status_indicator_widget.rs index 8cca0fb0..fca9a23b 100644 --- a/codex-rs/tui/src/status_indicator_widget.rs +++ b/codex-rs/tui/src/status_indicator_widget.rs @@ -213,21 +213,21 @@ impl WidgetRef for StatusIndicatorWidget { // Plain rendering: no borders or padding so the live cell is visually indistinguishable from terminal scrollback. let inner_width = area.width as usize; - // Compose a single status line like: "▌ Working (Xs • Ctrl z to interrupt) " + // Compose a single status line like: "▌ Working (Xs • Ctrl c to interrupt) " let mut spans: Vec> = Vec::new(); spans.push(Span::styled("▌ ", Style::default().fg(Color::Cyan))); // Animated header after the left bar spans.extend(animated_spans); // Space between header and bracket block spans.push(Span::raw(" ")); - // Non-animated, dim bracket content, with only "Ctrl z" bold + // Non-animated, dim bracket content, with only "Ctrl c" bold let bracket_prefix = format!("({elapsed}s • "); spans.push(Span::styled( bracket_prefix, Style::default().fg(Color::Gray).add_modifier(Modifier::DIM), )); spans.push(Span::styled( - "Ctrl z", + "Ctrl c", Style::default() .fg(Color::Gray) .add_modifier(Modifier::DIM | Modifier::BOLD),