mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
Update prefix so that "thread:" can be used in search strings.
It's convenient to be able to do things like: notmuch tag -inbox thread:<thread-id> (even though this can run into a race condition as noted in TODO--the fix for the race is simply to not run "notmuch new" between reading a thread with the (not yet existent) "notmuch show" and removing its inbox tag with a command like the above). So we now allow such a thing.
This commit is contained in:
parent
326f73374e
commit
5eaec1e316
1 changed files with 1 additions and 1 deletions
|
@ -104,12 +104,12 @@ typedef struct {
|
|||
|
||||
prefix_t BOOLEAN_PREFIX_INTERNAL[] = {
|
||||
{ "type", "T" },
|
||||
{ "thread", "G" },
|
||||
{ "ref", "XREFERENCE" },
|
||||
{ "timestamp", "XTIMESTAMP" },
|
||||
};
|
||||
|
||||
prefix_t BOOLEAN_PREFIX_EXTERNAL[] = {
|
||||
{ "thread", "G" },
|
||||
{ "tag", "K" },
|
||||
{ "id", "Q" }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue