From a86fab4e977405cf7a9b20cb40c0de2f8f29c22c Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Tue, 30 Mar 2010 23:08:50 +0100 Subject: [PATCH] n/p now allow the user to move about in branch-view. --- magit.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/magit.el b/magit.el index 1fb8a5d2..89dd5a8e 100644 --- a/magit.el +++ b/magit.el @@ -3555,6 +3555,8 @@ Prefix arg means justify as well." (define-key map (kbd "q") 'magit-quit-branches-window) (define-key map (kbd "g") 'magit-show-branches) (define-key map (kbd "V") 'magit-show-branches) + (define-key map (kbd "n") 'next-line) + (define-key map (kbd "p") 'previous-line) map)) (define-derived-mode magit-show-branches-mode text-mode "Magit Branches")