[PATCH v2] NEWS & doc: typing fixes

2014-11-15 Thread Tomi Ollila
Some inconsistent formatting in NEWS for 0.19, 0.18 & 0.17 fixed.

Extra `*` when making bold text in doc/man1/notmuch-search.rst removed.
---

In addition to id:1416061348-8062-1-git-send-email-tomi.ollila at iki.fi
adds fix to 0.19 formatting.

 NEWS| 8 
 doc/man1/notmuch-search.rst | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/NEWS b/NEWS
index 80679bd..44e8d05 100644
--- a/NEWS
+++ b/NEWS
@@ -126,8 +126,8 @@ Library users can now abort an atomic section by closing 
the database
   Callers can now simply close the database, and any outstanding
   atomic section will be aborted.

-Add return status to notmuch_database_close and
-notmuch_database_destroy
+Add return status to `notmuch_database_close` and
+`notmuch_database_destroy`

 Bug fixes and performance improvements for thread linking

@@ -208,7 +208,7 @@ Make emacs install robust against the non-existence of emacs

 Put notmuch lib directory first in RPATH

-Fix handling of html_static_path in sphinx
+Fix handling of `html_static_path` in sphinx

   Both the python bindings and the main docs had spurious settings of
   this variable.
@@ -283,7 +283,7 @@ The `folder:` search prefix now requires an exact match
   advised to see the `notmuch-search-terms` manual page for details,
   and review how the change affects their existing `folder:` searches.

-There is a new `path:` search prefix.
+There is a new `path:` search prefix

   The new `path:` search prefix complements the `folder:` prefix. The
   `path:` prefix searches for email messages that are in particular
diff --git a/doc/man1/notmuch-search.rst b/doc/man1/notmuch-search.rst
index 0cc2911..1af56c4 100644
--- a/doc/man1/notmuch-search.rst
+++ b/doc/man1/notmuch-search.rst
@@ -153,4 +153,4 @@ SEE ALSO
 **notmuch-dump(1)**, **notmuch-hooks(5)**, **notmuch-insert(1)**,
 **notmuch-new(1)**, **notmuch-reply(1)**, **notmuch-restore(1)**,
 **notmuch-search-terms(7)**, **notmuch-show(1)**, **notmuch-tag(1)**
-***notmuch-address(1)**
+**notmuch-address(1)**
-- 
1.9.3



[PATCH] NEWS & doc: typing fixes

2014-11-15 Thread Tomi Ollila
Some inconsistent formatting in (old) NEWS for 0.18 & 0.17 fixed.

Extra `*` when making bold text in doc/man1/notmuch-search.rst removed.
---
 NEWS| 4 ++--
 doc/man1/notmuch-search.rst | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 80679bd..fae6ae7 100644
--- a/NEWS
+++ b/NEWS
@@ -208,7 +208,7 @@ Make emacs install robust against the non-existence of emacs

 Put notmuch lib directory first in RPATH

-Fix handling of html_static_path in sphinx
+Fix handling of `html_static_path` in sphinx

   Both the python bindings and the main docs had spurious settings of
   this variable.
@@ -283,7 +283,7 @@ The `folder:` search prefix now requires an exact match
   advised to see the `notmuch-search-terms` manual page for details,
   and review how the change affects their existing `folder:` searches.

-There is a new `path:` search prefix.
+There is a new `path:` search prefix

   The new `path:` search prefix complements the `folder:` prefix. The
   `path:` prefix searches for email messages that are in particular
diff --git a/doc/man1/notmuch-search.rst b/doc/man1/notmuch-search.rst
index 0cc2911..1af56c4 100644
--- a/doc/man1/notmuch-search.rst
+++ b/doc/man1/notmuch-search.rst
@@ -153,4 +153,4 @@ SEE ALSO
 **notmuch-dump(1)**, **notmuch-hooks(5)**, **notmuch-insert(1)**,
 **notmuch-new(1)**, **notmuch-reply(1)**, **notmuch-restore(1)**,
 **notmuch-search-terms(7)**, **notmuch-show(1)**, **notmuch-tag(1)**
-***notmuch-address(1)**
+**notmuch-address(1)**
-- 
1.9.3



[PATCH] VIM v2: Add a 'tag all' folder option.

2014-11-15 Thread Tomi Ollila
On Sat, Nov 15 2014, David Bremner  wrote:

> Ian Main  writes:
>
>> This adds the ability to mark an entire folder as read (or any other
>> tags you like once you map it).
>>
>> This update adds documentation for the command.
>
> This seems to work. It also seems slightly dangerous as a keybinding,
> e.g. one key can remove thousands of tags. I'd like feedback from
> users about the "mapping".

