-
Hey guys, Sorry if this is obvious/been answered elsewhere but I couldn't find anything I want to search my todo list for old research meeting notes. This would be done along the lines of
I've tried Is there some other query type I'm missing or is this something that isn't currently possible? Thanks for the great software!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
regexp/rifle
is not a valid predicate. As the documentation explains,regexp
"Matches against entire entry, from beginning of its heading to the next heading." In your example, the textJohn
is not present in an entry having aMEET
to-do keyword. You probably want to use theparent
orancestor
predicate for the keyword, e.g.(and (ancestor (todo "MEET")) (tags "research") "John")
.