Skip to content

Commit

Permalink
add tab keybinding back in
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Jul 29, 2018
1 parent 5c271b8 commit 3790ef3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("", gocui.KeyArrowRight, gocui.ModNone, nextView); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyTab, gocui.ModNone, nextView); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyArrowLeft, gocui.ModNone, previousView); err != nil {
return err
}
Expand Down

0 comments on commit 3790ef3

Please sign in to comment.