summaryrefslogtreecommitdiff
path: root/pkg/gui/cheatsheet.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/cheatsheet.go')
-rw-r--r--pkg/gui/cheatsheet.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/gui/cheatsheet.go b/pkg/gui/cheatsheet.go
index af6d7d9..43020a5 100644
--- a/pkg/gui/cheatsheet.go
+++ b/pkg/gui/cheatsheet.go
@@ -17,10 +17,9 @@ func (gui *Gui) openCheatSheetView(g *gocui.Gui, v *gocui.View) error {
return err
}
v.Title = cheatSheetViewFeature.Title
- fmt.Fprintln(v, " ")
for _, k := range gui.KeyBindings {
if k.View == mainViewFeature.Name || k.View == "" {
- binding := " " + k.Display + ": " + k.Description
+ binding := " " + cyan.Sprint(k.Display) + ": " + k.Description
fmt.Fprintln(v, binding)
}
}