Skip to content

Commit

Permalink
Add 'l' and 'h' to move panel
Browse files Browse the repository at this point in the history
  • Loading branch information
nakabonne committed May 6, 2020
1 parent 475e0e1 commit 0622576
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/gui/keybindings.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ func (g *Gui) grobalKeybind(event *tcell.EventKey) {
}

switch event.Rune() {
case 'l':
g.nextPanel()
case 'h':
g.prevPanel()
case 'q':
g.application.Stop()
case 'r':
Expand Down

0 comments on commit 0622576

Please sign in to comment.