unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [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

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).