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 D586D431FD0 for ; Tue, 24 Jul 2012 14:22:11 -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 WTtq6Xe98n8C for ; Tue, 24 Jul 2012 14:22:10 -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 C0D9E431FAF for ; Tue, 24 Jul 2012 14:22:07 -0700 (PDT) Received: by mail-wi0-f179.google.com with SMTP id hq4so19767wib.2 for ; Tue, 24 Jul 2012 14:22:07 -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=BTk+OSSZF+RX1F/PUd3ctokXwCdg711EPBGXL7K3soI=; b=BY73a5IWER47AOPWJ/6XWnR32wsCCUyvUkfPFEor8lwCRobx5tozqYBNZgyTOC79DU 0pZhE7NHX23xJYB0to+rpzYcj6Hp2dSXz2MEOySDDR+YoUQ6DrCw1VG0MJwsAngYK4Tx IdPLjx2xlX/vbWd6YMbvorZtKgSNXw/p1K94pfwfPxxqS6hrxoHZm3kQQ1sPRiOr/Jz/ GHlV4gRym9z6n1GT1iwbdlptBWOdNurj9nXQhm1lNo1JmZMmK0fVmPEyIP594b5Bomkb WUhujicp8oCMR/hQL7dz0tZyWg5wshrFkPqqrkN0Sa9z1sSQVgqmpEa9MyKEzrtFDUT4 5kuw== Received: by 10.216.154.69 with SMTP id g47mr11547540wek.171.1343164927455; Tue, 24 Jul 2012 14:22:07 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id w7sm6295692wiz.0.2012.07.24.14.22.06 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 24 Jul 2012 14:22:06 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH 4/5] contrib: Added pick README. Date: Tue, 24 Jul 2012 22:21:50 +0100 Message-Id: <1343164911-31589-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1343164911-31589-1-git-send-email-markwalters1009@gmail.com> References: <1343164911-31589-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, 24 Jul 2012 21:22:12 -0000 --- contrib/notmuch-pick/README | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 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..1b2399f --- /dev/null +++ b/contrib/notmuch-pick/README @@ -0,0 +1,36 @@ +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 UFT-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 theads and +multiple threads. + +Install + +To use notmuch pick copy or link the notmuch-pick.el file into the +emacs directory of the main source and then compile and install +notmuch as usual. + +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 keybinding are mostly inline 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