Re: the future of notmuch-vim?

2013-04-03 Thread guyzmo
Hi On Tue, Apr 02, 2013 at 01:55:13PM -0600, Felipe Contreras wrote: Sorry for the late reply, I wasn't following the ml. same here David Bremner wrote: - There are now several alternatives for people whose only motivation to use the vim frontend was dislike of emacs (alot and

Re: the future of notmuch-vim?

2013-04-03 Thread Patrick Totzke
Quoting guyzmo (2013-04-03 07:01:58) ... It may be nice and/or fun to use that kind of things in vim, but really, it's opposite to the philosophy of vim. ... Whereas you seem to have done a really good job integrating it to vim, I personally think that anything that

Re: the future of notmuch-vim?

2013-04-03 Thread Felipe Contreras
guyzmo wrote: On Tue, Apr 02, 2013 at 01:55:13PM -0600, Felipe Contreras wrote: Sorry for the late reply, I wasn't following the ml. same here David Bremner wrote: - There are now several alternatives for people whose only motivation to use the vim frontend was dislike of emacs

[PATCH] lib: Add a new prefix list to the search-terms syntax

2013-04-03 Thread Alexey I. Froloff
From: Alexey I. Froloff ra...@raorn.name Add support for indexing and searching the message's List-Id header. This is useful when matching all the messages belonging to a particular mailing list. Rework of the patch by Pablo Oliveira pa...@sifflez.org Cc: Pablo Oliveira pa...@sifflez.org

[PATCH 1/1] emacs/notmuch-address.el: add notmuch-address-selection-function

2013-04-03 Thread Tomi Ollila
Added a customizable variable notmuch-address-selection-function and the function with the same name to provide a way for user to change the function called to do address selection. By default the functionality is exactly the same as it has been so far; completing-read is called with the same

Re: the future of notmuch-vim?

2013-04-03 Thread Suvayu Ali
On Wed, Apr 03, 2013 at 03:09:39AM -0600, Felipe Contreras wrote: guyzmo wrote: I personnally prefer a thousand times to use mutt-kz, alot as MUA, and vim only for writing mails. [...] I've tried mutt-kz and alot, and I was utterly dissapointed by both. See how snappy and fast

Re: the future of notmuch-vim?

2013-04-03 Thread Patrick Totzke
Quoting Felipe Contreras (2013-04-03 10:09:39) ... What you prefer is irrelevant; it's relevant only for you, that's why it's called a *preference*, the rest of us prefer different things. Never mind preferences, I think originally, this thread was about dropping *support* for the *original*

[PATCH] debian: package ruby bindings

2013-04-03 Thread Felipe Contreras
Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- debian/control | 14 ++ debian/notmuch-ruby.install | 1 + debian/rules| 9 + 3 files changed, 24 insertions(+) create mode 100644 debian/notmuch-ruby.install diff --git

Re: the future of notmuch-vim?

2013-04-03 Thread Felipe Contreras
On Wed, Apr 3, 2013 at 3:48 PM, Patrick Totzke patricktot...@gmail.com wrote: Quoting Felipe Contreras (2013-04-03 10:09:39) ... What you prefer is irrelevant; it's relevant only for you, that's why it's called a *preference*, the rest of us prefer different things. Never mind preferences, I

[ANN] notmuch-vim-ruby v0.5

2013-04-03 Thread Felipe Contreras
Hi, After a long period of inactivity, here is the new version of notmuch-vim-ruby. The main changes are: * New fallback mode when mail gem is not available * Simplified build and setup * More features: arbitrary tags, save messages * Saner defaults So the chances it will work properly right

[PATCH v5 00/12] insert command

2013-04-03 Thread Peter Wang
- rebased - cleaned up insert_message, sync_dir error paths - clarified maildir destination in man page Peter Wang (12): tag-util: move out 'tag' command-line checks tag-util: do not reset list in parse_tag_command_line cli: add insert command man: document 'insert' command man:

[PATCH v5 01/12] tag-util: move out 'tag' command-line checks

