From eaa3969e681c1cea592777361183eb27c6c0a1a9 Mon Sep 17 00:00:00 2001 From: Ed Bayes Date: Tue, 12 Aug 2025 13:26:57 -0700 Subject: [PATCH] Show "Update plan" in TUI plan updates (#2192) ## Summary - Display "Update plan" instead of "Update to do" when the plan is updated in the TUI ## Testing - `just fmt` - `just fix` *(fails: E0658 `let` expressions in this position are unstable)* - `cargo test --all-features` *(fails: E0658 `let` expressions in this position are unstable)* ------ https://chatgpt.com/codex/tasks/task_i_6897f78fc5908322be488f02db42a5b9 --- codex-rs/tui/src/history_cell.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/tui/src/history_cell.rs b/codex-rs/tui/src/history_cell.rs index b49e5997..b31d5ff8 100644 --- a/codex-rs/tui/src/history_cell.rs +++ b/codex-rs/tui/src/history_cell.rs @@ -739,10 +739,10 @@ impl HistoryCell { let mut header: Vec = Vec::new(); header.push(Span::raw("📋")); header.push(Span::styled( - " Updated", + " Update plan", Style::default().add_modifier(Modifier::BOLD).magenta(), )); - header.push(Span::raw(" to do list [")); + header.push(Span::raw(" [")); if filled > 0 { header.push(Span::styled( "█".repeat(filled),