From d0890a3b0c2e86d3185fce42dc0a2fd28ad26f9a Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Fri, 13 Feb 2015 10:47:25 +0100 Subject: [PATCH] Make sure C-S-u and C-c C-u work in main view These 2 shortcuts update mail index in both the headers and view modes but not in the main view. --- mu4e/mu4e-main.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mu4e/mu4e-main.el b/mu4e/mu4e-main.el index c285914a..d8561104 100644 --- a/mu4e/mu4e-main.el +++ b/mu4e/mu4e-main.el @@ -47,6 +47,10 @@ ;; (define-key map "U" 'mu4e-update-mail-and-index) + (define-key map (kbd "C-S-u") 'mu4e-update-mail-and-index) + ;; for terminal users + (define-key map (kbd "C-c C-u") 'mu4e-update-mail-and-index) + (define-key map "S" 'mu4e-interrupt-update-mail) (define-key map (kbd "C-S-u") 'mu4e-update-mail-and-index)