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 D5FB8431FBC for ; Sat, 27 Oct 2012 06:38:41 -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 B9tNfBUdv2Bh for ; Sat, 27 Oct 2012 06:38:41 -0700 (PDT) Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 3CF63431FAE for ; Sat, 27 Oct 2012 06:38:41 -0700 (PDT) Received: by mail-wi0-f179.google.com with SMTP id hq7so879900wib.2 for ; Sat, 27 Oct 2012 06:38:39 -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:x-mailer:in-reply-to:references; bh=vpOFaqOtFi9UOhSArIuLamsBcS6BQwlQBdQseX6QUVQ=; b=enS4++eLVhaqHnpEO4slUZjIWjSj9UsjL+8bjxNMyxlZybzrAtOacFr+vkV6bSVVcK OYdfYw/LgG2ZkWnCdgYq7LXdxEItEkKgiEIpva+CBe+gQsin4PpZsMCTLo3Z647+k+QU +MLmvEfMcX5s+vcHfvDY4hmwbhSIahMzp9yOuIVHiGo+L4j35bVYZqPHquf0FyhLFcyp 0KR8VSvA394AlCi2dzhdEC6PyW2t4A/JmFBnkBCdJpODf1JmwMuPoGrCTFmxy+yuXSvo qYdiHLNwyI3c0sNnbloUvf9cplm9IkIjfg5cL2gpDkEIXPDgsWT4aHV7oloFxiNCxZTO DyDA== Received: by 10.180.86.202 with SMTP id r10mr8728562wiz.12.1351345119843; Sat, 27 Oct 2012 06:38:39 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id fp6sm2319655wib.0.2012.10.27.06.38.38 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 27 Oct 2012 06:38:39 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2] contrib: add pick README. Date: Sat, 27 Oct 2012 14:38:26 +0100 Message-Id: <1351345106-25099-1-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1351337200-18050-3-git-send-email-markwalters1009@gmail.com> References: <1351337200-18050-3-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: Sat, 27 Oct 2012 13:38:42 -0000 --- This just fixes the typos pointed out in id:"87txtg3wie.fsf@star.eba" Best wishes Mark contrib/notmuch-pick/README | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 contrib/notmuch-pick/README diff --git a/contrib/notmuch-pick/README b/contrib/notmuch-pick/README new file mode 100644 index 0000000..8eed974 --- /dev/null +++ b/contrib/notmuch-pick/README @@ -0,0 +1,38 @@ +NOTMUCH PICK + +Notmuch pick is an experimental threaded message view for the emacs +interface. Each message is one line in the results and the thread +structure is shown using UTF-8 box drawing characters (similar to +Mutt's threaded view). It comes between search and show in terms of +amount of output and can be useful for viewing both single threads and +multiple threads. + +INSTALL + +Just copy the notmuch-pick.el file somewhere into emacs's load-path. + +Then after the "(require 'notmuch)" line in your .emacs file add +the line "(require 'notmuch-pick nil t)". This will load notmuch-pick on +your next emacs start. + +USING PICK + +The main key entries to notmuch pick are + +'z' enter a query to view using notmuch pick (works in hello, search, + show and pick itself). +'Z' view the current query in pick (works from search and show) +'M-RET' view the selected thread in pick (works in search mode) + +Once in pick mode, keybindings are mostly in line with the rest of +notmuch and are all viewable with '?' as usual. + +CUSTOMISING PICK + +Pick has several customisation variables. The most significant is the +first notmuch-pick-show-out which determines the behaviour when +selecting a message (with RET) in the pick view. By default pick uses +a split window showing the single message in the bottom pane. However, +if this option is set then it views the whole thread in the complete +window jumping to the selected message in the thread. In either case +M-RET selects the other option. -- 1.7.9.1