@@ -20,7 +20,6 @@ use codex_core::protocol::StreamErrorEvent;
2020use codex_core:: protocol:: TaskCompleteEvent ;
2121use codex_core:: protocol:: TurnAbortReason ;
2222use codex_core:: protocol:: TurnDiffEvent ;
23- use codex_core:: protocol:: WebSearchBeginEvent ;
2423use codex_core:: protocol:: WebSearchEndEvent ;
2524use codex_protocol:: num_format:: format_with_separators;
2625use owo_colors:: OwoColorize ;
@@ -216,7 +215,6 @@ impl EventProcessor for EventProcessorWithHumanOutput {
216215 cwd. to_string_lossy( ) ,
217216 ) ;
218217 }
219- EventMsg :: ExecCommandOutputDelta ( _) => { }
220218 EventMsg :: ExecCommandEnd ( ExecCommandEndEvent {
221219 aggregated_output,
222220 duration,
@@ -283,7 +281,6 @@ impl EventProcessor for EventProcessorWithHumanOutput {
283281 }
284282 }
285283 }
286- EventMsg :: WebSearchBegin ( WebSearchBeginEvent { call_id : _ } ) => { }
287284 EventMsg :: WebSearchEnd ( WebSearchEndEvent { call_id : _, query } ) => {
288285 ts_msg ! ( self , "🌐 Searched: {query}" ) ;
289286 }
@@ -411,12 +408,6 @@ impl EventProcessor for EventProcessorWithHumanOutput {
411408 ) ;
412409 eprintln ! ( "{unified_diff}" ) ;
413410 }
414- EventMsg :: ExecApprovalRequest ( _) => {
415- // Should we exit?
416- }
417- EventMsg :: ApplyPatchApprovalRequest ( _) => {
418- // Should we exit?
419- }
420411 EventMsg :: AgentReasoning ( agent_reasoning_event) => {
421412 if self . show_agent_reasoning {
422413 ts_msg ! (
@@ -481,15 +472,6 @@ impl EventProcessor for EventProcessorWithHumanOutput {
481472 }
482473 }
483474 }
484- EventMsg :: GetHistoryEntryResponse ( _) => {
485- // Currently ignored in exec output.
486- }
487- EventMsg :: McpListToolsResponse ( _) => {
488- // Currently ignored in exec output.
489- }
490- EventMsg :: ListCustomPromptsResponse ( _) => {
491- // Currently ignored in exec output.
492- }
493475 EventMsg :: ViewImageToolCall ( view) => {
494476 ts_msg ! (
495477 self ,
@@ -510,15 +492,24 @@ impl EventProcessor for EventProcessorWithHumanOutput {
510492 }
511493 } ,
512494 EventMsg :: ShutdownComplete => return CodexStatus :: Shutdown ,
513- EventMsg :: ConversationPath ( _) => { }
514- EventMsg :: UserMessage ( _) => { }
515- EventMsg :: EnteredReviewMode ( _) => { }
516- EventMsg :: ExitedReviewMode ( _) => { }
517- EventMsg :: AgentMessageDelta ( _) => { }
518- EventMsg :: AgentReasoningDelta ( _) => { }
519- EventMsg :: AgentReasoningRawContentDelta ( _) => { }
520- EventMsg :: ItemStarted ( _) => { }
521- EventMsg :: ItemCompleted ( _) => { }
495+ EventMsg :: WebSearchBegin ( _)
496+ | EventMsg :: ExecApprovalRequest ( _)
497+ | EventMsg :: ApplyPatchApprovalRequest ( _)
498+ | EventMsg :: ExecCommandOutputDelta ( _)
499+ | EventMsg :: GetHistoryEntryResponse ( _)
500+ | EventMsg :: McpListToolsResponse ( _)
501+ | EventMsg :: ListCustomPromptsResponse ( _)
502+ | EventMsg :: ConversationPath ( _)
503+ | EventMsg :: UserMessage ( _)
504+ | EventMsg :: EnteredReviewMode ( _)
505+ | EventMsg :: ExitedReviewMode ( _)
506+ | EventMsg :: AgentMessageDelta ( _)
507+ | EventMsg :: AgentReasoningDelta ( _)
508+ | EventMsg :: AgentReasoningRawContentDelta ( _)
509+ | EventMsg :: ItemStarted ( _)
510+ | EventMsg :: ItemCompleted ( _)
511+ | EventMsg :: UndoCompleted ( _)
512+ | EventMsg :: UndoStarted ( _) => { }
522513 }
523514 CodexStatus :: Running
524515 }
0 commit comments