From: Adrian Perez Date: Thu, 19 Nov 2009 00:07:22 +0000 (+0100) Subject: Allow lone "not" search operators X-Git-Tag: 0.1~426 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e5da2b701fc172d2255f205414f18c40f4343fbb;hp=e5da2b701fc172d2255f205414f18c40f4343fbb;ds=sidebyside Allow lone "not" search operators As suggested by Keith in FLAG_PURE_NOT allows for expressions like: notmuch search NOT tag:inbox Note that this way a search like: notmuch search foobar NOT tag:inbox should not be written instead: notmuch search foobar AND NOT tag:inbox In my opinion, the latter feels more natural and is somewhat more explicit. It gives a better clue of what the search is about instead of assuming that an implicit AND operator is there. ---