1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-23 00:39:13 +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

@ -32,9 +32,10 @@ func getSelectedStashEntry(v *gocui.View) *StashEntry {
func renderStashOptions(g *gocui.Gui) error {
return renderOptionsMap(g, map[string]string{
"space": "apply",
"k": "pop",
"d": "drop",
"space": "apply",
"k": "pop",
"d": "drop",
"← → ↑ ↓": "navigate",
})
}