From 613d1cb46e03194efae6da7c450f3502c3c7520e Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Sun, 28 Apr 2024 02:22:33 -0500 Subject: [PATCH] fix(help): Fix help bubble not centering correctly --- help/help.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/help/help.go b/help/help.go index 8e5f77f..edb5a47 100644 --- a/help/help.go +++ b/help/help.go @@ -215,9 +215,8 @@ func (m Model) FullHelpView(groups [][]key.Binding) string { if m.Width > 0 && totalWidth > m.Width { break } + out = append(out, sep) } - - out = append(out, sep) } return lipgloss.JoinHorizontal(lipgloss.Top, out...)