mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Revert "Vim: Ensure that every queries respect excluded tags"
This reverts commit 0998fa9a09
.
per id:CAMP44s2k+fthVXCS9R9kQRzzwWbnS7RAcKg1Q0m6q5Ybzdm71Q@mail.gmail.com
This commit is contained in:
parent
0998fa9a09
commit
b34bc7c789
1 changed files with 9 additions and 3 deletions
|
@ -317,6 +317,9 @@ ruby << EOF
|
||||||
$curbuf.render do |b|
|
$curbuf.render do |b|
|
||||||
q = $curbuf.query(get_cur_view)
|
q = $curbuf.query(get_cur_view)
|
||||||
q.sort = Notmuch::SORT_OLDEST_FIRST
|
q.sort = Notmuch::SORT_OLDEST_FIRST
|
||||||
|
$exclude_tags.each { |t|
|
||||||
|
q.add_tag_exclude(t)
|
||||||
|
}
|
||||||
msgs = q.search_messages
|
msgs = q.search_messages
|
||||||
msgs.each do |msg|
|
msgs.each do |msg|
|
||||||
m = Mail.read(msg.filename)
|
m = Mail.read(msg.filename)
|
||||||
|
@ -640,6 +643,9 @@ ruby << EOF
|
||||||
$searches.clear
|
$searches.clear
|
||||||
folders.each do |name, search|
|
folders.each do |name, search|
|
||||||
q = $curbuf.query(search)
|
q = $curbuf.query(search)
|
||||||
|
$exclude_tags.each { |t|
|
||||||
|
q.add_tag_exclude(t)
|
||||||
|
}
|
||||||
$searches << search
|
$searches << search
|
||||||
count = count_threads ? q.count_threads : q.count_messages
|
count = count_threads ? q.count_threads : q.count_messages
|
||||||
b << "%9d %-20s (%s)" % [count, name, search]
|
b << "%9d %-20s (%s)" % [count, name, search]
|
||||||
|
@ -651,6 +657,9 @@ ruby << EOF
|
||||||
date_fmt = VIM::evaluate('g:notmuch_date_format')
|
date_fmt = VIM::evaluate('g:notmuch_date_format')
|
||||||
q = $curbuf.query(search)
|
q = $curbuf.query(search)
|
||||||
q.sort = Notmuch::SORT_NEWEST_FIRST
|
q.sort = Notmuch::SORT_NEWEST_FIRST
|
||||||
|
$exclude_tags.each { |t|
|
||||||
|
q.add_tag_exclude(t)
|
||||||
|
}
|
||||||
$threads.clear
|
$threads.clear
|
||||||
t = q.search_threads
|
t = q.search_threads
|
||||||
|
|
||||||
|
@ -702,9 +711,6 @@ ruby << EOF
|
||||||
def query(*args)
|
def query(*args)
|
||||||
q = @db.query(*args)
|
q = @db.query(*args)
|
||||||
@queries << q
|
@queries << q
|
||||||
$exclude_tags.each { |t|
|
|
||||||
q.add_tag_exclude(t)
|
|
||||||
}
|
|
||||||
q
|
q
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue