From bc47f3fba4c5c54f0a12be156ec4bb8976f592f9 Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Mon, 13 Sep 2010 16:48:32 +0100 Subject: [PATCH] Put actions at the bottom of the group buffer to indicate flow. --- magit-key-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/magit-key-mode.el b/magit-key-mode.el index 9003ff68..489fc32a 100644 --- a/magit-key-mode.el +++ b/magit-key-mode.el @@ -329,9 +329,9 @@ put it in magit-key-mode-key-maps for fast lookup." (switches (cdr (assoc 'switches options))) (arguments (cdr (assoc 'arguments options))) (actions (cdr (assoc 'actions options)))) - (magit-key-mode-draw-actions actions) (magit-key-mode-draw-switches switches) - (magit-key-mode-draw-args arguments))) + (magit-key-mode-draw-args arguments) + (magit-key-mode-draw-actions actions))) (defun magit-key-mode-generate (sym) "Generate the key-group menu for SYM"