From: Jani Nikula Date: Sun, 25 May 2014 07:22:12 +0000 (+0300) Subject: Re: [PATCH v1] emacs: Add `notmuch-show-toggle-citation-visibility', bound to '>' X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=34716148a8a2f05bbde1ac66178e98ba1624f93f;p=notmuch-archives.git Re: [PATCH v1] emacs: Add `notmuch-show-toggle-citation-visibility', bound to '>' --- diff --git a/84/a6da040b7cf92e58cde50901276217cbcd82ff b/84/a6da040b7cf92e58cde50901276217cbcd82ff new file mode 100644 index 000000000..2b60080b2 --- /dev/null +++ b/84/a6da040b7cf92e58cde50901276217cbcd82ff @@ -0,0 +1,81 @@ +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 F298D431FC7 + for ; Sun, 25 May 2014 00:22:25 -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 YUxOCx5fVpFl for ; + Sun, 25 May 2014 00:22:18 -0700 (PDT) +Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com + [209.85.212.180]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 27DF7431FC4 + for ; Sun, 25 May 2014 00:22:18 -0700 (PDT) +Received: by mail-wi0-f180.google.com with SMTP id hi2so2808895wib.1 + for ; Sun, 25 May 2014 00:22:14 -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:subject:in-reply-to:references + :user-agent:date:message-id:mime-version:content-type; + bh=ad67qjYgGUBZ8qzcMXOh1zUALNjoXpYFh2ag7nuLxrE=; + b=Gzl4EwySYNM9jA6UzlA0NUUNTnMTwrdDqaswT/DoIlPRqss0E5Zmt1TfC+ScST2s0U + 5H+gxGs595Hvc+hqLx4Ak0Miu0R1q7HUBxRBcT+itApzETQtiRcfFeHJPOD2msClBkYM + XKyF+Ty3bJv7Rp4EzPwV5WNFcnD8x22YaLuExGAUyymskCZQvus/92tP1EMlM6vZIuy4 + UOBo9HdOf2c8Nk4fGWxL4QjKlqTIC/iQp5dPi/LQMXEGgEIEnFP1KkgtUqd3JXuLFFnT + 4InuU19PgTCFSJ+U6vypMhvpdXk+Il/mBi1LUOjEusTaiUhb5rvO9+dUTA6hYCXGHNdN + aUSw== +X-Gm-Message-State: + ALoCoQmIAqWXG2NckMo7YnX69dhmxhpJbEmn8IsvhreI2C2TI6OoauJ0q2jex0hvV95hsblWCJTk +X-Received: by 10.194.248.130 with SMTP id ym2mr1436361wjc.88.1401002534642; + Sun, 25 May 2014 00:22:14 -0700 (PDT) +Received: from localhost (dsl-hkibrasgw2-58c36f-91.dhcp.inet.fi. + [88.195.111.91]) by mx.google.com with ESMTPSA id + h19sm16060164wiw.17.2014.05.25.00.22.13 for + (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); + Sun, 25 May 2014 00:22:13 -0700 (PDT) +From: Jani Nikula +To: David Edmondson , notmuch@notmuchmail.org +Subject: Re: [PATCH v1] emacs: Add `notmuch-show-toggle-citation-visibility', + bound to '>' +In-Reply-To: <1400601369-17005-1-git-send-email-dme@dme.org> +References: <1400601369-17005-1-git-send-email-dme@dme.org> +User-Agent: Notmuch/0.18~rc0+2~gbc64cdc (http://notmuchmail.org) Emacs/24.3.1 + (x86_64-pc-linux-gnu) +Date: Sun, 25 May 2014 10:22:12 +0300 +Message-ID: <87zji6iaqj.fsf@nikula.org> +MIME-Version: 1.0 +Content-Type: text/plain +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: Sun, 25 May 2014 07:22:26 -0000 + +On Tue, 20 May 2014, David Edmondson wrote: +> Add a function and key-binding to toggle the collapsing of citations +> within the current message. + +... + +> + (define-key map ">" 'notmuch-show-toggle-citation-visibility) + +Bikeshedding... I'd like to reserve '>' for either redirecting (see '|') +or indentation (see '<'). + +Jani.