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

better keybinding ('W') for viewing diff

This commit is contained in:
Jesse Duffield
2020-08-25 09:07:16 +10:00
committed by github-actions[bot]
parent 771e87ebeb
commit 3ebb91c07a
3 changed files with 10 additions and 2 deletions

View File

@ -1037,6 +1037,12 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Handler: gui.handleCreateDiffingMenuPanel,
Description: gui.Tr.SLocalize("openDiffingMenu"),
},
{
ViewName: "",
Key: gui.getKey("universal.diffingMenu-alt"),
Handler: gui.handleCreateDiffingMenuPanel,
Description: gui.Tr.SLocalize("openDiffingMenu"),
},
{
ViewName: "secondary",
Key: gocui.MouseWheelUp,