summaryrefslogtreecommitdiffstats
path: root/pkg/gui/types/keybindings.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/types/keybindings.go')
-rw-r--r--pkg/gui/types/keybindings.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/gui/types/keybindings.go b/pkg/gui/types/keybindings.go
index c945ce3ab..95978e762 100644
--- a/pkg/gui/types/keybindings.go
+++ b/pkg/gui/types/keybindings.go
@@ -17,6 +17,12 @@ type Binding struct {
Tag string // e.g. 'navigation'. Used for grouping things in the cheatsheet
OpensMenu bool
+ // If true, the keybinding will appear at the bottom of the screen. If
+ // the given view has no bindings with Display: true, the default keybindings
+ // will be displayed instead.
+ // TODO: implement this
+ Display bool
+
// to be displayed if the keybinding is highlighted from within a menu
Tooltip string
}