Fix refresh and add install script (#17)

* Fix refresh bug

* Add install script
This commit is contained in:
Dave Gallant
2020-07-07 23:07:09 -04:00
committed by GitHub
parent c9ba058ae6
commit 780f26245c
4 changed files with 17 additions and 11 deletions

View File

@@ -25,7 +25,7 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("Items", gocui.KeyEnter, gocui.ModNone, openItem); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyF5, gocui.ModNone, refreshFeeds); err != nil {
if err := g.SetKeybinding("", gocui.KeyCtrlR, gocui.ModNone, refreshFeeds); err != nil {
return err
}
return nil