summaryrefslogtreecommitdiffstats
path: root/pkg/gui/keybindings.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-02-13 18:33:46 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-17 19:13:40 +1100
commitc685a413c94d06f154587015a86701ec82d2ee0c (patch)
treebd0e7f8a0cd9520ae5cf0d62acc663124875e5ef /pkg/gui/keybindings.go
parenta643957f89c85fc304b78e3a6aad6e5c1a365d50 (diff)
stash controller
Diffstat (limited to 'pkg/gui/keybindings.go')
-rw-r--r--pkg/gui/keybindings.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index ba30bd407..dfff8c9e1 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -431,30 +431,6 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
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),
Modifier: gocui.ModNone,