Maybe yes/no (or y/n) confirmation ?


>
> d

Tomi


[PATCH] VIM v2: Add a 'tag all' folder option.

2014-11-15 Thread David Bremner
Ian Main  writes:

> This adds the ability to mark an entire folder as read (or any other
> tags you like once you map it).
>
> This update adds documentation for the command.

This seems to work. It also seems slightly dangerous as a keybinding,
e.g. one key can remove thousands of tags. I'd like feedback from
users about the "mapping".

d


[PATCH] VIM: Respect exclude_tags specified in .notmuch-config

2014-11-15 Thread David Bremner
Franz Fellner  writes:

> Exclude mails tagged with any tag specified in
> notmuch config get search.exclude_tags
> in folders list and search list.
>

This seems like an important feature and I'd like to add it.  It needs
rebasing against current master. Also, as a nitpick, please fill the
commit comment to something like 65-75 columns.

Cheers,

d


[PATCH] VIM: Automatically refresh folder screen

2014-11-15 Thread David Bremner
Ian Main  writes:

> This patch makes the folder screen refresh each time you 'enter' it.
> This way when you read a folder and mark items as read the changes are
> reflected immediately when you return to the folder view.

It seems to work, but it is pretty slow for large mailboxes. I have
27 unread messages and there is a pause of about 1 second when
returning to the "folder screen".  I'm not sure, maybe the vim interface
is just overall not usable with such large search results?



Re: [PATCH] VIM: Automatically refresh folder screen

2014-11-15 Thread David Bremner
Ian Main im...@stemwinder.org writes:

 This patch makes the folder screen refresh each time you 'enter' it.
 This way when you read a folder and mark items as read the changes are
 reflected immediately when you return to the folder view.

It seems to work, but it is pretty slow for large mailboxes. I have
27 unread messages and there is a pause of about 1 second when
returning to the folder screen.  I'm not sure, maybe the vim interface
is just overall not usable with such large search results?

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


RE: [PATCH] VIM: Respect exclude_tags specified in .notmuch-config

2014-11-15 Thread David Bremner
Franz Fellner alpine.art...@gmail.com writes:

 Exclude mails tagged with any tag specified in
 notmuch config get search.exclude_tags
 in folders list and search list.


This seems like an important feature and I'd like to add it.  It needs
rebasing against current master. Also, as a nitpick, please fill the
commit comment to something like 65-75 columns.

Cheers,

d
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] VIM v2: Add a 'tag all' folder option.

2014-11-15 Thread David Bremner
Ian Main im...@stemwinder.org writes:

 This adds the ability to mark an entire folder as read (or any other
 tags you like once you map it).

 This update adds documentation for the command.

This seems to work. It also seems slightly dangerous as a keybinding,
e.g. one key can remove thousands of tags. I'd like feedback from
users about the mapping.

d
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] VIM v2: Add a 'tag all' folder option.

2014-11-15 Thread Tomi Ollila
On Sat, Nov 15 2014, David Bremner da...@tethera.net wrote:

 Ian Main im...@stemwinder.org writes:

 This adds the ability to mark an entire folder as read (or any other
 tags you like once you map it).

 This update adds documentation for the command.

 This seems to work. It also seems slightly dangerous as a keybinding,
 e.g. one key can remove thousands of tags. I'd like feedback from
 users about the mapping.

Maybe yes/no (or y/n) confirmation ?



 d

Tomi
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[PATCH] NEWS doc: typing fixes

2014-11-15 Thread Tomi Ollila
Some inconsistent formatting in (old) NEWS for 0.18  0.17 fixed.

Extra `*` when making bold text in doc/man1/notmuch-search.rst removed.
---
 NEWS| 4 ++--
 doc/man1/notmuch-search.rst | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 80679bd..fae6ae7 100644
--- a/NEWS
+++ b/NEWS
@@ -208,7 +208,7 @@ Make emacs install robust against the non-existence of emacs
 
 Put notmuch lib directory first in RPATH
 
-Fix handling of html_static_path in sphinx
+Fix handling of `html_static_path` in sphinx
 
   Both the python bindings and the main docs had spurious settings of
   this variable.
@@ -283,7 +283,7 @@ The `folder:` search prefix now requires an exact match
   advised to see the `notmuch-search-terms` manual page for details,
   and review how the change affects their existing `folder:` searches.
 
-There is a new `path:` search prefix.
+There is a new `path:` search prefix
 
   The new `path:` search prefix complements the `folder:` prefix. The
   `path:` prefix searches for email messages that are in particular
