add '?' keybinding to view keybindings for a panel

This commit is contained in:
Jesse Duffield 2019-06-29 08:55:27 +10:00
parent 02753cee61
commit 3105c03bbe

View file

@ -113,6 +113,12 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Modifier: gocui.ModNone,
Handler: gui.handleCreateOptionsMenu,
},
{
ViewName: "",
Key: '?',
Modifier: gocui.ModNone,
Handler: gui.handleCreateOptionsMenu,
},
{
ViewName: "",
Key: 'X',