Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion codex-rs/tui/src/exec_cell/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ impl ExecCell {
if self.is_active() {
spinner(self.active_start_time())
} else {
"•".into()
"•".dim()
},
" ".into(),
if self.is_active() {
Expand Down
10 changes: 5 additions & 5 deletions codex-rs/tui/src/history_cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl HistoryCell for ReasoningSummaryCell {
word_wrap_lines(
&summary_lines,
RtOptions::new(width as usize)
.initial_indent("• ".into())
.initial_indent("• ".dim().into())
.subsequent_indent(" ".into()),
)
}
Expand Down Expand Up @@ -200,7 +200,7 @@ impl HistoryCell for AgentMessageCell {
&self.lines,
RtOptions::new(width as usize)
.initial_indent(if self.is_first_line {
"• ".into()
"• ".dim().into()
} else {
" ".into()
})
Expand Down Expand Up @@ -901,7 +901,7 @@ pub(crate) fn new_mcp_tools_output(
}

pub(crate) fn new_info_event(message: String, hint: Option<String>) -> PlainHistoryCell {
let mut line = vec!["• ".into(), message.into()];
let mut line = vec!["• ".dim(), message.into()];
if let Some(hint) = hint {
line.push(" ".into());
line.push(hint.dark_gray());
Expand Down Expand Up @@ -964,7 +964,7 @@ impl HistoryCell for PlanUpdateCell {
};

let mut lines: Vec<Line<'static>> = vec![];
lines.push(vec!["• ".into(), "Updated Plan".bold()].into());
lines.push(vec!["• ".dim(), "Updated Plan".bold()].into());

let mut indented_lines = vec![];
let note = self
Expand Down Expand Up @@ -1036,7 +1036,7 @@ pub(crate) fn new_proposed_command(command: &[String]) -> PlainHistoryCell {
let cmd = strip_bash_lc_and_escape(command);

let mut lines: Vec<Line<'static>> = Vec::new();
lines.push(Line::from(vec!["• ".into(), "Proposed Command".bold()]));
lines.push(Line::from(vec!["• ".dim(), "Proposed Command".bold()]));

let highlighted_lines = crate::render::highlight::highlight_bash_to_lines(&cmd);
let initial_prefix: Span<'static> = " └ ".dim();
Expand Down
Loading