From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 60452429E2F for ; Sat, 11 May 2013 12:50:49 -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 9WEkgJz8InXe for ; Sat, 11 May 2013 12:50:43 -0700 (PDT) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id DAC79431FBD for ; Sat, 11 May 2013 12:50:29 -0700 (PDT) Received: by mail-wi0-f172.google.com with SMTP id hm14so1668538wib.5 for ; Sat, 11 May 2013 12:50:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=pzvmzCQ4e6oB0X7cSme/8kxdDoyvBlNF5obclkq82F8=; b=bUb5nLgn0lp/GDwETPzHp58ulL6rltWIxTYFdwnbQI/nEOp1YcfFoR3y+KCUt3aBPQ qvGfjvi31PTiqPMesYApS6rDc3c4Nctl4c0CIXKQYxFDUZXYA3Fu2+KCrL0IYgn6dNdm RODA+ViDg0sUEmKpE81S3+kmWQn815srw/l7Rd3/Ivq0Si9e1Pcuc0vGvnMp3Z1CSj0o uGt0yN+du5mkxIg8A8qN3PzS14J6HL+tnqt7mhW7zOQ4MMmIvzksXRr3/DHGbvC3FH1s 06yLkBKbyfKl90U2cnPXspehf1IQRhVXP0fRnftw/0Ci8BRzAGbsCHZuUSFt3J8XG8bz 6ZzQ== X-Received: by 10.194.133.198 with SMTP id pe6mr31502650wjb.9.1368301828789; Sat, 11 May 2013 12:50:28 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id je7sm5629449wic.9.2013.05.11.12.50.27 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 11 May 2013 12:50:28 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2 6/8] man: document search --exclude=all Date: Sat, 11 May 2013 20:50:07 +0100 Message-Id: <1368301809-12532-7-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1368301809-12532-1-git-send-email-markwalters1009@gmail.com> References: <1368301809-12532-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: Sat, 11 May 2013 19:50:49 -0000 From: Peter Wang Document the new search --exclude=all option. --- man/man1/notmuch-search.1 | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/man/man1/notmuch-search.1 b/man/man1/notmuch-search.1 index da2f1dd..1c1e049 100644 --- a/man/man1/notmuch-search.1 +++ b/man/man1/notmuch-search.1 @@ -130,7 +130,7 @@ Limit the number of displayed results to N. .RS 4 .TP 4 -.BR \-\-exclude=(true|false|flag) +.BR \-\-exclude=(true|false|all|flag) A message is called "excluded" if it matches at least one tag in search.tag_exclude that does not appear explicitly in the search terms. @@ -141,6 +141,10 @@ The default value, .BR true , prevents excluded messages from matching the search terms. +.B all +additionally prevents excluded messages from appearing in displayed +results, in effect behaving as though the excluded messages do not exist. + .B false allows excluded messages to match search terms and appear in displayed results. Excluded messages are still marked in the relevant outputs. -- 1.7.9.1