mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-04 23:37:41 +02:00
correct typo in keybinding for delete branch
This commit is contained in:
parent
2c140445e5
commit
9626ebdf35
@ -65,7 +65,6 @@ func handleDeleteBranch(g *gocui.Gui, v *gocui.View) error {
|
|||||||
}, nil)
|
}, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func handleMerge(g *gocui.Gui, v *gocui.View) error {
|
func handleMerge(g *gocui.Gui, v *gocui.View) error {
|
||||||
checkedOutBranch := state.Branches[0]
|
checkedOutBranch := state.Branches[0]
|
||||||
selectedBranch := getSelectedBranch(v)
|
selectedBranch := getSelectedBranch(v)
|
||||||
@ -91,7 +90,7 @@ func renderBranchesOptions(g *gocui.Gui) error {
|
|||||||
"m": "merge",
|
"m": "merge",
|
||||||
"c": "checkout by name",
|
"c": "checkout by name",
|
||||||
"n": "new branch",
|
"n": "new branch",
|
||||||
"d": "delte branch",
|
"d": "delete branch",
|
||||||
"← → ↑ ↓": "navigate",
|
"← → ↑ ↓": "navigate",
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user