Skip to content

Commit 71b1edf

Browse files
arimxyerclaude
andcommitted
Move config picker help text to dimmed footer
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0e070ac commit 71b1edf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

config.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,9 @@ func (m configModel) View() string {
5959
}
6060

6161
bold := lipgloss.NewStyle().Bold(true)
62+
dim := lipgloss.NewStyle().Faint(true)
6263

6364
var b strings.Builder
64-
b.WriteString("Configure sources (\u2191/\u2193 navigate, Space toggle, Enter save, q cancel):\n")
65-
b.WriteString("\n")
6665

6766
for i, item := range m.items {
6867
check := "x"
@@ -81,6 +80,10 @@ func (m configModel) View() string {
8180
b.WriteString("\n")
8281
}
8382

83+
b.WriteString("\n")
84+
b.WriteString(dim.Render(" \u2191/\u2193 navigate \u2022 space toggle \u2022 enter save \u2022 q cancel"))
85+
b.WriteString("\n")
86+
8487
return b.String()
8588
}
8689

0 commit comments

Comments
 (0)