diff --git a/codex-rs/tui/src/chatwidget/snapshots/codex_tui__chatwidget__tests__interrupt_exec_marks_failed.snap b/codex-rs/tui/src/chatwidget/snapshots/codex_tui__chatwidget__tests__interrupt_exec_marks_failed.snap index 89ce848b..7f15f49b 100644 --- a/codex-rs/tui/src/chatwidget/snapshots/codex_tui__chatwidget__tests__interrupt_exec_marks_failed.snap +++ b/codex-rs/tui/src/chatwidget/snapshots/codex_tui__chatwidget__tests__interrupt_exec_marks_failed.snap @@ -3,4 +3,4 @@ source: tui/src/chatwidget/tests.rs expression: exec_blob --- >_ - ✗ ⌨  sleep 1 + ✗ ⌨️  sleep 1 diff --git a/codex-rs/tui/src/history_cell.rs b/codex-rs/tui/src/history_cell.rs index 079c853b..f7c257d3 100644 --- a/codex-rs/tui/src/history_cell.rs +++ b/codex-rs/tui/src/history_cell.rs @@ -396,7 +396,7 @@ fn new_parsed_command( ParsedCommand::Format { .. } => padded_emoji_with("✨", "Formatting"), ParsedCommand::Test { cmd } => padded_emoji_with("🧪", cmd), ParsedCommand::Lint { cmd, .. } => padded_emoji_with("🧹", cmd), - ParsedCommand::Unknown { cmd } => padded_emoji_with("⌨", cmd), + ParsedCommand::Unknown { cmd } => padded_emoji_with("⌨️", cmd), ParsedCommand::Noop { cmd } => padded_emoji_with("🔄", cmd), }; // Prefix: two spaces, marker, space. Continuations align under the text block.