Skip to content

Commit 7318b7e

Browse files
committed
Remove summary
1 parent ae080e5 commit 7318b7e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

codex-rs/tui/src/chatwidget.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -557,10 +557,8 @@ impl ChatWidget<'_> {
557557
"-lc".to_string(),
558558
cmdline.clone(),
559559
];
560-
// Parse for nicer presentation in the exec cell
561-
let parsed_core = codex_core::parse_command::parse_command(&command);
562-
let parsed: Vec<ParsedCommand> =
563-
parsed_core.into_iter().map(Into::into).collect();
560+
// Do not render parsed summaries for local bang commands; keep UI minimal.
561+
let parsed: Vec<ParsedCommand> = Vec::new();
564562

565563
// Announce begin to set an active exec cell
566564
self.app_event_tx

0 commit comments

Comments
 (0)