X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=vim%2Fnotmuch.vim;fp=vim%2Fnotmuch.vim;h=c1c2f63d20178dab69f92c9ff9aab4631dda6ee5;hp=8e547d4e50a16202c1a2a8c99d414e6a7f898f08;hb=b34bc7c7895814da33a6df2f056ec32bc18e59ae;hpb=0998fa9a09387b622d770fc8c5f780a951b0cf2a diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 8e547d4e..c1c2f63d 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) @@ -640,6 +643,9 @@ 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] @@ -651,6 +657,9 @@ 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 @@ -702,9 +711,6 @@ ruby << EOF def query(*args) q = @db.query(*args) @queries << q - $exclude_tags.each { |t| - q.add_tag_exclude(t) - } q end