Skip to content

Commit ef7714b

Browse files
committed
Organize transient menu into Overview, Inspect, and Actions groups
1 parent 27537bf commit ef7714b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

magit-gh.el

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,14 @@ Set this variable before loading the package to use a custom key."
9191
;;;###autoload (autoload 'magit-gh "magit-gh" nil t)
9292
(transient-define-prefix magit-gh ()
9393
"GitHub CLI commands."
94-
["Pull Requests"
94+
["Overview"
9595
("l" "List PRs" magit-gh-pr-list)
96-
("s" "PR status dashboard" magit-gh-pr-status)
97-
("k" "PR checks/CI status" magit-gh-pr-checks)
98-
("c" "Checkout PR" magit-gh-pr-checkout)
96+
("s" "PR status dashboard" magit-gh-pr-status)]
97+
["Inspect"
9998
("d" "Diff PR" magit-gh-pr-diff)
99+
("k" "PR checks/CI status" magit-gh-pr-checks)]
100+
["Actions"
101+
("c" "Checkout PR" magit-gh-pr-checkout)
100102
("v" "View PR in browser" magit-gh-pr-view)])
101103

102104
;;; PR List Buffer Mode

0 commit comments

Comments
 (0)