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 9BA2E431FD4 for ; Thu, 5 Apr 2012 18:49:12 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 2FtI9C0V4ZgA for ; Thu, 5 Apr 2012 18:49:12 -0700 (PDT) Received: from mail-pb0-f53.google.com (mail-pb0-f53.google.com [209.85.160.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 0E558431FC3 for ; Thu, 5 Apr 2012 18:49:11 -0700 (PDT) Received: by pbcuo1 with SMTP id uo1so2419274pbc.26 for ; Thu, 05 Apr 2012 18:49:11 -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=CBOxJ3LYn4/KmkAhO0u2aUAh04Fyp25qol9NddmPVd0=; b=wu3Qk3s52voFAO2Xx/V7BVjtQUgO+6Soyh0HcQiiXlWNG54bxb9JWbVV3gWHCsRkpb xeKPodci443uCuTqGHa8oCBJGYC3MABARUVP42tYGlEclKpb0yH9A+63QCwWyLfE7kyL Hkx0PULLB1SUFxTlzisQu/Kx/bBqTkmd5kEDBPoCmHn4IAY62YYfhk/mKBVasliTlVX2 9XXeLpTRL7v+Ud3h0ru+kyQxUWpd5XolzN99vSNYUFXIrUA7+2lAJnYVIm/tbanjcCBf 6eDS4/A/M4Z/i3VnyzvOkoX2jqVdjYOd6WgpADgCuKiIQ0fIoIh7e06QjBvn7FU2rwRv VuPA== Received: by 10.68.218.228 with SMTP id pj4mr9404893pbc.167.1333676951314; Thu, 05 Apr 2012 18:49:11 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id o7sm4791362pbq.8.2012.04.05.18.49.08 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 Apr 2012 18:49:10 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v3 5/5] man: Document 'config list' command Date: Fri, 6 Apr 2012 11:48:06 +1000 Message-Id: <1333676886-9835-6-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1333676886-9835-1-git-send-email-novalazy@gmail.com> References: <1332282698-7951-1-git-send-email-novalazy@gmail.com> <1333676886-9835-1-git-send-email-novalazy@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: Fri, 06 Apr 2012 01:49:12 -0000 Document the 'config list' command and its output. --- man/man1/notmuch-config.1 | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1 index 395cb9c..a55dbef 100644 --- a/man/man1/notmuch-config.1 +++ b/man/man1/notmuch-config.1 @@ -9,6 +9,8 @@ notmuch-config \- Access notmuch configuration file. .B notmuch config set .RI "<" section ">.<" item "> [" value " ...]" +.B notmuch config list + .SH DESCRIPTION The @@ -35,6 +37,18 @@ If no values are provided, the specified configuration item will be removed from the configuration file. .RE +.RS 4 +.TP 4 +.B list +Every configuration item is printed to stdout, each on a separate line +of the form: + +.RI "" section "." item "=" value + +No additional whitespace surrounds the dot or equals sign characters. In a +multiple-value item (a list), the values are separated by semicolon characters. +.RE + The available configuration items are described below. .RS 4 -- 1.7.4.4