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 b72072b commit 1f8a9b0Copy full SHA for 1f8a9b0
internal/tui/selector.go
@@ -80,7 +80,7 @@ func (m selectorModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
80
if m.cursor < len(m.filtered)-1 {
81
m.cursor++
82
}
83
- case "tab", " ":
+ case "tab":
84
if m.multiSelect && len(m.filtered) > 0 {
85
idx := m.findOriginalIndex(m.filtered[m.cursor])
86
m.checked[idx] = !m.checked[idx]
@@ -179,7 +179,7 @@ func (m selectorModel) View() string {
179
180
181
if m.multiSelect {
182
- b.WriteString(dimStyle.Render("\n\nTAB/SPACE to select, ENTER to confirm, ESC to cancel"))
+ b.WriteString(dimStyle.Render("\n\nTAB to select, ENTER to confirm, ESC to cancel"))
183
} else {
184
b.WriteString(dimStyle.Render("\n\nENTER to select, ESC to cancel"))
185
0 commit comments