mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-20 05:19:24 +02:00
change key from 'H' to '?'
This commit is contained in:
parent
2416f585ce
commit
6a99d36ae1
@ -185,7 +185,7 @@ func (gui *Gui) renderfilesOptions(g *gocui.Gui, file *commands.File) error {
|
||||
"e": gui.Tr.SLocalize("edit"),
|
||||
"a": gui.Tr.SLocalize("toggleStagedAll"),
|
||||
"PgUp/PgDn": gui.Tr.SLocalize("scroll"),
|
||||
"H": gui.Tr.SLocalize("help"),
|
||||
"?": gui.Tr.SLocalize("help"),
|
||||
}
|
||||
if gui.State.HasMergeConflicts {
|
||||
optionsMap["a"] = gui.Tr.SLocalize("abortMerge")
|
||||
|
@ -26,7 +26,7 @@ func (gui *Gui) getKeybindings() []Binding {
|
||||
{ViewName: "", Key: 'P', Modifier: gocui.ModNone, Handler: gui.pushFiles},
|
||||
{ViewName: "", Key: 'p', Modifier: gocui.ModNone, Handler: gui.pullFiles},
|
||||
{ViewName: "", Key: 'R', Modifier: gocui.ModNone, Handler: gui.handleRefresh},
|
||||
{ViewName: "", Key: 'H', Modifier: gocui.ModNone, Handler: gui.handleHelp},
|
||||
{ViewName: "", Key: '?', Modifier: gocui.ModNone, Handler: gui.handleHelp},
|
||||
{ViewName: "status", Key: 'e', Modifier: gocui.ModNone, Handler: gui.handleEditConfig},
|
||||
{ViewName: "status", Key: 'o', Modifier: gocui.ModNone, Handler: gui.handleOpenConfig},
|
||||
{ViewName: "status", Key: 'u', Modifier: gocui.ModNone, Handler: gui.handleCheckForUpdate},
|
||||
|
Loading…
x
Reference in New Issue
Block a user