commands/termui.go 🔗
@@ -6,7 +6,6 @@ import (
)
func runTermUI(cmd *cobra.Command, args []string) error {
- //time.Sleep(10 * time.Second)
return termui.Run(repo)
}
Michael Muré created
commands/termui.go | 1 -
termui/termui.go | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
@@ -6,7 +6,6 @@ import (
)
func runTermUI(cmd *cobra.Command, args []string) error {
- //time.Sleep(10 * time.Second)
return termui.Run(repo)
}
@@ -93,7 +93,7 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("bugTable", gocui.KeyArrowRight, gocui.ModNone, nextPage); err != nil {
return err
}
- if err := g.SetKeybinding("bugTable", gocui.KeyPgup, gocui.ModNone, nextPage); err != nil {
+ if err := g.SetKeybinding("bugTable", gocui.KeyPgdn, gocui.ModNone, nextPage); err != nil {
return err
}