Merge branch 'master' into beta

This commit is contained in:
Ayman Bagabas
2024-06-05 11:53:51 -04:00
12 changed files with 591 additions and 226 deletions
+5 -6
View File
@@ -81,10 +81,10 @@ func New(ctx tea.Context) Model {
ShortKey: keyStyle,
ShortDesc: descStyle,
ShortSeparator: sepStyle,
Ellipsis: sepStyle.Copy(),
FullKey: keyStyle.Copy(),
FullDesc: descStyle.Copy(),
FullSeparator: sepStyle.Copy(),
Ellipsis: sepStyle,
FullKey: keyStyle,
FullDesc: descStyle,
FullSeparator: sepStyle,
},
}
}
@@ -214,9 +214,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...)