diff --git a/cmd/suggest.go b/cmd/suggest.go index 8bc7cc8..1ae9c60 100644 --- a/cmd/suggest.go +++ b/cmd/suggest.go @@ -77,10 +77,6 @@ func (m *model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { if m.currentIdx > 0 { m.currentIdx-- } - case tea.KeyLeft: - if m.currentIdx > 0 { - m.currentIdx-- - } case tea.KeyDown: if m.currentIdx < len(m.choices)-1 { m.currentIdx++