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 83AFC431FC9 for ; Sat, 26 Dec 2009 16:34:38 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 8N8JzzvJ4uF7 for ; Sat, 26 Dec 2009 16:34:36 -0800 (PST) Received: from keithp.com (home.keithp.com [63.227.221.253]) by olra.theworths.org (Postfix) with ESMTP id 5F3E8431FBC for ; Sat, 26 Dec 2009 16:34:36 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by keithp.com (Postfix) with ESMTP id CC8B5760142 for ; Sat, 26 Dec 2009 16:34:35 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at keithp.com Received: from keithp.com ([127.0.0.1]) by localhost (keithp.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8WJ+7aKDCj7b; Sat, 26 Dec 2009 16:34:30 -0800 (PST) Received: by keithp.com (Postfix, from userid 1033) id 23879760143; Sat, 26 Dec 2009 16:34:30 -0800 (PST) Received: from koto.keithp.com (localhost [127.0.0.1]) by keithp.com (Postfix) with ESMTP id 1465C760116; Sat, 26 Dec 2009 16:34:29 -0800 (PST) Received: by koto.keithp.com (Postfix, from userid 1488) id 0770A1381DD; Sat, 26 Dec 2009 16:34:20 -0800 (PST) From: Keith Packard To: notmuch@notmuchmail.org Date: Sat, 26 Dec 2009 16:34:16 -0800 Message-Id: <1261874058-13820-1-git-send-email-keithp@keithp.com> X-Mailer: git-send-email 1.6.5.4 Subject: [notmuch] [PATCH 1/3] Add 'm' and ' ' bindings to notmuch-folder view X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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, 27 Dec 2009 00:34:39 -0000 This allows the user to compose new mail from the folder view, and also to use to show the current folder. Signed-off-by: Keith Packard --- notmuch.el | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/notmuch.el b/notmuch.el index 97914f2..3dbb64a 100644 --- a/notmuch.el +++ b/notmuch.el @@ -1378,12 +1378,14 @@ current search results AND that are tagged with the given tag." (define-key map "?" 'notmuch-help) (define-key map "x" 'kill-this-buffer) (define-key map "q" 'kill-this-buffer) + (define-key map "m" 'message-mail) (define-key map ">" 'notmuch-folder-last) (define-key map "<" 'notmuch-folder-first) (define-key map "=" 'notmuch-folder) (define-key map "s" 'notmuch-search) (define-key map [mouse-1] 'notmuch-folder-show-search) (define-key map (kbd "RET") 'notmuch-folder-show-search) + (define-key map " " 'notmuch-folder-show-search) (define-key map "p" 'notmuch-folder-previous) (define-key map "n" 'notmuch-folder-next) map) -- 1.6.5.4