--- /dev/null
+Return-Path: <david@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 454586DE0C51\r
+ for <notmuch@notmuchmail.org>; Sat, 13 Feb 2016 08:42:42 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.307\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.307 tagged_above=-999 required=5 tests=[AWL=0.244,\r
+ RP_MATCHES_RCVD=-0.55, SPF_PASS=-0.001] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id wTpJRatp8KyU for <notmuch@notmuchmail.org>;\r
+ Sat, 13 Feb 2016 08:42:40 -0800 (PST)\r
+Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 41A3E6DE0A9A\r
+ for <notmuch@notmuchmail.org>; Sat, 13 Feb 2016 08:42:40 -0800 (PST)\r
+Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
+ (envelope-from <david@tethera.net>)\r
+ id 1aUdGb-0003xY-Gz; Sat, 13 Feb 2016 11:41:53 -0500\r
+Received: (nullmailer pid 8837 invoked by uid 1000);\r
+ Sat, 13 Feb 2016 16:42:33 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: Jani Nikula <jani@nikula.org>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH] emacs: hello: tell the user about help and notmuch\r
+ customization\r
+In-Reply-To: <1450026221-23286-1-git-send-email-jani@nikula.org>\r
+References: <1450026221-23286-1-git-send-email-jani@nikula.org>\r
+User-Agent: Notmuch/0.21+26~g9404723 (http://notmuchmail.org) Emacs/24.5.1\r
+ (x86_64-pc-linux-gnu)\r
+Date: Sat, 13 Feb 2016 12:42:33 -0400\r
+Message-ID: <8760xs8sue.fsf@zancas.localnet>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sat, 13 Feb 2016 16:42:42 -0000\r
+\r
+Jani Nikula <jani@nikula.org> writes:\r
+\r
+> Make it easier for new users to find out about thing in notmuch-emacs.\r
+> ---\r
+> emacs/notmuch-hello.el | 11 +++++++++--\r
+> 1 file changed, 9 insertions(+), 2 deletions(-)\r
+>\r
+> diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el\r
+> index b42e0f24148a..738baad23b20 100644\r
+> --- a/emacs/notmuch-hello.el\r
+> +++ b/emacs/notmuch-hello.el\r
+> @@ -915,12 +915,19 @@ following:\r
+> (widget-insert "Edit saved searches with the `edit' button.\n"))\r
+> (widget-insert "Hit RET or click on a saved search or tag name to view matching threads.\n")\r
+> (widget-insert "`=' to refresh this screen. `s' to search messages. `q' to quit.\n")\r
+> + (widget-insert "`?' in each Notmuch screen to display help for the current mode.\n")\r
+> + (widget-insert "Customize ")\r
+> + (widget-create 'link\r
+> + :notify (lambda (&rest ignore)\r
+> + (customize-group 'notmuch))\r
+> + :button-prefix "" :button-suffix ""\r
+> + "Notmuch")\r
+> + (widget-insert " or ")\r
+> (widget-create 'link\r
+> :notify (lambda (&rest ignore)\r
+> (customize-variable 'notmuch-hello-sections))\r
+> :button-prefix "" :button-suffix ""\r
+> - "Customize")\r
+> - (widget-insert " this page.")\r
+> + "this page.")\r
+> (let ((fill-column (- (window-width) notmuch-hello-indent)))\r
+> (center-region start (point)))))\r
+\r
+Unfortunately this breaks some tests.\r
+\r
+d\r