diff --git a/internal/agent/modes/slash_suggest.go b/internal/agent/modes/slash_suggest.go index ffed9bb..c53b9c9 100644 --- a/internal/agent/modes/slash_suggest.go +++ b/internal/agent/modes/slash_suggest.go @@ -342,6 +342,9 @@ func (s *slashSuggester) Render(input string, th tui.Theme, width int) []string } } lines = append(lines, th.FG256(th.Muted, " ↑/↓ navigate · tab complete · enter run")) + // Blank row separates the popup from the status bar / editor + // below it so the hint line doesn't visually crash into them. + lines = append(lines, "") return lines }