Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
tui: render keyboard icon with emoji variation selector (⌨️)
Use emoji variation selector (VS16) for the keyboard icon so it consistently renders as emoji (⌨️) rather than text (⌨) across terminals.\n\nTouches TUI command rendering for unknown parsed commands. No behavior change beyond display.\n\nNote: Snapshot tests in codex-tui may need updating if they depend on this glyph.
  • Loading branch information
nornagon-openai committed Aug 26, 2025
commit c4e5be2a10fc59d7c64ca4b5d6020e6b71429e62
2 changes: 1 addition & 1 deletion codex-rs/tui/src/history_cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading