branch: elpa/git-commit
commit 8cadf302b88c9c6ae33d4205fc243ce643e21840
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit-patch: Use multiple columns
---
lisp/magit-patch.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lisp/magit-patch.el b/lisp/magit-patch.el
index 0a34dcb..1e4fa66 100644
--- a/lisp/magit-patch.el
+++ b/lisp/magit-patch.el
@@ -57,11 +57,11 @@ the prefix argument."
(transient-define-prefix magit-patch ()
"Create or apply patches."
["Actions"
- ("c" "Create patches" magit-patch-create)
- ("w" "Apply patches" magit-am)
- ("a" "Apply plain patch" magit-patch-apply)
- ("s" "Save diff as patch" magit-patch-save)
- ("r" "Request pull" magit-request-pull)])
+ [("c" "Create patches" magit-patch-create)
+ ("w" "Apply patches" magit-am)]
+ [("a" "Apply plain patch" magit-patch-apply)
+ ("s" "Save diff as patch" magit-patch-save)]
+ [("r" "Request pull" magit-request-pull)]])
;;;###autoload (autoload 'magit-patch-create "magit-patch" nil t)
(transient-define-prefix magit-patch-create (range args files)