agentydragon(tasks): add message_spacing and sender_break_line flags to TUI config; update history_cell renderer, docs, and tests

This commit is contained in:
Rai (Michael Pokorny)
2025-06-25 04:28:33 -07:00
parent 88d46eb754
commit a30a80d22a
4 changed files with 102 additions and 13 deletions

View File

@@ -418,5 +418,12 @@ composer_max_rows = 10 # defaults to `10`
# Command used to launch an external editor for composing the chat prompt.
# Defaults to `$VISUAL`, then `$EDITOR`, falling back to `nvim`.
editor = "${VISUAL:-${EDITOR:-nvim}}"
# Insert a blank line between messages for visual separation.
message_spacing = false # defaults to `false`
# Render the sender label on its own line above the message content.
sender_break_line = false # defaults to `false`
```