From faf453d53869d21ec8615a68837958e6a21a7204 Mon Sep 17 00:00:00 2001 From: djcb Date: Tue, 16 Feb 2016 08:14:00 +0200 Subject: [PATCH] mu4e: resend: add to view/headers menu Add `mu4e-compose-resend` to the menus in the headers and view modes. Don't add a shortcut, as it's a fairly rarely needed feature, and might be confusing if invoked accidentally. --- mu4e/mu4e-headers.el | 6 +++++- mu4e/mu4e-view.el | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index 2446b4f8..33f11db0 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -733,9 +733,13 @@ after the end of the search results." '("Mark for move" . mu4e-headers-mark-for-move)) (define-key menumap [sepa1] '("--")) - (define-key menumap [compose-new] '("Compose new" . mu4e-compose-new)) + + (define-key menumap [resend] '("Resend" . mu4e-compose-resend)) (define-key menumap [forward] '("Forward" . mu4e-compose-forward)) (define-key menumap [reply] '("Reply" . mu4e-compose-reply)) + (define-key menumap [compose-new] '("Compose new" . mu4e-compose-new)) + + (define-key menumap [sepa2] '("--")) (define-key menumap [query-next] '("Next query" . mu4e-headers-query-next)) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 1f116599..5cd6c81a 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -707,9 +707,10 @@ FUNC should be a function taking two arguments: '("Mark for move" . mu4e-view-mark-for-move)) (define-key menumap [sepa2] '("--")) - (define-key menumap [compose-new] '("Compose new" . mu4e-compose-new)) + (define-key menumap [resend] '("Resend" . mu4e-compose-resend)) (define-key menumap [forward] '("Forward" . mu4e-compose-forward)) (define-key menumap [reply] '("Reply" . mu4e-compose-reply)) + (define-key menumap [compose-new] '("Compose new" . mu4e-compose-new)) (define-key menumap [sepa3] '("--")) (define-key menumap [query-next]