* mu4e-headers.el: restore the p/n, M-up, M-down shortcuts that were eaten in

a previous commit
This commit is contained in:
djcb 2012-05-11 10:27:06 +03:00
parent 3504584a86
commit 202b75cb1e
1 changed files with 7 additions and 0 deletions

View File

@ -314,6 +314,13 @@ after the end of the search results."
(define-key map "T" 'mu4e-headers-mark-thread)
;; navigation between messages
(define-key map "p" 'mu4e-headers-prev)
(define-key map "n" 'mu4e-headers-next)
(define-key map (kbd "<M-up>") 'mu4e-headers-prev)
(define-key map (kbd "<M-down>") 'mu4e-headers-next)
;; switching to view mode (if it's visible)
(define-key map "y" 'mu4e-select-other-view)