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.
j
h
1 parent 7edea86 commit 1dd62feCopy full SHA for 1dd62fe
ui.go
@@ -59,8 +59,6 @@ func (ui *ui) handleKeyEvent(ev keyboard.KeyEvent) (bool, error) {
59
case ev.Key == keyboard.KeyArrowUp:
60
fallthrough
61
case ev.Key == keyboard.KeyArrowLeft:
62
- fallthrough
63
- case ev.Rune == 'h':
64
ui.view.selectPrevious()
65
fmt.Fprintf(ui.wf, "→ %s\n", ui.view.selectedBranchWithColor())
66
ui.wf.Flush()
@@ -69,8 +67,6 @@ func (ui *ui) handleKeyEvent(ev keyboard.KeyEvent) (bool, error) {
69
67
case ev.Key == keyboard.KeyArrowDown:
70
68
71
case ev.Key == keyboard.KeyArrowRight:
72
73
- case ev.Rune == 'j':
74
ui.view.selectNext()
75
76
0 commit comments