Ask
When a turn is submitted in the REPL, the model's first output line butts right up
against the submitted prompt with no separation, making it hard to see where the
response starts.
TUI fix (done)
src/readline.zig:278 wrote a single \r\n after Enter; now writes \r\n\r\n so
there is a blank-line gutter between the submitted prompt and whatever prints next.
Follow-up: GUI mirror
Per the TUI-first rule, the GUI/app transcript renderer must get the same gutter so
the two do not diverge. This issue tracks that mirror.
Refs
TUI change lands in the same follow-up branch; GUI mirror pending.
Ask
When a turn is submitted in the REPL, the model's first output line butts right up
against the submitted prompt with no separation, making it hard to see where the
response starts.
TUI fix (done)
src/readline.zig:278wrote a single\r\nafter Enter; now writes\r\n\r\nsothere is a blank-line gutter between the submitted prompt and whatever prints next.
Follow-up: GUI mirror
Per the TUI-first rule, the GUI/app transcript renderer must get the same gutter so
the two do not diverge. This issue tracks that mirror.
Refs
TUI change lands in the same follow-up branch; GUI mirror pending.