1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-10 04:07:18 +02:00

try allowing creating branches off the stash too

This commit is contained in:
Jesse Duffield 2020-08-22 10:08:44 +10:00
parent f63ec38aae
commit 63209ef71e

View File

@ -891,6 +891,12 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Handler: gui.handleStashDrop,
Description: gui.Tr.SLocalize("drop"),
},
{
ViewName: "stash",
Key: gui.getKey("universal.new"),
Handler: gui.wrappedHandler(gui.handleNewBranchOffCurrentItem),
Description: gui.Tr.SLocalize("newBranch"),
},
{
ViewName: "commitMessage",
Key: gui.getKey("universal.confirm"),