blob: 2620fa694521100a6fe03c2a3333c9743ecdee40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
customCommands:
- key: "<c-a>"
context: "global"
command: "gh repo view --branch {{.CheckedOutBranch.Name}} --web"
description: "Open current branch in browser"
- key: "<c-p>"
context: "global"
command: "gh pr view --web"
description: "Open current PR in browser"
- key: "H"
context: "remotes"
command: "git push {{.SelectedRemote.Name}} {{.CheckedOutBranch.Name}}"
description: "Push to home remote"
|