From a28d2060b3f0a36e890a0aee8ac5b477296a617e Mon Sep 17 00:00:00 2001 From: Adrien Waksberg Date: Tue, 14 Jul 2020 18:53:30 +0200 Subject: [PATCH] fix: minor change --- gpm/cli.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gpm/cli.go b/gpm/cli.go index 8e1aee0..2e2ced4 100644 --- a/gpm/cli.go +++ b/gpm/cli.go @@ -171,11 +171,11 @@ func (c *Cli) GroupsBox() string { func (c *Cli) HelpBox() { p := widgets.NewParagraph() p.SetRect(25, 0, 80, 20) - p.Title = "Short keys" + p.Title = "Short cuts" p.Text = `[](fg:yellow) clear current search [ ](fg:yellow) select entry or group -[ ](fg:yellow) move cursor to up -[ ](fg:yellow) move cursor to down +[ ](fg:yellow) move cursor up +[ ](fg:yellow) move cursor down [h ](fg:yellow) print this help message [q ](fg:yellow) quit [g ](fg:yellow) filter the entries by group @@ -336,7 +336,7 @@ func (c *Cli) ListEntries(ch chan<- bool) { l.Rows = append(l.Rows, entry.Name) } ui.Clear() - c.NotificationBox("pess h to view short keys", false) + c.NotificationBox("press h to view short cuts", false) } if len(entries) > 0 && index >= 0 && index < len(entries) {