feat(choose): use `tab` to toggle selection

Resolves #200
This commit is contained in:
Kevin Pham 2022-10-14 17:16:42 +11:00 committed by Maas Lalani
parent 7a32dd579b
commit 57c8c90bfd
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
m.aborted = true
m.quitting = true
return m, tea.Quit
case " ", "x":
case " ", "tab", "x":
if m.limit == 1 {
break // no op
}