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 D37C6431FBC for ; Tue, 28 Oct 2014 12:39:07 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 lUIdhM0CPRo3 for ; Tue, 28 Oct 2014 12:39:03 -0700 (PDT) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 47397431FB6 for ; Tue, 28 Oct 2014 12:39:03 -0700 (PDT) Received: by mail-wg0-f45.google.com with SMTP id x12so292645wgg.18 for ; Tue, 28 Oct 2014 12:39:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=VAIwQG7iPoPgFUWigd134XvEgHVegOun6qucsAmpNn4=; b=LXq3YeRUBDkp1JARY7nNs+8eqUdALe9xfZZYT/E81oSEpIBXI1jFvtRz2KblPevb0K lpXZdVE5v6tSCL3C8pnGkVPXkP/+sygDNcVA+6SAjYefm3Jlhrh3Khvo6/MC72PG9t+C X8glGd7O1KgB4ln6GwgC5LQgktENQTIcnSxKltFg6Qjhr/3gfW4fg7j32ufucbvIVbft 27GIXdRb7RIM5/VlY+jLgYGUFR2/eBIklqWX5Wm9KLSsP3fNFo5S34a3+Caumf96Otqt L0dIWlyvRtHO6EZ3kQwHBrkGgSyaoN5C5I6g5+WlR6nbrZ+0q1OS0+ea6OrOmKmg6Wt7 /Suw== X-Gm-Message-State: ALoCoQlghfPwBTIaEsfFxW59ybS8tvACIzMCST4PDTW1FxskJX/WB+5A3+Fy1zXzGZIbhA0VfUMD X-Received: by 10.180.11.200 with SMTP id s8mr30282882wib.20.1414525142036; Tue, 28 Oct 2014 12:39:02 -0700 (PDT) Received: from localhost (dsl-hkibrasgw2-58c36d-48.dhcp.inet.fi. [88.195.109.48]) by mx.google.com with ESMTPSA id w10sm2887777wje.10.2014.10.28.12.39.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 28 Oct 2014 12:39:01 -0700 (PDT) From: Jani Nikula To: notmuch@notmuchmail.org Subject: [PATCH] emacs: add stash support for git send-email command line Date: Tue, 28 Oct 2014 21:38:58 +0200 Message-Id: <1414525138-838-1-git-send-email-jani@nikula.org> X-Mailer: git-send-email 2.1.1 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, 28 Oct 2014 19:39:08 -0000 Stash From/To/Cc as --to/--to/--cc, respectively, and Message-Id as --in-reply-to, suitable for pasting to git send-email command line. --- emacs/notmuch-show.el | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index a9974826e824..328c93ba0584 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -1274,6 +1274,7 @@ reset based on the original query." (define-key map "t" 'notmuch-show-stash-to) (define-key map "l" 'notmuch-show-stash-mlarchive-link) (define-key map "L" 'notmuch-show-stash-mlarchive-link-and-go) + (define-key map "G" 'notmuch-show-stash-git-send-email) (define-key map "?" 'notmuch-subkeymap-help) map) "Submap for stash commands") @@ -2125,6 +2126,30 @@ the user (see `notmuch-show-stash-mlarchive-link-alist')." (notmuch-show-stash-mlarchive-link mla) (browse-url (current-kill 0 t))) +(defun notmuch-show-stash-git-helper (addresses prefix) + "Escape, trim, and add PREFIX to each address in list of ADDRESSES." + (when addresses + (mapconcat (lambda (x) + (concat prefix "\"" + ;; escape double-quotes + (replace-regexp-in-string + "\"" "\\\\\"" + ;; trim leading and trailing spaces + (replace-regexp-in-string + "\\(^ *\\| *$\\)" "" + x)) "\" ")) + addresses ""))) + +(defun notmuch-show-stash-git-send-email () + "Copy From/To/Cc/Message-Id of current message to kill-ring in a form suitable for pasting to git send-email command line." + (interactive) + (notmuch-common-do-stash + (concat + (notmuch-show-stash-git-helper (message-tokenize-header (notmuch-show-get-from)) "--to=") + (notmuch-show-stash-git-helper (message-tokenize-header (notmuch-show-get-to)) "--to=") + (notmuch-show-stash-git-helper (message-tokenize-header (notmuch-show-get-cc)) "--cc=") + (concat "--in-reply-to=\"" (notmuch-show-get-message-id t) "\"")))) + ;; Interactive part functions and their helpers (defun notmuch-show-generate-part-buffer (message-id nth) -- 2.1.1