summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/remote_branches_controller.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/controllers/remote_branches_controller.go')
-rw-r--r--pkg/gui/controllers/remote_branches_controller.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/gui/controllers/remote_branches_controller.go b/pkg/gui/controllers/remote_branches_controller.go
index d793c6148..c859ef3f6 100644
--- a/pkg/gui/controllers/remote_branches_controller.go
+++ b/pkg/gui/controllers/remote_branches_controller.go
@@ -94,6 +94,14 @@ func (self *RemoteBranchesController) GetKeybindings(opts types.KeybindingsOpts)
Tooltip: self.c.Tr.ResetTooltip,
OpensMenu: true,
},
+ {
+ Key: opts.GetKey(opts.Config.Universal.OpenDiffTool),
+ Handler: self.withItem(func(selectedBranch *models.RemoteBranch) error {
+ return self.c.Helpers().Diff.OpenDiffToolForRef(selectedBranch)
+ }),
+ GetDisabledReason: self.require(self.singleItemSelected()),
+ Description: self.c.Tr.OpenDiffTool,
+ },
}
}