Files
codex/codex-rs/tui2/docs/tui_viewport_and_history.md
Josh McKinney b093565bfb WIP: Rework TUI viewport, history printing, and selection/copy (#7601)
> large behavior change to how the TUI owns its viewport, history, and
suspend behavior.
> Core model is in place; a few items are still being polished before
this is ready to merge.

We've moved this over to a new tui2 crate from being directly on the tui
crate.
To enable use --enable tui2 (or the equivalent in your config.toml). See
https://developers.openai.com/codex/local-config#feature-flags

Note that this serves as a baseline for the changes that we're making to
be applied rapidly. Tui2 may not track later changes in the main tui.
It's experimental and may not be where we land on things.

---

## Summary

This PR moves the Codex TUI off of “cooperating” with the terminal’s
scrollback and onto a model
where the in‑memory transcript is the single source of truth. The TUI
now owns scrolling, selection,
copy, and suspend/exit printing based on that transcript, and only
writes to terminal scrollback in
append‑only fashion on suspend/exit. It also fixes streaming wrapping so
streamed responses reflow
with the viewport, and introduces configuration to control whether we
print history on suspend or
only on exit.

High‑level goals:

- Ensure history is complete, ordered, and never silently dropped.
- Print each logical history cell at most once into scrollback, even
with resizes and suspends.
- Make scrolling, selection, and copy match the visible transcript, not
the terminal’s notion of
  scrollback.
- Keep suspend/alt‑screen behavior predictable across terminals.

---

## Core Design Changes

### Transcript & viewport ownership

- Treat the transcript as a list of **cells** (user prompts, agent
messages, system/info rows,
  streaming segments).
- On each frame:
- Compute a **transcript region** as “full terminal frame minus the
bottom input area”.
- Flatten all cells into visual lines plus metadata (which cell + which
line within that cell).
- Use scroll state to choose which visual line is at the top of the
region.
  - Clear that region and draw just the visible slice of lines.
- The terminal’s scrollback is no longer part of the live layout
algorithm; it is only ever written
  to when we decide to print history.

### User message styling

- User prompts now render as clear blocks with:
  - A blank padding line above and below.
- A full‑width background for every line in the block (including the
prompt line itself).
- The same block styling is used when we print history into scrollback,
so the transcript looks
consistent whether you are in the TUI or scrolling back after
exit/suspend.

---

## Scrolling, Mouse, Selection, and Copy

### Scrolling

- Scrolling is defined in terms of the flattened transcript lines:
  - Mouse wheel scrolls up/down by fixed line increments.
  - PgUp/PgDn/Home/End operate on the same scroll model.
- The footer shows:
  - Whether you are “following live output” vs “scrolled up”.
  - Current scroll position (line / total).
- When there is no history yet, the bottom pane is **pegged high** and
gradually moves down as the
  transcript fills, matching the existing UX.

### Selection

- Click‑and‑drag defines a **linear selection** over transcript
line/column coordinates, not raw
  screen rows.
- Selection is **content‑anchored**:
- When you scroll, the selection moves with the underlying lines instead
of sticking to a fixed
    Y position.
- This holds both when scrolling manually and when new content streams
in, as long as you are in
    “follow” mode.
- The selection only covers the “transcript text” area:
  - Left gutter/prefix (bullets, markers) is intentionally excluded.
- This keeps copy/paste cleaner and avoids including structural margin
characters.

### Copy (`Ctrl+Y`)

- Introduce a small clipboard abstraction (`ClipboardManager`‑style) and
use a cross‑platform
  clipboard crate under the hood.
- When `Ctrl+Y` is pressed and a non‑empty selection exists:
- Re‑render the transcript region off‑screen using the same wrapping as
the visible viewport.
- Walk the selected line/column range over that buffer to reconstruct
the exact text:
    - Includes spaces between words.
    - Preserves empty lines within the selection.
  - Send the resulting text to the system clipboard.
- Show a short status message in the footer indicating success/failure.
- Copy is **best‑effort**:
- Clipboard failures (headless environment, sandbox, remote sessions)
are handled gracefully via
    status messages; they do not crash the TUI.
- Copy does *not* insert a new history entry; it only affects the status
bar.

---

## Streaming and Wrapping

### Previous behavior

Previously, streamed markdown:

- Was wrapped at a fixed width **at commit time** inside the streaming
collector.
- Those wrapped `Line<'static>` values were then wrapped again at
display time.
- As a result, streamed paragraphs could not “un‑wrap” when the terminal
width increased; they were
  permanently split according to the width at the start of the stream.

### New behavior

This PR implements the first step from
`codex-rs/tui/streaming_wrapping_design.md`:

- Streaming collector is constructed **without** a fixed width for
wrapping.
  - It still:
    - Buffers the full markdown source for the current stream.
    - Commits only at newline boundaries.
    - Emits logical lines as new content becomes available.
- Agent message cells now wrap streamed content only at **display
time**, based on the current
  viewport width, just like non‑streaming messages.
- Consequences:
  - Streamed responses reflow correctly when the terminal is resized.
- Animation steps are per logical line instead of per “pre‑wrapped”
visual line; this makes some
commits slightly larger but keeps the behavior simple and predictable.

Streaming responses are still represented as a sequence of logical
history entries (first line +
continuations) and integrate with the same scrolling, selection, and
printing model.

---

## Printing History on Suspend and Exit

### High‑water mark and append‑only scrollback

- Introduce a **cell‑based high‑water mark** (`printed_history_cells`)
on the transcript:
- Represents “how many cells at the front of the transcript have already
been printed”.
  - Completely independent of wrapped line counts or terminal geometry.
- Whenever we print history (suspend or exit):
- Take the suffix of `transcript_cells` beyond `printed_history_cells`.
  - Render just that suffix into styled lines at the **current** width.
  - Write those lines to stdout.
  - Advance `printed_history_cells` to cover all cells we just printed.
- Older cells are never re‑rendered for scrollback. They stay in
whatever wrapping they had when
printed, which is acceptable as long as the logical content is present
once.

### Suspend (`Ctrl+Z`)

- On suspend:
  - Leave alt screen if active and restore normal terminal modes.
- Render the not‑yet‑printed suffix of the transcript and append it to
normal scrollback.
  - Advance the high‑water mark.
  - Suspend the process.
- On resume (`fg`):
  - Re‑enter the TUI mode (alt screen + input modes).
- Clear the viewport region and fully redraw from in‑memory transcript
and state.

This gives predictable behavior across terminals without trying to
maintain scrollback live.

### Exit

- On exit:
  - Render any remaining unprinted cells once and write them to stdout.
- Add an extra blank line after the final Codex history cell before
printing token usage, so the
    transcript and usage info are visually separated.
- If you never suspended, exit prints the entire transcript exactly
once.
- If you suspended one or more times, exit prints only the cells
appended after the last suspend.

---

## Configuration: Suspend Printing

This PR also adds configuration to control **when** we print history:

- New TUI config option to gate printing on suspend:
  - At minimum:
- `print_on_suspend = true` – current behavior: print new history at
each suspend *and* on exit.
    - `print_on_suspend = false` – only print on exit.
- Default is tuned to preserve current behavior, but this can be
revisited based on feedback.
- The config is respected in the suspend path:
- If disabled, suspend only restores terminal modes and stops rendering
but does not print new
    history.
  - Exit still prints the full not‑yet‑printed suffix once.

This keeps the core viewport logic agnostic to preference, while letting
users who care about
quiet scrollback opt out of suspend printing.

---

## Tradeoffs

What we gain:

- A single authoritative history model (the in‑memory transcript).
- Deterministic viewport rendering independent of terminal quirks.
- Suspend/exit flows that:
  - Print each logical history cell exactly once.
  - Work across resizes and different terminals.
  - Interact cleanly with alt screen and raw‑mode toggling.
- Consistent, content‑anchored scrolling, selection, and copy.
- Streaming messages that reflow correctly with the viewport width.

What we accept:

- Scrollback may contain older cells wrapped differently than newer
ones.
- Streaming responses appear in scrollback as a sequence of blocks
corresponding to their streaming
  structure, not as a single retroactively reflowed paragraph.
- We do not attempt to rewrite or reflow already‑printed scrollback.

For deeper rationale and diagrams, see
`docs/tui_viewport_and_history.md` and
`codex-rs/tui/streaming_wrapping_design.md`.

---

## Still to Do Before This PR Is Ready

These are scoped to this PR (not long‑term future work):

- [ ] **Streaming wrapping polish**
  - Double‑check all streaming paths use display‑time wrapping only.
  - Ensure tests cover resizing after streaming has started.

- [ ] **Suspend printing config**
- Finalize config shape and default (keep existing behavior vs opt‑out).
- Wire config through TUI startup and document it in the appropriate
config docs.

- [x] **Bottom pane positioning**
- Ensure the bottom pane is pegged high when there’s no history and
smoothly moves down as the
transcript fills, matching the current behavior across startup and
resume.

- [x] **Transcript mouse scrolling**
- Re‑enable wheel‑based transcript scrolling on top of the new scroll
model.
- Make sure mouse scroll does not get confused with “alternate scroll”
modes from terminals.

- [x] **Mouse selection vs streaming**
- When selection is active, stop auto‑scrolling on streaming so the
selection remains stable on
    the selected content.
- Ensure that when streaming continues after selection is cleared,
“follow latest output” mode
    resumes correctly.

- [ ] **Auto‑scroll during drag**
- While the user is dragging a selection, auto‑scroll when the cursor is
at/near the top or bottom
of the transcript viewport to allow selecting beyond the current visible
window.

- [ ] **Feature flag / rollout**
- Investigate gating the new viewport/history behavior behind a feature
flag for initial rollout,
so we can fall back to the old behavior if needed during early testing.

- [ ] **Before/after videos**
  - Capture short clips showing:
    - Scrolling (mouse + keys).
    - Selection and copy.
    - Streaming behavior under resize.
    - Suspend/resume and exit printing.
  - Use these to validate UX and share context in the PR discussion.
2025-12-15 17:20:53 -08:00

22 KiB
Raw Blame History

TUI2 Viewport, Transcript, and History Design Notes

This document describes the viewport and history model we are implementing in the new codex-rs/tui2 crate. It builds on lessons from the legacy TUI and explains why we moved away from directly writing history into terminal scrollback.

The target audience is Codex developers and curious contributors who want to understand or critique how TUI2 owns its viewport, scrollback, and suspend behavior.

Unless stated otherwise, references to “the TUI” in this document mean the TUI2 implementation; when we mean the legacy TUI specifically, we call it out explicitly.


1. Problem Overview

Historically, the legacy TUI tried to “cooperate” with the terminals own scrollback:

  • The inline viewport sat somewhere above the bottom of the screen.
  • When new history arrived, we tried to insert it directly into the terminal scrollback above the viewport.
  • On certain transitions (e.g. switching sessions, overlays), we cleared and rewrote portions of the screen from scratch.

This had several failure modes:

  • Terminaldependent behavior.

    • Different terminals handle scroll regions, clears, and resize semantics differently.
    • What looked correct in one terminal could drop or duplicate content in another.
  • Resizes and layout churn.

    • The TUI reacts to resizes, focus changes, and overlay transitions.
    • When the viewport moved or its size changed, our attempts to keep scrollback “aligned” with the inmemory history could go out of sync.
    • In practice this meant:
      • Some lines were lost or overwritten.
      • Others were duplicated or appeared in unexpected places.
  • “Clear and rewrite everything” didnt save us.

    • We briefly tried a strategy of clearing large regions (or the full screen) and rerendering history when the layout changed.
    • This ran into two issues:
      • Terminals treat full clears differently. For example, Terminal.app often leaves the cleared screen as a “page” at the top of scrollback, some terminals interpret only a subset of the ANSI clear/scrollback codes, and others (like iTerm2) gate “clear full scrollback” behind explicit user consent.
      • Replaying a long session is expensive and still subject to timing/race conditions with user output (e.g. shell prompts) when we werent in alt screen.

The net result: the legacy TUI could not reliably guarantee “the history you see on screen is complete, in order, and appears exactly once” across terminals, resizes, suspend/resume, and overlay transitions.


2. Goals

The redesign is guided by a few explicit goals:

  1. Codex, not the terminal, owns the viewport.

    • The inmemory transcript (a list of history entries) is the single source of truth for whats on screen.
    • The TUI decides how to map that transcript into the current viewport; scrollback becomes an output target, not an extra data structure we try to maintain.
  2. History must be correct, ordered, and never silently dropped.

    • Every logical history cell should either:
      • Be visible in the TUI, or
      • Have been printed into scrollback as part of a suspend/exit flow.
    • We would rather (rarely) duplicate content than risk losing it.
  3. Avoid unnecessary duplication.

    • When emitting history to scrollback (on suspend or exit), print each logical cells content at most once.
    • Streaming cells are allowed to be “reseen” as they grow, but finished cells should not keep reappearing.
  4. Behave sensibly under resizes.

    • TUI rendering should reflow to the current width on every frame.
    • History printed to scrollback may have been wrapped at different widths over time; that is acceptable, but it must not cause missing content or unbounded duplication.
  5. Suspend/altscreen interaction is predictable.

    • Ctrl+Z should:
      • Cleanly exit alt screen, if active.
      • Print a consistent transcript prefix into normal scrollback.
      • Resume with the TUI fully redrawn, without stale artifacts.

3. New Viewport & Transcript Model

3.1 Transcript as a logical sequence of cells

At a high level, the TUI transcript is a list of “cells”, each representing one logical thing in the conversation:

  • A user prompt (with padding and a distinct background).
  • An agent response (which may arrive in multiple streaming chunks).
  • System or info rows (session headers, migration banners, reasoning summaries, etc.).

Each cell knows how to draw itself for a given width: how many lines it needs, what prefixes to use, how to style its content. The transcript itself is purely logical:

  • It has no scrollback coordinates or terminal state baked into it.
  • It can be rerendered for any viewport width.

The TUIs job is to take this logical sequence and decide how much of it fits into the current viewport, and how it should be wrapped and styled on screen.

3.2 Building viewport lines from the transcript

To render the main transcript area above the composer, the TUI:

  1. Defines a “transcript region” as the full frame minus the height of the bottom input area.
  2. Flattens all cells into a list of visual lines, remembering for each visual line which cell it came from and which line within that cell it corresponds to.
  3. Uses this flattened list plus a scroll position to decide which visual line should appear at the top of the region.
  4. Clears the transcript region and draws the visible slice of lines into it.
  5. For user messages, paints the entire row background (including padding lines) so the user block stands out even when it does not fill the whole width.
  6. Applies selection styling and other overlays on top of the rendered lines.

Scrolling (mouse wheel, PgUp/PgDn, Home/End) operates entirely in terms of these flattened lines and the current scroll anchor. The terminals own scrollback is not part of this calculation; it only ever sees fully rendered frames.

3.3 Alternate screen, overlays, and redraw guarantees

The TUI uses the terminals alternate screen for:

  • The main interactive chat session (so the viewport can cover the full terminal).
  • Fullscreen overlays such as the transcript pager, diff view, model migration screen, and onboarding.

Conceptually:

  • Entering alt screen:

    • Switches the terminal into alt screen and expands the viewport to cover the full terminal.
    • Clears that altscreen buffer.
  • Leaving alt screen:

    • Disables “alternate scroll” so mouse wheel events behave predictably.
    • Returns to the normal screen.
  • On leaving overlays and on resuming from suspend, the TUI viewport is explicitly cleared and fully redrawn:

    • This prevents stale overlay content or shell output from lingering in the TUI area.
    • The next frame reconstructs the UI entirely from the inmemory transcript and other state, not from whatever the terminal happened to remember.

Alt screen is therefore treated as a temporary render target. The only authoritative copy of the UI is the inmemory state.


4. Mouse, Selection, and Scrolling

Mouse interaction is a firstclass part of the new design:

  • Scrolling.

    • Mouse wheel scrolls the transcript in fixed line increments.
    • Keyboard shortcuts (PgUp/PgDn/Home/End) use the same scroll model, so the footer can show consistent hints regardless of input device.
  • Selection.

    • A clickanddrag gesture defines a linear text selection in terms of the flattened transcript lines (not raw buffer coordinates).
    • Selection tracks the content rather than a fixed screen row. When the transcript scrolls, the selection moves along with the underlying lines instead of staying glued to a particular Y position.
    • The selection only covers the “transcript text” area; it intentionally skips the left gutter that we use for bullets/prefixes.
  • Copy.

    • When the user triggers copy, the TUI rerenders just the transcript region offscreen using the same wrapping as the visible view.
    • It then walks the selected lines and columns in that offscreen buffer to reconstruct the exact text region the user highlighted (including internal spaces and empty lines).
    • That text is sent to the system clipboard and a status footer indicates success or failure.

Because scrolling, selection, and copy all operate on the same flattened transcript representation, they remain consistent even as the viewport resizes or the chat composer grows/shrinks. Owning our own scrolling also means we must own mouse interactions endtoend: if we left scrolling entirely to the terminal, we could not reliably line up selections with transcript content or avoid accidentally copying gutter/margin characters instead of just the conversation text.


5. Printing History to Scrollback

We still want the final session (and suspend points) to appear in the users normal scrollback, but we no longer try to maintain scrollback in lockstep with the TUI frame. Instead, we treat scrollback as an appendonly log of logical transcript cells.

In practice this means:

  • The TUI may print history both when you suspend (Ctrl+Z) and when you exit.
  • Some users may prefer to only print on exit (for example to keep scrollback quieter during long sessions). The current design anticipates gating suspendtime printing behind a config toggle so that this behavior can be made optin or optout without touching the core viewport logic, but that switch has not been implemented yet.

5.1 Cellbased highwater mark

Internally, the TUI keeps a simple “highwater mark” for history printing:

  • Think of this as “how many cells at the front of the transcript have already been sent to scrollback.”
  • It is just a counter over the logical transcript, not over wrapped lines.
  • It moves forward only when we have actually printed more history.

This means we never try to guess “how many terminal lines have already been printed”; we only remember that “the first N logical entries are done.”

5.2 Rendering new cells for scrollback

When we need to print history (on suspend or exit), we:

  1. Take the suffix of the transcript that lies beyond the highwater mark.
  2. Render just that suffix into styled lines at the current terminal width.
  3. Write those lines to stdout.
  4. Advance the highwater mark to include all cells we just printed.

Older cells are never rerendered for scrollback; they remain in whatever wrapping they had when they were first printed. This avoids the linecountbased bugs we had before while still allowing the onscreen TUI to reflow freely.

5.3 Suspend (Ctrl+Z) flow

On suspend (typically Ctrl+Z on Unix):

  • Before yielding control back to the shell, the TUI:
    • Leaves alt screen if it is active and restores normal terminal modes.
    • Determines which transcript cells have not yet been printed and renders them for the current width.
    • Prints those new lines once into normal scrollback.
    • Marks those cells as printed in the highwater mark.
    • Finally, sends the process to the background.

On fg, the process resumes, reenters TUI modes, and redraws the viewport from the inmemory transcript. The history printed during suspend stays in scrollback and is not touched again.

5.4 Exit flow

When the TUI exits, we follow the same principle:

  • We compute the suffix of the transcript that has not yet been printed (taking into account any prior suspends).
  • We render just that suffix to styled lines at the current width.
  • The outer main function leaves alt screen, restores the terminal, and prints those lines, plus a blank line and token usage summary.

If you never suspended, exit prints the entire transcript once. If you did suspend one or more times, exit prints only the cells appended after the last suspend. In both cases, each logical conversation entry reaches scrollback exactly once.


6. Streaming, Width Changes, and Tradeoffs

6.1 Streaming cells

Streaming agent responses are represented as a sequence of history entries:

  • The first chunk produces a “first line” entry for the message.
  • Subsequent chunks produce continuation entries that extend that message.

From the history/scrollback perspective:

  • Each streaming chunk is just another entry in the logical transcript.
  • The highwater mark is a simple count of how many entries at the front of the transcript have already been printed.
  • As new streaming chunks arrive, they are appended as new entries and will be included the next time we print history on suspend or exit.

We do not attempt to reprint or retroactively merge older chunks. In scrollback you will see the streaming response as a series of discrete blocks, matching the internal history structure.

Today, streaming rendering still “bakes in” some width at the time chunks are committed: line breaks for the streaming path are computed using the width that was active at the time, and stored in the intermediate representation. This is a known limitation and is called out in more detail in codex-rs/tui2/docs/streaming_wrapping_design.md; a followup change will make streaming behavior match the rest of the transcript more closely (wrap only at display time, not at commit time).

6.2 Width changes over time

Because we now use a celllevel highwater mark instead of a visual linecount, width changes are handled gracefully:

  • On every suspend/exit, we render the notyetprinted suffix of the transcript at the current width and append those lines.
  • Previously printed entries remain in scrollback with whatever wrapping they had at the time they were printed.
  • We no longer rely on “N lines printed before, therefore skip N lines of the newly wrapped transcript,” which was the source of dropped and duplicated content when widths changed.

This does mean scrollback can contain older cells wrapped for narrower or wider widths than the final terminal size, but:

  • Each logical cells content appears exactly once.
  • New cells are appendonly and never overwrite or implicitly “shrink” earlier content.
  • The onscreen TUI always reflows to the current width independently of scrollback.

If we later choose to also reemit the “currently streaming” cell when printing on suspend (to make sure the latest chunk of a long answer is always visible in scrollback), that would intentionally duplicate a small number of lines at the boundary of that cell. The design assumes any such behavior would be controlled by configuration (for example, by disabling suspendtime printing entirely for users who prefer only exittime output).

6.3 Why not reflow scrollback?

In theory we could try to reflow alreadyprinted content when widths change by:

  • Recomputing the entire transcript at the new width, and
  • Printing diffs that “rewrite” old regions in scrollback.

In practice, this runs into the same issues that motivated the redesign:

  • Terminals treat full clears and scroll regions differently.
  • There is no portable way to “rewrite” arbitrary portions of scrollback above the visible buffer.
  • Interleaving user output (e.g. shell prompts after suspend) makes it impossible to reliably reconstruct the original scrollback structure.

We therefore deliberately accept that scrollback is appendonly and not subject to reflow; correctness is measured in terms of logical transcript content, not pixelperfect layout.


7. Backtrack and Overlays (Context)

While this document is focused on viewport and history, its worth mentioning a few related behaviors that rely on the same model.

7.1 Transcript overlay and backtrack

The transcript overlay (pager) is a fullscreen view of the same logical transcript:

  • When opened, it takes a snapshot of the current transcript and renders it in an altscreen overlay.
  • Backtrack mode (Esc sequences) walks backwards through user messages in that snapshot and highlights the candidate “edit from here” point.
  • Confirming a backtrack request forks the conversation on the server and trims the inmemory transcript so that only history up to the chosen user message remains, then rerenders that prefix in the main view.

The overlay is purely a different view of the same transcript; it never infers anything from scrollback.


8. Summary of Tradeoffs

What we gain:

  • The TUI has a clear, single source of truth for history (the inmemory transcript).
  • Viewport rendering is deterministic and independent of scrollback.
  • Suspend and exit flows:
    • Print each logical history cell exactly once.
    • Are robust to terminal width changes.
    • Interact cleanly with alt screen and rawmode toggling.
  • Streaming, overlays, selection, and backtrack all share the same logical history model.
  • Because cells are always rerendered live from the transcript, percell interactions can become richer over time. Instead of treating the transcript as “dead text”, we can make individual entries interactive after they are rendered: expanding or contracting tool calls, diffs, or reasoning summaries in place, jum…truncated… ***

9. TUI2 Implementation Notes

This section maps the design above onto the codex-rs/tui2 crate so future viewport work has concrete code pointers.

9.1 Transcript state and layout

The main app struct (codex-rs/tui2/src/app.rs) tracks the transcript and viewport state with:

  • transcript_cells: Vec<Arc<dyn HistoryCell>> the logical history.
  • transcript_scroll: TranscriptScroll whether the viewport is pinned to the bottom or anchored at a specific cell/line pair.
  • transcript_selection: TranscriptSelection a selection expressed in screen coordinates over the flattened transcript region.
  • transcript_view_top / transcript_total_lines the current viewports top line index and total number of wrapped lines for the inline transcript area.

9.2 Rendering, wrapping, and selection

App::render_transcript_cells defines the transcript region, builds flattened lines via App::build_transcript_lines, wraps them with word_wrap_lines_borrowed from codex-rs/tui2/src/wrapping.rs, and applies selection via apply_transcript_selection before writing to the frame buffer.

Streaming wrapping details live in codex-rs/tui2/docs/streaming_wrapping_design.md.

Mouse handling lives in App::handle_mouse_event, keyboard scrolling in App::handle_key_event, selection rendering in App::apply_transcript_selection, and copy in App::copy_transcript_selection plus codex-rs/tui2/src/clipboard_copy.rs. Scroll/selection UI state is forwarded through ChatWidget::set_transcript_ui_state, BottomPane::set_transcript_ui_state, and ChatComposer::footer_props, with footer text assembled in codex-rs/tui2/src/bottom_pane/footer.rs.

9.4 Exit transcript output

App::run returns session_lines on AppExitInfo after flattening with App::build_transcript_lines and converting to ANSI via App::render_lines_to_ansi. The CLI prints those lines before the token usage and resume hints.

10. Future Work and Open Questions

This section collects design questions that follow naturally from the current model and are worth explicit discussion before we commit to further UI changes.

  • “Scroll mode” vs “live follow” UI.

    • We already distinguish “scrolled away from bottom” vs “following the latest output” in the footer and scroll state. Do we need a more explicit “scroll mode vs live mode” affordance (e.g., a dedicated indicator or toggle), or is the current behavior sufficient and adding more chrome would be noise?
  • Ephemeral scroll indicator.

    • For long sessions, a more visible sense of “where am I?” could help. One option is a minimalist scrollbar that appears while the user is actively scrolling and fades out when idle. A full “minimap” is probably too heavy for a TUI given the limited vertical space, but we could imagine adding simple markers along the scrollbar to show where prior prompts occurred, or where text search matches are, without trying to render a full preview of the buffer.
  • Selection affordances.

    • Today, the primary hint that selection is active is the reversed text and the “Ctrl+Y copy selection” footer text. Do we want an explicit “Selecting… (Esc to cancel)” status while a drag is in progress, or would that be redundant/clutter for most users?
  • Suspend banners in scrollback.

    • When printing history on suspend, should we also emit a small banner such as --- codex suspended; history up to here --- to make those boundaries obvious in scrollback? This would slightly increase noise but could make multisuspend sessions easier to read.
  • Configuring suspend printing behavior.

    • The design already assumes that suspendtime printing can be gated by config. Questions to resolve:
      • Should printing on suspend be on or off by default?
      • Should we support multiple modes (e.g., “off”, “print all new cells”, “print streaming cell tail only”) or keep it binary?
  • Streaming duplication at the edges.

    • If we later choose to always reemit the “currently streaming” message when printing on suspend, we would intentionally allow a small amount of duplication at the boundary of that message (for example, its last line appearing twice across suspends). Is that acceptable if it improves the readability of long streaming answers in scrollback, and should the ability to disable suspendtime printing be our escape hatch for users who care about exact deduplication?***