Skip to content

Commit 13a94e0

Browse files
authored
Merge pull request #53 from cocoide/develop
Fix unexpected commit
2 parents 7181db0 + 29e7cc4 commit 13a94e0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cmd/suggest.go

-4
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)