1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

include global keybindings in menu

This commit is contained in:
Dawid Dziurla
2018-09-05 13:01:21 +02:00
parent 557009e660
commit 906f8e252e
7 changed files with 34 additions and 9 deletions

View File

@ -56,16 +56,19 @@ func (gui *Gui) GetKeybindings() []Binding {
Key: 'P',
Modifier: gocui.ModNone,
Handler: gui.pushFiles,
Description: gui.Tr.SLocalize("push"),
}, {
ViewName: "",
Key: 'p',
Modifier: gocui.ModNone,
Handler: gui.pullFiles,
Description: gui.Tr.SLocalize("pull"),
}, {
ViewName: "",
Key: 'R',
Modifier: gocui.ModNone,
Handler: gui.handleRefresh,
Description: gui.Tr.SLocalize("refresh"),
}, {
ViewName: "",
Key: '?',