tui: blank row after the slash-popup hint line

This commit is contained in:
patriceckhart 2026-04-19 15:36:47 +02:00
parent 4f2655a8b8
commit e9b466a1ce

View file

@ -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
}