Merge 32cf9d9986 into 4f62ba3bd6
This commit is contained in:
commit
70fa807c70
1 changed files with 10 additions and 5 deletions
|
|
@ -884,7 +884,12 @@ return an empty string."
|
||||||
(display-warning 'org-ql (format "No marker found for item: %s" title))
|
(display-warning 'org-ql (format "No marker found for item: %s" title))
|
||||||
(org-element-property :tags element))
|
(org-element-property :tags element))
|
||||||
(org-element-property :tags element)))
|
(org-element-property :tags element)))
|
||||||
(tag-string (when tag-list
|
(tag-string (when-let
|
||||||
|
((tag-list (if (not org-agenda-hide-tags-regexp)
|
||||||
|
tag-list
|
||||||
|
(cl-remove-if
|
||||||
|
(lambda (tag) (string-match-p org-agenda-hide-tags-regexp tag))
|
||||||
|
tag-list))))
|
||||||
(--> tag-list
|
(--> tag-list
|
||||||
(s-join ":" it)
|
(s-join ":" it)
|
||||||
(s-wrap it ":")
|
(s-wrap it ":")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue