We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae080e5 commit 7318b7eCopy full SHA for 7318b7e
codex-rs/tui/src/chatwidget.rs
@@ -557,10 +557,8 @@ impl ChatWidget<'_> {
557
"-lc".to_string(),
558
cmdline.clone(),
559
];
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();
+ // Do not render parsed summaries for local bang commands; keep UI minimal.
+ let parsed: Vec<ParsedCommand> = Vec::new();
564
565
// Announce begin to set an active exec cell
566
self.app_event_tx
0 commit comments