summaryrefslogtreecommitdiffstats
path: root/pkg/gui/keybindings.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/keybindings.go')
-rw-r--r--pkg/gui/keybindings.go50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index 4cdf8d8ae..c6b1cee82 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -434,56 +434,6 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
{
ViewName: "branches",
Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Universal.GoInto),
- Handler: self.handleViewSubCommitFiles,
- Description: self.c.Tr.LcViewCommitFiles,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Universal.Select),
- Handler: self.handleCheckoutSubCommit,
- Description: self.c.Tr.LcCheckoutCommit,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Commits.ViewResetOptions),
- Handler: self.handleCreateSubCommitResetMenu,
- Description: self.c.Tr.LcViewResetOptions,
- OpensMenu: true,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Universal.New),
- Handler: self.handleNewBranchOffSubCommit,
- Description: self.c.Tr.LcNewBranch,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Commits.CherryPickCopy),
- Handler: self.handleCopySubCommit,
- Description: self.c.Tr.LcCherryPickCopy,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Commits.CherryPickCopyRange),
- Handler: self.handleCopySubCommitRange,
- Description: self.c.Tr.LcCherryPickCopyRange,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
- Key: opts.GetKey(opts.Config.Commits.ResetCherryPick),
- Handler: self.helpers.CherryPick.Reset,
- Description: self.c.Tr.LcResetCherryPick,
- },
- {
- ViewName: "branches",
- Contexts: []string{string(context.SUB_COMMITS_CONTEXT_KEY)},
Key: opts.GetKey(opts.Config.Universal.CopyToClipboard),
Handler: self.handleCopySelectedSideContextItemToClipboard,
Description: self.c.Tr.LcCopyCommitShaToClipboard,