* [PATCH 1/2] Vim: Respect excluded tags when showing a thread
@ 2021-02-16 23:43 Jules Aguillon
2021-02-16 23:43 ` [PATCH 2/2] Vim: Ensure that every queries respect excluded tags Jules Aguillon
2021-04-23 12:23 ` [PATCH 1/2] Vim: Respect excluded tags when showing a thread David Bremner
0 siblings, 2 replies; 10+ messages in thread
From: Jules Aguillon @ 2021-02-16 23:43 UTC (permalink / raw)
To: notmuch; +Cc: Jules Aguillon
Other queries have exclude_tags taken into account but this one.
This is annoying when using an excluded tag to ignore past messages from a
thread (for example the 'deleted' tag), the entire thread is shown all the
time.
---
NEWS | 5 +++++
vim/notmuch.vim | 3 +++
2 files changed, 8 insertions(+)
diff --git a/NEWS b/NEWS
index 6484567e..325acf22 100644
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,11 @@ Library
Fix for memory error in notmuch_database_get_config_list
+Vim
+---
+
+Respect excluded tags when showing a thread.
+
Notmuch 0.31.2 (2020-11-08)
===========================
diff --git a/vim/notmuch.vim b/vim/notmuch.vim
index ad8b7c80..4c7add3b 100644
--- a/vim/notmuch.vim
+++ b/vim/notmuch.vim
@@ -317,6 +317,9 @@ ruby << EOF
$curbuf.render do |b|
q = $curbuf.query(get_cur_view)
q.sort = Notmuch::SORT_OLDEST_FIRST
+ $exclude_tags.each { |t|
+ q.add_tag_exclude(t)
+ }
msgs = q.search_messages
msgs.each do |msg|
m = Mail.read(msg.filename)
--
2.30.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] Vim: Ensure that every queries respect excluded tags
2021-02-16 23:43 [PATCH 1/2] Vim: Respect excluded tags when showing a thread Jules Aguillon
@ 2021-02-16 23:43 ` Jules Aguillon
2021-04-28 3:41 ` Felipe Contreras
2021-04-23 12:23 ` [PATCH 1/2] Vim: Respect excluded tags when showing a thread David Bremner
1 sibling, 1 reply; 10+ messages in thread
From: Jules Aguillon @ 2021-02-16 23:43 UTC (permalink / raw)
To: notmuch; +Cc: Jules Aguillon
This makes sure that the bug solved by the previous commit won't happen again
and remove some dupplication.
This shouldn't have any side effect.
---
vim/notmuch.vim | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/vim/notmuch.vim b/vim/notmuch.vim
index 4c7add3b..d5f4f3a7 100644
--- a/vim/notmuch.vim
+++ b/vim/notmuch.vim
@@ -317,9 +317,6 @@ ruby << EOF
$curbuf.render do |b|
q = $curbuf.query(get_cur_view)
q.sort = Notmuch::SORT_OLDEST_FIRST
- $exclude_tags.each { |t|
- q.add_tag_exclude(t)
- }
msgs = q.search_messages
msgs.each do |msg|
m = Mail.read(msg.filename)
@@ -643,9 +640,6 @@ ruby << EOF
$searches.clear
folders.each do |name, search|
q = $curbuf.query(search)
- $exclude_tags.each { |t|
- q.add_tag_exclude(t)
- }
$searches << search
count = count_threads ? q.count_threads : q.count_messages
b << "%9d %-20s (%s)" % [count, name, search]
@@ -657,9 +651,6 @@ ruby << EOF
date_fmt = VIM::evaluate('g:notmuch_date_format')
q = $curbuf.query(search)
q.sort = Notmuch::SORT_NEWEST_FIRST
- $exclude_tags.each { |t|
- q.add_tag_exclude(t)
- }
$threads.clear
t = q.search_threads
@@ -711,6 +702,9 @@ ruby << EOF
def query(*args)
q = @db.query(*args)
@queries << q
+ $exclude_tags.each { |t|
+ q.add_tag_exclude(t)
+ }
q
end
--
2.30.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-02-16 23:43 [PATCH 1/2] Vim: Respect excluded tags when showing a thread Jules Aguillon
2021-02-16 23:43 ` [PATCH 2/2] Vim: Ensure that every queries respect excluded tags Jules Aguillon
@ 2021-04-23 12:23 ` David Bremner
2021-04-25 16:42 ` Felipe Contreras
1 sibling, 1 reply; 10+ messages in thread
From: David Bremner @ 2021-04-23 12:23 UTC (permalink / raw)
To: Jules Aguillon, notmuch; +Cc: Felipe Contreras
Jules Aguillon <juloo.dsi@gmail.com> writes:
> Other queries have exclude_tags taken into account but this one.
> This is annoying when using an excluded tag to ignore past messages from a
> thread (for example the 'deleted' tag), the entire thread is shown all the
Hi;
The two of you are the most recent submitters of patches [1] to the vim
frontend for notmuch. You might want to consider helping test and/or
review each other's patches.
d
[1]: https://nmbug.notmuchmail.org/nmweb/search/vim
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-04-23 12:23 ` [PATCH 1/2] Vim: Respect excluded tags when showing a thread David Bremner
@ 2021-04-25 16:42 ` Felipe Contreras
2021-04-26 23:39 ` David Bremner
0 siblings, 1 reply; 10+ messages in thread
From: Felipe Contreras @ 2021-04-25 16:42 UTC (permalink / raw)
To: David Bremner; +Cc: Jules Aguillon, notmuch@notmuchmail.org
On Fri, Apr 23, 2021 at 7:23 AM David Bremner <david@tethera.net> wrote:
>
> Jules Aguillon <juloo.dsi@gmail.com> writes:
>
> > Other queries have exclude_tags taken into account but this one.
> > This is annoying when using an excluded tag to ignore past messages from a
> > thread (for example the 'deleted' tag), the entire thread is shown all the
>
> The two of you are the most recent submitters of patches [1] to the vim
> frontend for notmuch. You might want to consider helping test and/or
> review each other's patches.
I don't need to test it, the patch is obviously correct.
Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
--
Felipe Contreras
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-04-25 16:42 ` Felipe Contreras
@ 2021-04-26 23:39 ` David Bremner
2021-04-27 19:42 ` Felipe Contreras
0 siblings, 1 reply; 10+ messages in thread
From: David Bremner @ 2021-04-26 23:39 UTC (permalink / raw)
To: Felipe Contreras; +Cc: Jules Aguillon, notmuch@notmuchmail.org
Felipe Contreras <felipe.contreras@gmail.com> writes:
>
> I don't need to test it, the patch is obviously correct.
>
> Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
Famous last words ;). But OK, applied to master.
d
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-04-26 23:39 ` David Bremner
@ 2021-04-27 19:42 ` Felipe Contreras
2021-04-27 20:09 ` David Bremner
0 siblings, 1 reply; 10+ messages in thread
From: Felipe Contreras @ 2021-04-27 19:42 UTC (permalink / raw)
To: David Bremner; +Cc: Jules Aguillon, notmuch@notmuchmail.org
On Mon, Apr 26, 2021 at 6:39 PM David Bremner <david@tethera.net> wrote:
>
> Felipe Contreras <felipe.contreras@gmail.com> writes:
> >
> > I don't need to test it, the patch is obviously correct.
> >
> > Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
>
> Famous last words ;). But OK, applied to master.
Er, I acked the first patch, not the second.
The second one will likely introduce issues.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-04-27 19:42 ` Felipe Contreras
@ 2021-04-27 20:09 ` David Bremner
2021-04-27 21:49 ` Felipe Contreras
0 siblings, 1 reply; 10+ messages in thread
From: David Bremner @ 2021-04-27 20:09 UTC (permalink / raw)
To: Felipe Contreras; +Cc: Jules Aguillon, notmuch@notmuchmail.org
Felipe Contreras <felipe.contreras@gmail.com> writes:
> On Mon, Apr 26, 2021 at 6:39 PM David Bremner <david@tethera.net> wrote:
>>
>> Felipe Contreras <felipe.contreras@gmail.com> writes:
>> >
>> > I don't need to test it, the patch is obviously correct.
>> >
>> > Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
>>
>> Famous last words ;). But OK, applied to master.
>
> Er, I acked the first patch, not the second.
>
> The second one will likely introduce issues.
OK, let me know if I should revert the second patch.
d
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] Vim: Respect excluded tags when showing a thread
2021-04-27 20:09 ` David Bremner
@ 2021-04-27 21:49 ` Felipe Contreras
2021-04-28 10:32 ` David Bremner
0 siblings, 1 reply; 10+ messages in thread
From: Felipe Contreras @ 2021-04-27 21:49 UTC (permalink / raw)
To: David Bremner; +Cc: Jules Aguillon, notmuch@notmuchmail.org
On Tue, Apr 27, 2021 at 3:09 PM David Bremner <david@tethera.net> wrote:
>
> Felipe Contreras <felipe.contreras@gmail.com> writes:
>
> > On Mon, Apr 26, 2021 at 6:39 PM David Bremner <david@tethera.net> wrote:
> >>
> >> Felipe Contreras <felipe.contreras@gmail.com> writes:
> >> >
> >> > I don't need to test it, the patch is obviously correct.
> >> >
> >> > Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
> >>
> >> Famous last words ;). But OK, applied to master.
> >
> > Er, I acked the first patch, not the second.
> >
> > The second one will likely introduce issues.
>
> OK, let me know if I should revert the second patch.
Yes please.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-04-28 10:32 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-16 23:43 [PATCH 1/2] Vim: Respect excluded tags when showing a thread Jules Aguillon
2021-02-16 23:43 ` [PATCH 2/2] Vim: Ensure that every queries respect excluded tags Jules Aguillon
2021-04-28 3:41 ` Felipe Contreras
2021-04-23 12:23 ` [PATCH 1/2] Vim: Respect excluded tags when showing a thread David Bremner
2021-04-25 16:42 ` Felipe Contreras
2021-04-26 23:39 ` David Bremner
2021-04-27 19:42 ` Felipe Contreras
2021-04-27 20:09 ` David Bremner
2021-04-27 21:49 ` Felipe Contreras
2021-04-28 10:32 ` 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).