2013-04-03 Thread Peter Wang
parse_tag_command_line checked for two error conditions which are specific to the 'tag' command. It can be reused for the forthcoming notmuch 'insert' command if we move the checks out, into notmuch-tag.c. --- notmuch-tag.c | 5 + tag-util.c| 6 +++--- 2 files changed, 8 insertions(+), 3

[PATCH v5 02/12] tag-util: do not reset list in parse_tag_command_line

2013-04-03 Thread Peter Wang
No current callers of parse_tag_command_line require that it clear its tag list argument. The notmuch 'insert' command will be better served if the function modifies a pre-populated list (of new.tags) instead of clobbering it outright. --- tag-util.c | 2 -- tag-util.h | 2 ++ 2 files changed, 2

[PATCH v5 03/12] cli: add insert command

2013-04-03 Thread Peter Wang
The notmuch insert command reads a message from standard input, writes it to a Maildir folder, and then incorporates the message into the notmuch database. Essentially it moves the functionality of notmuch-deliver into notmuch. Though it could be used as an alternative to notmuch new, the reason

[PATCH v5 04/12] man: document 'insert' command

2013-04-03 Thread Peter Wang
Add initial documentation for notmuch insert command. --- man/Makefile.local| 1 + man/man1/notmuch-insert.1 | 38 ++ 2 files changed, 39 insertions(+) create mode 100644 man/man1/notmuch-insert.1 diff --git a/man/Makefile.local b/man/Makefile.local

[PATCH v5 05/12] man: reference notmuch-insert.1

2013-04-03 Thread Peter Wang
Add references to notmuch-insert.1 from other man pages. --- man/man1/notmuch-config.1 | 4 ++-- man/man1/notmuch-count.1| 4 ++-- man/man1/notmuch-dump.1 | 4 ++-- man/man1/notmuch-new.1 | 4 ++-- man/man1/notmuch-reply.1| 3 ++- man/man1/notmuch-restore.1

[PATCH v5 07/12] insert: add --folder option

2013-04-03 Thread Peter Wang
Allow the new message to be inserted into a folder within the Maildir hierarchy instead of the top-level folder. --- notmuch-insert.c | 47 +-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/notmuch-insert.c b/notmuch-insert.c index

[PATCH v5 08/12] man: document insert --folder option

2013-04-03 Thread Peter Wang
Add documentation for notmuch insert --folder option. --- man/man1/notmuch-insert.1 | 14 ++ 1 file changed, 14 insertions(+) diff --git a/man/man1/notmuch-insert.1 b/man/man1/notmuch-insert.1 index 870e1bc..0d7bccd 100644 --- a/man/man1/notmuch-insert.1 +++

[PATCH v5 09/12] test: test insert --folder option

2013-04-03 Thread Peter Wang
Add tests for notmuch insert --folder option. --- test/insert | 17 + 1 file changed, 17 insertions(+) diff --git a/test/insert b/test/insert index d880af9..44e071c 100755 --- a/test/insert +++ b/test/insert @@ -66,4 +66,21 @@ notmuch insert +custom -unread < "$gen_msg_filename"

[PATCH v5 10/12] insert: add --create-folder option

2013-04-03 Thread Peter Wang
Allow the insert command to create the maildir folder into which the new message should be delivered. --- notmuch-insert.c | 100 +++ 1 file changed, 100 insertions(+) diff --git a/notmuch-insert.c b/notmuch-insert.c index 778ac04..8ae5dc9

[PATCH v5 11/12] man: document insert --create-folder

2013-04-03 Thread Peter Wang
Add documentation for notmuch insert --create-folder option. --- man/man1/notmuch-insert.1 | 12 1 file changed, 12 insertions(+) diff --git a/man/man1/notmuch-insert.1 b/man/man1/notmuch-insert.1 index 0d7bccd..74d6a3d 100644 --- a/man/man1/notmuch-insert.1 +++

[PATCH v5 12/12] test: test insert --create-folder option

