summaryrefslogtreecommitdiff
path: root/tui.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-31 13:38:48 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-31 13:38:48 +0300
commit88bf281dd9e52d85caaccb628520034783be7f98 (patch)
tree6bc2a5cb4503fd7b837ba5a6be0292065057a804 /tui.go
parent1022b099e43406fc329010e23ecb23c7167f438b (diff)
Feat: tool write_append
Diffstat (limited to 'tui.go')
-rw-r--r--tui.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/tui.go b/tui.go
index 6490629..c9788b7 100644
--- a/tui.go
+++ b/tui.go
@@ -1259,6 +1259,7 @@ func init() {
// cannot send msg in editMode or botRespMode
if event.Key() == tcell.KeyEscape && !editMode && !botRespMode {
msgText := textArea.GetText()
+ // TODO: add shellmode command -> output to the chat history, or at least have an option
if shellMode && msgText != "" {
// In shell mode, execute command instead of sending to LLM
executeCommandAndDisplay(msgText)