1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-09 13:47:11 +02:00

add navigate option to every panels options

This commit is contained in:
Jesse Duffield 2018-07-29 10:40:54 +10:00
parent 8b0db89edb
commit 5c271b8a70
3 changed files with 21 additions and 18 deletions

View File

@ -75,6 +75,7 @@ func renderBranchesOptions(g *gocui.Gui) error {
"m": "merge",
"c": "checkout by name",
"n": "new branch",
"← → ↑ ↓": "navigate",
})
}

View File

@ -65,6 +65,7 @@ func renderCommitsOptions(g *gocui.Gui) error {
"s": "squash down",
"r": "rename",
"g": "reset to this commit",
"← → ↑ ↓": "navigate",
})
}

View File

@ -35,6 +35,7 @@ func renderStashOptions(g *gocui.Gui) error {
"space": "apply",
"k": "pop",
"d": "drop",
"← → ↑ ↓": "navigate",
})
}