Skip to content

Commit 29e7cc4

Browse files
author
{cocoide}
committed
Fix unexpected commit
1 parent 7181db0 commit 29e7cc4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cmd/suggest.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ func (m *model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
7777
if m.currentIdx > 0 {
7878
m.currentIdx--
7979
}
80-
case tea.KeyLeft:
81-
if m.currentIdx > 0 {
82-
m.currentIdx--
83-
}
8480
case tea.KeyDown:
8581
if m.currentIdx < len(m.choices)-1 {
8682
m.currentIdx++

0 commit comments

Comments
 (0)