Add: tags-all, tags&

This commit is contained in:
Adam Porter 2019-09-05 13:21:59 -05:00
parent dcad551760
commit f55aae782c
3 changed files with 15 additions and 1 deletions

View file

@ -330,7 +330,10 @@ Replaces bare strings with (regexp) selectors, and appropriate
;; Quote comparator.
`(priority ',comparator ,letter))
;; Tags: inherited and local predicate aliases.
;; Tags.
(`(,(or 'tags-all 'tags&) . ,tags) `(and ,@(--map `(tags ,it) tags)))
;; MAYBE: -all versions for inherited and local.
;; Inherited and local predicate aliases.
(`(,(or 'tags-i 'itags 'inherited-tags) . ,tags) `(tags-inherited ,@tags))
(`(,(or 'tags-l 'ltags 'local-tags) . ,tags) `(tags-local ,@tags))