codex-rs(tui): restore EditPrompt arm and clear merge conflict markers in chat_composer

This commit is contained in:
Rai (Michael Pokorny)
2025-06-24 18:21:53 -07:00
parent 30989812e6
commit d5668f158d
7 changed files with 65 additions and 32 deletions

View File

@@ -415,4 +415,8 @@ disable_mouse_capture = true # defaults to `false`
# The composer will expand up to this many lines; additional content will enable
# an internal scrollbar.
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}}"
```