diff --git a/doc/man1/notmuch-search.rst b/doc/man1/notmuch-search.rst
index 0cc2911..1af56c4 100644
--- a/doc/man1/notmuch-search.rst
+++ b/doc/man1/notmuch-search.rst
@@ -153,4 +153,4 @@ SEE ALSO
 **notmuch-dump(1)**, **notmuch-hooks(5)**, **notmuch-insert(1)**,
 **notmuch-new(1)**, **notmuch-reply(1)**, **notmuch-restore(1)**,
 **notmuch-search-terms(7)**, **notmuch-show(1)**, **notmuch-tag(1)**
-***notmuch-address(1)**
+**notmuch-address(1)**
-- 
1.9.3

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[PATCH v2] NEWS doc: typing fixes

2014-11-15 Thread Tomi Ollila
Some inconsistent formatting in NEWS for 0.19, 0.18  0.17 fixed.

Extra `*` when making bold text in doc/man1/notmuch-search.rst removed.
---

In addition to id:1416061348-8062-1-git-send-email-tomi.oll...@iki.fi
adds fix to 0.19 formatting.

 NEWS| 8 
 doc/man1/notmuch-search.rst | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/NEWS b/NEWS
index 80679bd..44e8d05 100644
--- a/NEWS
+++ b/NEWS
@@ -126,8 +126,8 @@ Library users can now abort an atomic section by closing 
the database
   Callers can now simply close the database, and any outstanding
   atomic section will be aborted.
 
-Add return status to notmuch_database_close and
-notmuch_database_destroy
+Add return status to `notmuch_database_close` and
+`notmuch_database_destroy`
 
 Bug fixes and performance improvements for thread linking
 
@@ -208,7 +208,7 @@ Make emacs install robust against the non-existence of emacs
 
 Put notmuch lib directory first in RPATH
 
-Fix handling of html_static_path in sphinx
+Fix handling of `html_static_path` in sphinx
 
   Both the python bindings and the main docs had spurious settings of
   this variable.
@@ -283,7 +283,7 @@ The `folder:` search prefix now requires an exact match
   advised to see the `notmuch-search-terms` manual page for details,
   and review how the change affects their existing `folder:` searches.
 
-There is a new `path:` search prefix.
+There is a new `path:` search prefix
 
   The new `path:` search prefix complements the `folder:` prefix. The
   `path:` prefix searches for email messages that are in particular
diff --git a/doc/man1/notmuch-search.rst b/doc/man1/notmuch-search.rst
index 0cc2911..1af56c4 100644
--- a/doc/man1/notmuch-search.rst
+++ b/doc/man1/notmuch-search.rst
@@ -153,4 +153,4 @@ SEE ALSO
 **notmuch-dump(1)**, **notmuch-hooks(5)**, **notmuch-insert(1)**,
 **notmuch-new(1)**, **notmuch-reply(1)**, **notmuch-restore(1)**,
 **notmuch-search-terms(7)**, **notmuch-show(1)**, **notmuch-tag(1)**
-***notmuch-address(1)**
+**notmuch-address(1)**
-- 
1.9.3

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH 2/2] NEWS: deprecate notmuch deliver

2014-11-15 Thread Sebastian Schwarz
On 2014-13-11, David Bremner da...@tethera.net wrote:
 notmuch-deliver has no commits for about 2.5 years.
 notmuch-insert has all the features that deliver does, and as
 far as I understand the error handling has now caught up.

Once upon a time I spoke out against the removal of
notmuch-deliver:
id:874na0y6x3.fsf@pineapple.i-did-not-set--mail-host-address--so-tickle-me

But now notmuch-insert has everything I need to replace
notmuch-deliver.  Thanks for getting these features into
mainline notmuch!
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH 2/2] NEWS: deprecate notmuch deliver

2014-11-15 Thread David Bremner
Sebastian Schwarz sesch...@gmail.com writes:

 On 2014-13-11, David Bremner da...@tethera.net wrote:
 notmuch-deliver has no commits for about 2.5 years.
 notmuch-insert has all the features that deliver does, and as
 far as I understand the error handling has now caught up.

 Once upon a time I spoke out against the removal of
 notmuch-deliver:
 id:874na0y6x3.fsf@pineapple.i-did-not-set--mail-host-address--so-tickle-me

 But now notmuch-insert has everything I need to replace
 notmuch-deliver.  Thanks for getting these features into
 mainline notmuch!

Thanks very much for the feedback. Of course we appreciate praise ;),
but mainly it's good to know your concerns have been addressed.

We'll keep deliver in contrib for another release in case we missed
something.

Cheers,

d
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch