From ff1af01fd7e3777b94e5b60eb3b38d93dec23d1b Mon Sep 17 00:00:00 2001 From: patriceckhart Date: Mon, 4 May 2026 16:55:33 +0200 Subject: [PATCH] tui: tighten live tool/streaming spacing --- internal/tui/view.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/tui/view.go b/internal/tui/view.go index 122844c..f2af22a 100644 --- a/internal/tui/view.go +++ b/internal/tui/view.go @@ -197,7 +197,7 @@ func (v *View) BuildLive(width int) []string { out = append(out, indent+w) } } - out = append(out, "") + // out = append(out, "") } finalised := map[string]bool{} for _, m := range v.Messages { @@ -215,11 +215,11 @@ func (v *View) BuildLive(width int) []string { continue } out = append(out, v.renderToolCall(tc, width)...) - out = append(out, "") + // out = append(out, "") } if v.Err != "" { out = append(out, v.Theme.FG256(v.Theme.Error, "✖ "+v.Err)) - out = append(out, "") + // out = append(out, "") } return out }