2013-04-03 Thread Peter Wang
Add tests for notmuch insert --create-folder option. --- test/insert | 24 1 file changed, 24 insertions(+) diff --git a/test/insert b/test/insert index 44e071c..24a61e1 100755 --- a/test/insert +++ b/test/insert @@ -83,4 +83,28 @@ gen_insert_msg test_expect_code 1

the future of notmuch-vim?

2013-04-03 Thread guyzmo
Hi On Tue, Apr 02, 2013 at 01:55:13PM -0600, Felipe Contreras wrote: > Sorry for the late reply, I wasn't following the ml. same here > David Bremner wrote: > > - There are now several alternatives for people whose only motivation to > > use the vim frontend was dislike of emacs (alot and

the future of notmuch-vim?

2013-04-03 Thread Patrick Totzke
Quoting guyzmo (2013-04-03 07:01:58) > ... > It may be nice and/or fun to use that kind of things in vim, but > really, it's opposite to the philosophy of vim. > ... > Whereas you seem to have done a really good job integrating it to > vim, I personally think that anything

the future of notmuch-vim?

2013-04-03 Thread Felipe Contreras
guyzmo wrote: > On Tue, Apr 02, 2013 at 01:55:13PM -0600, Felipe Contreras wrote: > > Sorry for the late reply, I wasn't following the ml. > > same here > > > David Bremner wrote: > > > - There are now several alternatives for people whose only motivation to > > > use the vim frontend was

[PATCH] lib: Add a new prefix "list" to the search-terms syntax

2013-04-03 Thread Alexey I. Froloff
From: "Alexey I. Froloff" Add support for indexing and searching the message's List-Id header. This is useful when matching all the messages belonging to a particular mailing list. Rework of the patch by Pablo Oliveira Cc: Pablo Oliveira Signed-off-by: Alexey I. Froloff

the future of notmuch-vim?

2013-04-03 Thread Suvayu Ali
On Wed, Apr 03, 2013 at 03:09:39AM -0600, Felipe Contreras wrote: > guyzmo wrote: > > > I personnally prefer a thousand times to use mutt-kz, alot as MUA, and > > vim only for writing mails. [...] > I've tried mutt-kz and alot, and I was utterly dissapointed by both. > > See how snappy

the future of notmuch-vim?

2013-04-03 Thread Patrick Totzke
e: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: signature URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20130403/52f7d441/attachment.pgp>

[PATCH] debian: package ruby bindings

2013-04-03 Thread Felipe Contreras
Signed-off-by: Felipe Contreras --- debian/control | 14 ++ debian/notmuch-ruby.install | 1 + debian/rules| 9 + 3 files changed, 24 insertions(+) create mode 100644 debian/notmuch-ruby.install diff --git a/debian/control b/debian/control

the future of notmuch-vim?

2013-04-03 Thread Felipe Contreras
On Wed, Apr 3, 2013 at 3:48 PM, Patrick Totzke wrote: > Quoting Felipe Contreras (2013-04-03 10:09:39) >> ... >> What you prefer is irrelevant; it's relevant only for you, that's why it's >> called a *preference*, the rest of us prefer different things. > > Never mind preferences, I think

[ANN] notmuch-vim-ruby v0.5

2013-04-03 Thread Felipe Contreras
Hi, After a long period of inactivity, here is the new version of notmuch-vim-ruby. The main changes are: * New fallback mode when mail gem is not available * Simplified build and setup * More features: arbitrary tags, save messages * Saner defaults So the chances it will work properly right

Bug#704648: notmuch-emacs: M-x notmuch-show-reply on an encrypted message should insert encryption tags into the mml buffer

2013-04-03 Thread Daniel Kahn Gillmor
Package: notmuch-emacs Version: 0.15.2-1 Severity: normal When i'm viewing an encrypted message in notmuch-emacs, and i hit R (or M-x notmuch-show-reply), it drops me into an mml compose buffer with the decrypted message body properly quoted and attributed. If I go ahead and send that reply, the