1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-12-03 22:59:46 +02:00

Update README.md

This commit is contained in:
Jesse Duffield
2018-06-09 19:30:59 +10:00
parent d413d4319f
commit 08174ca848
4 changed files with 28 additions and 2 deletions

3
gui.go
View File

@@ -146,6 +146,9 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("branches", gocui.KeySpace, gocui.ModNone, handleBranchPress); err != nil {
return err
}
if err := g.SetKeybinding("branches", 'c', gocui.ModNone, handleCheckoutByName); err != nil {
return err
}
if err := g.SetKeybinding("branches", 'F', gocui.ModNone, handleForceCheckout); err != nil {
return err
}