Merged
Conversation
sayan-oai
approved these changes
Feb 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promotes the Steer feature from Experimental to Stable and enables it by default.
What is Steer mode?
Steer mode changes how message submission works in the TUI:
With Steer enabled (new default):
Entersubmits messages immediately, even when a task is runningTabqueues messages when a task is running (allows building up a queue)With Steer disabled (old behavior):
Enterqueues messages when a task is runningHow Steer vs Queue work
The key difference is in the submission behavior:
Steer mode (
steer_enabled = true):InputResult::Submitted→ sends immediately viasubmit_user_message()InputResult::Queued→ queues viaqueue_user_message()if a task is runningQueue mode (
steer_enabled = false, previous default):InputResult::Queued→ always queues when a task is runningInputResult::Queued→ queues when a task is runningImplementation details
The behavior is controlled in
ChatComposer::handle_key_event_without_popup():steer_enabledis true, Enter callshandle_submission(false)(submit immediately)steer_enabledis false, Enter callshandle_submission(true)(queue)See
codex-rs/tui/src/bottom_pane/chat_composer.rsfor the implementation.Documentation
For more details on the chat composer behavior, see:
codex-rs/core/src/features.rs