Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id AB5F6429E25 for ; Tue, 11 Oct 2011 12:51:38 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.1 X-Spam-Level: X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GoqMQviCDqvt for ; Tue, 11 Oct 2011 12:51:38 -0700 (PDT) Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222]) by olra.theworths.org (Postfix) with ESMTP id 32840431FB6 for ; Tue, 11 Oct 2011 12:51:38 -0700 (PDT) Received: from localhost.localdomain (nancy.schnouki.net [78.238.0.45]) by ks3536.kimsufi.com (Postfix) with ESMTPSA id 67D886A06A9; Tue, 11 Oct 2011 21:51:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net; s=key-schnouki; t=1318362697; bh=6toTTnsBDw5AdgYTV3Mt8TAerlDNB+Woj1ns2zOHxZA=; h=From:To:Subject:Date:Message-Id:In-Reply-To:References; b=EuYXJCTN2m4Ck0SmVqZ6mAb+5GMOer/yy7Ae7JIwn1T32wwvSih5ppEH5oiucBKw9 jqK7AdVeQgPIOGuBqmaaxXAYgt830psHGY3YMVW5GjsySw/mc/9y3FJBekQeyC0/Ez icnJIM0F7zOiLVmCk/HcNBVkGzrSNpHaDyaCCKmg= From: Thomas Jost To: notmuch@notmuchmail.org Subject: [PATCH v2] emacs: Support a message-mode switch function in notmuch-mua Date: Tue, 11 Oct 2011 21:51:14 +0200 Message-Id: <1318362674-17652-1-git-send-email-schnouki@schnouki.net> X-Mailer: git-send-email 1.7.7 In-Reply-To: <8739eztijn.fsf@schnouki.net> References: <8739eztijn.fsf@schnouki.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2011 19:51:38 -0000 --- emacs/notmuch-mua.el | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 8824b08..639407f 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -31,6 +31,20 @@ :group 'notmuch :type 'hook) +(defcustom notmuch-mua-switch-function nil + "Function used to switch to and display a new mail buffer. If +this is `nil' then the buffer will be displayed in the current +window. Other common values are `switch-to-buffer-other-frame' +and `switch-to-buffer-other-window'. If you change this, you may +also want to change `message-sent-hook' accordingly: + (setq notmuch-muas-witch-function 'switch-to-buffer-other-frame) + (add-hook 'message-sent-hook '(delete-frame))" + :group 'notmuch + :type 'function + :options '(nil + switch-to-buffer-other-frame + switch-to-buffer-other-window)) + (defcustom notmuch-mua-user-agent-function 'notmuch-mua-user-agent-full "Function used to generate a `User-Agent:' string. If this is `nil' then no `User-Agent:' will be generated." @@ -99,7 +113,8 @@ list." ((same-window-regexps '("\\*mail .*"))) (notmuch-mua-mail (mail-header 'to headers) (mail-header 'subject headers) - (message-headers-to-generate headers t '(to subject)))) + (message-headers-to-generate headers t '(to subject)) + nil notmuch-mua-switch-function)) ;; insert the message body - but put it in front of the signature ;; if one is present (goto-char (point-max)) @@ -112,6 +127,8 @@ list." (message-goto-body)) (defun notmuch-mua-forward-message () + (when notmuch-mua-switch-function + (funcall notmuch-mua-switch-function (current-buffer))) (message-forward) (when notmuch-mua-user-agent-function @@ -199,7 +216,7 @@ the From: address first." (let ((other-headers (when (or prompt-for-sender notmuch-always-prompt-for-sender) (list (cons 'from (notmuch-mua-prompt-for-sender)))))) - (notmuch-mua-mail nil nil other-headers))) + (notmuch-mua-mail nil nil other-headers nil notmuch-mua-switch-function))) (defun notmuch-mua-new-forward-message (&optional prompt-for-sender) "Invoke the notmuch message forwarding window. -- 1.7.7