You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A tag expression is a string consisting of one more statements of the form "+TAG"
or "-TAG" to add or remove TAG, respectively, separated by whitespace
But it's valid for tags themselves to have whitespace
Looking at how this is used, we could just switch to a list instead of string
so then later there's no need to tag_expr.split() and break any tags containing spaces.
Hmm, there's probably some other bugs too if anyone has a tag containing "+" or "-". I know sometimes (in general) I put in the first character of a tag or label things like "!", "#", "-", "+" etc. to make those appear at the top of various sorted lists in a UI.
hey I'm using lieer which syncs tags to gmail labels so I'll have tags that looks like this "the tag/with stuff"
In dodo it lists all the tags but says there are zero messages for them.
Investigating a bit with notmuch, the following notmuch commands return nothing:
But the following does work:
I found that working combo here https://notmuchmail.org/pipermail/notmuch/2012/013532.html
so checking some of the calls dodo makes
stuff like this
I think should be like
just wrapping the tag in double quote (I think the extra single quotes are only needed in a shell)
I'll see if I can try fixing it
The text was updated successfully, but these errors were encountered: