unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] doc: minor corrections in notmuch-config.1
@ 2012-02-28 18:42 Pieter Praet
  2012-02-28 19:33 ` Jani Nikula
  2012-02-29 11:53 ` David Bremner
  0 siblings, 2 replies; 4+ messages in thread
From: Pieter Praet @ 2012-02-28 18:42 UTC (permalink / raw)
  To: Notmuch Mail

* man/man1/notmuch-config.1

  - SYNOPSIS:
    Remove spaces in 'section.item' arg, and indicate that
    `notmuch config set' accepts multiple value args.

  - DESCRIPTION:
    Correct config option to exclude tags from search results.
    ('search.exclude_tags' instead of 'search.exclude')

Also see commit bb8ab4c8.
---

See my reply to id:"1330208621-7462-1-git-send-email-jani@nikula.org".

 man/man1/notmuch-config.1 |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1
index 0260eb7..3d69cc6 100644
--- a/man/man1/notmuch-config.1
+++ b/man/man1/notmuch-config.1
@@ -4,10 +4,10 @@ notmuch-config \- Access notmuch configuration file.
 .SH SYNOPSIS
 
 .B notmuch config get
-.RI  "<" section "> . <" item ">"
+.RI  "<" section ">.<" item ">"
 
 .B notmuch config set
-.RI  "<" section "> . <" item "> [" value "]"
+.RI  "<" section ">.<" item "> [" value " ...]"
 
 .SH DESCRIPTION
 
@@ -85,7 +85,7 @@ directory hierarchy.
 
 .RS 4
 .TP 4
-.B search.exclude
+.B search.exclude_tags
 A list of tags that will be excluded from search results by
 default. Using an excluded tag in a query will override that
 exclusion.
-- 
1.7.8.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] doc: minor corrections in notmuch-config.1
  2012-02-28 18:42 [PATCH] doc: minor corrections in notmuch-config.1 Pieter Praet
@ 2012-02-28 19:33 ` Jani Nikula
  2012-02-28 20:23   ` Pieter Praet
  2012-02-29 11:53 ` David Bremner
  1 sibling, 1 reply; 4+ messages in thread
From: Jani Nikula @ 2012-02-28 19:33 UTC (permalink / raw)
  To: Pieter Praet, Notmuch Mail

On Tue, 28 Feb 2012 19:42:03 +0100, Pieter Praet <pieter@praet.org> wrote:
> * man/man1/notmuch-config.1
> 
>   - SYNOPSIS:
>     Remove spaces in 'section.item' arg, and indicate that
>     `notmuch config set' accepts multiple value args.
> 
>   - DESCRIPTION:
>     Correct config option to exclude tags from search results.
>     ('search.exclude_tags' instead of 'search.exclude')

Oops, good catch. And thanks for showing that there was at least someone
who read the patch/man. :)

Jani.


> 
> Also see commit bb8ab4c8.
> ---
> 
> See my reply to id:"1330208621-7462-1-git-send-email-jani@nikula.org".
> 
>  man/man1/notmuch-config.1 |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1
> index 0260eb7..3d69cc6 100644
> --- a/man/man1/notmuch-config.1
> +++ b/man/man1/notmuch-config.1
> @@ -4,10 +4,10 @@ notmuch-config \- Access notmuch configuration file.
>  .SH SYNOPSIS
>  
>  .B notmuch config get
> -.RI  "<" section "> . <" item ">"
> +.RI  "<" section ">.<" item ">"
>  
>  .B notmuch config set
> -.RI  "<" section "> . <" item "> [" value "]"
> +.RI  "<" section ">.<" item "> [" value " ...]"
>  
>  .SH DESCRIPTION
>  
> @@ -85,7 +85,7 @@ directory hierarchy.
>  
>  .RS 4
>  .TP 4
> -.B search.exclude
> +.B search.exclude_tags
>  A list of tags that will be excluded from search results by
>  default. Using an excluded tag in a query will override that
>  exclusion.
> -- 
> 1.7.8.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] doc: minor corrections in notmuch-config.1
  2012-02-28 19:33 ` Jani Nikula
@ 2012-02-28 20:23   ` Pieter Praet
  0 siblings, 0 replies; 4+ messages in thread
From: Pieter Praet @ 2012-02-28 20:23 UTC (permalink / raw)
  To: Jani Nikula, Notmuch Mail

On Tue, 28 Feb 2012 21:33:24 +0200, Jani Nikula <jani@nikula.org> wrote:
> On Tue, 28 Feb 2012 19:42:03 +0100, Pieter Praet <pieter@praet.org> wrote:
> > * man/man1/notmuch-config.1
> > 
> >   - SYNOPSIS:
> >     Remove spaces in 'section.item' arg, and indicate that
> >     `notmuch config set' accepts multiple value args.
> > 
> >   - DESCRIPTION:
> >     Correct config option to exclude tags from search results.
> >     ('search.exclude_tags' instead of 'search.exclude')
> 
> Oops, good catch. And thanks for showing that there was at least someone
> who read the patch/man. :)
>

Hehe :)

Rest assured: lack of replies != lack of readership/appreciation/scrutiny.

Also, I think I'm not the only one having a hard time shaking off the
candystore effect (so much good stuff, so little time to give it all
a try, the Paradox of Choice) whenever checking out the Notmuch ML.

Combine that with the realities of life and the need to scratch one's
own itches, and the end result is an intermittently unresponsive list.

Still the best damn list ever though... :)

> Jani.
> 
> [...]


Peace

-- 
Pieter

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] doc: minor corrections in notmuch-config.1
  2012-02-28 18:42 [PATCH] doc: minor corrections in notmuch-config.1 Pieter Praet
  2012-02-28 19:33 ` Jani Nikula
@ 2012-02-29 11:53 ` David Bremner
  1 sibling, 0 replies; 4+ messages in thread
From: David Bremner @ 2012-02-29 11:53 UTC (permalink / raw)
  To: Pieter Praet, Notmuch Mail

On Tue, 28 Feb 2012 19:42:03 +0100, Pieter Praet <pieter@praet.org> wrote:
> * man/man1/notmuch-config.1

pushed

d

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-29 11:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-28 18:42 [PATCH] doc: minor corrections in notmuch-config.1 Pieter Praet
2012-02-28 19:33 ` Jani Nikula
2012-02-28 20:23   ` Pieter Praet
2012-02-29 11:53 ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).