1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-23 00:39:13 +02:00

stash controller

This commit is contained in:
Jesse Duffield
2022-02-13 18:33:46 +11:00
parent a643957f89
commit c685a413c9
4 changed files with 144 additions and 130 deletions

View File

@ -430,30 +430,6 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
Handler: self.handleCopySelectedSideContextItemToClipboard,
Description: self.c.Tr.LcCopyCommitShaToClipboard,
},
{
ViewName: "stash",
Key: opts.GetKey(opts.Config.Universal.Select),
Handler: self.handleStashApply,
Description: self.c.Tr.LcApply,
},
{
ViewName: "stash",
Key: opts.GetKey(opts.Config.Stash.PopStash),
Handler: self.handleStashPop,
Description: self.c.Tr.LcPop,
},
{
ViewName: "stash",
Key: opts.GetKey(opts.Config.Universal.Remove),
Handler: self.handleStashDrop,
Description: self.c.Tr.LcDrop,
},
{
ViewName: "stash",
Key: opts.GetKey(opts.Config.Universal.New),
Handler: self.handleNewBranchOffStashEntry,
Description: self.c.Tr.LcNewBranch,
},
{
ViewName: "commitMessage",
Key: opts.GetKey(opts.Config.Universal.SubmitEditorText),