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 694CE429E44 for ; Thu, 22 Aug 2013 10:11:33 -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 xWTQ1MBxi07o for ; Thu, 22 Aug 2013 10:11:27 -0700 (PDT) Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id B6EA8429E33 for ; Thu, 22 Aug 2013 10:10:52 -0700 (PDT) Received: by mail-wi0-f173.google.com with SMTP id en1so970847wid.6 for ; Thu, 22 Aug 2013 10:10:51 -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=2fMCcO4z5e+SXgJsS3B5qAj04M7QP3Zoanq4OBs13a4=; b=TXZejCGsq+BixTX8eJkiV9TnSUKVjRSUj0j1THArHX8c+a8am+ZgE2oN6btgOSJKND XbHZ7w3Ofj72v42pcs84NfLOY7OFaeFDZ0CBBMqT2H+Twki9vh2AnS3rMX16hwaDvxIF NsfBbRj3Ri2vyk0h4EelzYeieFrogzolcJSBQ+VZwHXHJ+7aN2f05dZLOqUrxACWtwEh uPEE4rPYVUPpjpSejaZ+bha9XBmOOmQo23Nj+t3CMGFLo/KZciQLZR1X0Yzan2qU+wzp GOT/PFMfef3bRHXLQDIVeNd4Efva15DfL4prTyOyERiRa1wBtJv/O0oiILt8Uh7ReT/1 xU5g== X-Received: by 10.180.182.15 with SMTP id ea15mr21564908wic.16.1377191451632; Thu, 22 Aug 2013 10:10:51 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id fu13sm18213212wic.7.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 22 Aug 2013 10:10:51 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v3 09/11] contrib: pick: make help close the message pane first Date: Thu, 22 Aug 2013 18:10:24 +0100 Message-Id: <1377191427-6821-10-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1377191427-6821-1-git-send-email-markwalters1009@gmail.com> References: <1377191427-6821-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: Thu, 22 Aug 2013 17:11:34 -0000 Previously pressing "?" for help when the message pane was open meant the help window was very small. Close the message pane before displaying help. --- contrib/notmuch-pick/notmuch-pick.el | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el index 6d73269..344609f 100644 --- a/contrib/notmuch-pick/notmuch-pick.el +++ b/contrib/notmuch-pick/notmuch-pick.el @@ -235,10 +235,12 @@ FUNC." (define-key map (kbd "TAB") (notmuch-pick-to-message-pane #'notmuch-show-next-button)) (define-key map "e" (notmuch-pick-to-message-pane #'notmuch-pick-button-activate)) + ;; bindings from show (or elsewhere) but we close the message pane first. + (define-key map "?" (notmuch-pick-close-message-pane-and #'notmuch-help)) + ;; The main pick bindings (define-key map "q" 'notmuch-pick-quit) (define-key map "x" 'notmuch-pick-quit) - (define-key map "?" 'notmuch-help) (define-key map "a" 'notmuch-pick-archive-message-then-next) (define-key map "=" 'notmuch-pick-refresh-view) (define-key map "s" 'notmuch-pick-to-search) -- 1.7.9.1