From: Mark Walters Date: Tue, 29 Oct 2013 22:55:37 +0000 (+0000) Subject: [PATCH 10/11] emacs: add z to common keymap X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ec1ebdba3127eed791769ac76509524a62386a9d;p=notmuch-archives.git [PATCH 10/11] emacs: add z to common keymap --- diff --git a/ce/1aee00b929bb13451759018ca81398a7eb95bd b/ce/1aee00b929bb13451759018ca81398a7eb95bd new file mode 100644 index 000000000..7c5bd0428 --- /dev/null +++ b/ce/1aee00b929bb13451759018ca81398a7eb95bd @@ -0,0 +1,96 @@ +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 47C2E42117E + for ; Tue, 29 Oct 2013 15:56:24 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0.201 +X-Spam-Level: +X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, + 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 zvDwvGpcr1ox for ; + Tue, 29 Oct 2013 15:56:19 -0700 (PDT) +Received: from mail-we0-f171.google.com (mail-we0-f171.google.com + [74.125.82.171]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 4B367431FBD + for ; Tue, 29 Oct 2013 15:56:01 -0700 (PDT) +Received: by mail-we0-f171.google.com with SMTP id t60so538525wes.30 + for ; Tue, 29 Oct 2013 15:56:00 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:cc:subject:date:message-id:in-reply-to:references; + bh=D0Clpa4grQl38TY8Ld9LVi3WPx3RwfDyTw7iLTDgu3w=; + b=cTi/BJaoVcCtkWIM4pjmztWm9Erx82Va0Ou9aJpFCTv8JE4+KbJ3JC880Lx/qU77HX + 9Sgsm19pfLrxjYolDEoHeztRFRHAM4EOY5ClQWvIP2AKC19w64sG/FK+igNVueclo07W + AFNV2BsRAfdPZCub93MbHGkQDzf3M3D1/CJ3flfkSZzJfqhj024a8i+4c96ELZDjC7OH + Cjr3nVJ4AvBY+v3BVq5D6jY6geFzrJEAN0envPbUK/CCvTIh19EA7AaE46cFGuEsRqgX + IiEUQfk9fSdlGMup0J5N4OC8CY52ibkAZ2DpqOyIki5naIob0gceukk6QICj95i+e302 + IjXw== +X-Received: by 10.194.20.230 with SMTP id q6mr1564488wje.49.1383087360229; + Tue, 29 Oct 2013 15:56:00 -0700 (PDT) +Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) + by mx.google.com with ESMTPSA id i8sm9527625wiy.6.2013.10.29.15.55.59 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Tue, 29 Oct 2013 15:55:59 -0700 (PDT) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: [PATCH 10/11] emacs: add z to common keymap +Date: Tue, 29 Oct 2013 22:55:37 +0000 +Message-Id: <1383087338-10220-11-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: <1383087338-10220-1-git-send-email-markwalters1009@gmail.com> +References: <1383087338-10220-1-git-send-email-markwalters1009@gmail.com> +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, 29 Oct 2013 22:56:24 -0000 + +Add the main entry "z" to notmuch-tree to the common keymap. +--- + emacs/notmuch-lib.el | 1 + + emacs/notmuch-tree.el | 1 - + 2 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el +index e7c5c97..921ed20 100644 +--- a/emacs/notmuch-lib.el ++++ b/emacs/notmuch-lib.el +@@ -133,6 +133,7 @@ For example, if you wanted to remove an \"inbox\" tag and add an + (define-key map "?" 'notmuch-help) + (define-key map "q" 'notmuch-kill-this-buffer) + (define-key map "s" 'notmuch-search) ++ (define-key map "z" 'notmuch-tree) + (define-key map "m" 'notmuch-mua-new-mail) + (define-key map "=" 'notmuch-refresh-this-buffer) + (define-key map "G" 'notmuch-poll-and-refresh-this-buffer) +diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el +index 78b4a57..c66dd35 100644 +--- a/emacs/notmuch-tree.el ++++ b/emacs/notmuch-tree.el +@@ -919,7 +919,6 @@ The arguments are: + + + ;; Set up key bindings from the rest of notmuch. +-(define-key notmuch-common-keymap "z" 'notmuch-tree) + (define-key notmuch-show-mode-map "Z" 'notmuch-tree-from-show-current-query) + + (provide 'notmuch-tree) +-- +1.7.9.1 +