Simplify scroll (#14)

This commit is contained in:
Dave Gallant
2020-07-04 16:51:29 -04:00
committed by GitHub
parent 820255a18d
commit 61f9c2d3ce
3 changed files with 15 additions and 4 deletions

View File

@@ -16,6 +16,9 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyCtrlQ, gocui.ModNone, quit); err != nil {
return err
}
if err := g.SetKeybinding("feeds", gocui.KeyEnter, gocui.ModNone, openFeed); err != nil {
return err
}