-
Notifications
You must be signed in to change notification settings - Fork 118
Closed
Description
I've tried several styles to specify filetags, unfortunately none of them are working. Example file:
#+FILETAGS: :Peter:Boss:Secret:
#+FILETAGS: :Boss:
#+FILETAGS: Secret
* Meeting with the French group :work:
** Summary by Frank :boss:notes:
*** TODO Prepare slides for him :action:
Inheritance from headline works OK:
(org-ql-search "~/testfile.org"
'(tags "work")) => 3 items
And none of the filetags are matched:
(org-ql-search "~/testfile.org"
'(tags "Peter")) => 0 items
(org-ql-search "~/testfile.org"
'(tags "Boss")) => 0 items
(org-ql-search "~/testfile.org"
'(tags "Secret")) => 0 items