Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 693 Bytes

examples.org

File metadata and controls

20 lines (12 loc) · 693 Bytes

Examples

Showing TO-READ entries containing the word “lisp”

This query would be difficult to write in a standard Org Agenda search, because it matches against a to-do keyword and a plain-text search. As described in the advanced searching tutorial, it would require using org-search-view with a query with specific regular expression syntax, like this:

+lisp +{^\*+\s-+TO-READ\s-}

But with org-ql or org-agenda-ng, you would write:

(org-agenda-ng
  (and (regexp "lisp")
       (todo "TO-READ")))