We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae8ca99 commit 7899043Copy full SHA for 7899043
1 file changed
internal/model/view.go
@@ -353,6 +353,11 @@ func (m Model) renderFooter() string {
353
rightParts = append(rightParts, ui.GetStyleInfo().Render(" | 🔗 Deps"))
354
}
355
356
+ // Tree-only status
357
+ if m.treeOnly {
358
+ rightParts = append(rightParts, ui.GetStyleInfo().Render(" | 🌳 Tree"))
359
+ }
360
+
361
leftContent := lipgloss.JoinHorizontal(lipgloss.Top, leftParts...)
362
rightContent := lipgloss.JoinHorizontal(lipgloss.Top, rightParts...)
363
0 commit comments