All Projects → alphapapa → Org Ql

alphapapa / Org Ql

Licence: gpl-3.0
An Org-mode query language, including search commands and saved views

Projects that are alternatives of or similar to Org Ql

Org Projectile
Manage org-mode TODOs for your projectile projects
Stars: ✭ 259 (-64.08%)
Mutual labels:  emacs, org-mode
Memacs
What did I do on February 14th 2007? Visualize your (digital) life in Org-mode
Stars: ✭ 711 (-1.39%)
Mutual labels:  emacs, org-mode
Org Transclusion
(alpha) Emacs package to enable transclusion with Org Mode
Stars: ✭ 251 (-65.19%)
Mutual labels:  emacs, org-mode
Evil Org Mode
Supplemental evil-mode keybindings to emacs org-mode
Stars: ✭ 241 (-66.57%)
Mutual labels:  emacs, org-mode
Org Sidebar
A helpful sidebar for Org mode
Stars: ✭ 354 (-50.9%)
Mutual labels:  emacs, org-mode
Ob Async
Asynchronous src_block execution for org-babel
Stars: ✭ 249 (-65.46%)
Mutual labels:  emacs, org-mode
Ox Hugo
A carefully crafted Org exporter back-end for Hugo
Stars: ✭ 591 (-18.03%)
Mutual labels:  emacs, org-mode
Toc Org
toc-org is an Emacs utility to have an up-to-date table of contents in the org files without exporting (useful primarily for readme files on GitHub)
Stars: ✭ 202 (-71.98%)
Mutual labels:  emacs, org-mode
Org Wiki
Wiki for Emacs org-mode built on top of Emacs org-mode.
Stars: ✭ 319 (-55.76%)
Mutual labels:  emacs, org-mode
.emacs.d
🎉 Personal GNU Emacs configuration
Stars: ✭ 313 (-56.59%)
Mutual labels:  emacs, org-mode
Emacs Easy Hugo
Emacs major mode for managing hugo
Stars: ✭ 235 (-67.41%)
Mutual labels:  emacs, org-mode
Anki Editor
Emacs minor mode for making Anki cards with Org
Stars: ✭ 453 (-37.17%)
Mutual labels:  emacs, org-mode
Doct
DOCT: Declarative Org Capture Templates for Emacs
Stars: ✭ 210 (-70.87%)
Mutual labels:  emacs, org-mode
Mu4e Dashboard
A dashboard for mu4e (mu for emacs)
Stars: ✭ 259 (-64.08%)
Mutual labels:  emacs, org-mode
Verb
Organize and send HTTP requests from Emacs
Stars: ✭ 205 (-71.57%)
Mutual labels:  emacs, org-mode
Org Superstar Mode
Make org-mode stars a little more super
Stars: ✭ 271 (-62.41%)
Mutual labels:  emacs, org-mode
Go Org
Org mode parser with html & pretty printed org rendering. also shitty static site generator.
Stars: ✭ 177 (-75.45%)
Mutual labels:  emacs, org-mode
Org Books
Reading list management with org mode
Stars: ✭ 186 (-74.2%)
Mutual labels:  emacs, org-mode
Zetteldeft
A Zettelkasten system! Or rather, some functions on top of the emacs deft package.
Stars: ✭ 284 (-60.61%)
Mutual labels:  emacs, org-mode
Org Roam Server
A Web Application to Visualize the Org-Roam Database
Stars: ✭ 443 (-38.56%)
Mutual labels:  emacs, org-mode

#+TITLE: org-ql

NOTE: Using =BEGIN_HTML= for this causes TeX/info export to fail, but this HTML block works.

#+HTML:

#+HTML:

NOTE: To avoid having this in the info manual, we use HTML rather than Org syntax; it still appears with the GitHub renderer.

#+HTML:

This package provides a query language for Org files. It offers two syntax styles: Lisp-like sexps and search engine-like keywords.

It includes three libraries: The =org-ql= library is flexible and may be used as a backend for other tools. The libraries =org-ql-search= and =helm-org-ql= (a separate package) provide interactive search commands and saved views.

  • Contents :PROPERTIES: :TOC: :include siblings :depth 0 :ignore this :force depth :END: :CONTENTS:
  • [[#screenshots][Screenshots]]
  • [[#installation][Installation]]
  • [[#usage][Usage]]
  • [[#changelog][Changelog]] :END:
  • Screenshots

[[images/org-ql-search.gif]]

[[images/org-ql-view-dispatch.gif]]

[[images/helm-org-ql.gif]]

[[images/org-ql-view-sidebar.gif]]

  • Installation :PROPERTIES: :TOC: ignore-children :END:

The package =org-ql= may be installed directly from [[https://melpa.org/#/org-ql][MELPA]] or with other tools like [[https://framagit.org/steckerhalter/quelpa][Quelpa]].

After installation, you can use the commands without additional configuration. To use the functions and macros in your own Elisp code, use libraries =org-ql= and =org-ql-view=.

** Quelpa

Installing with [[https://framagit.org/steckerhalter/quelpa][Quelpa]] is easy:

  1. Install [[https://framagit.org/steckerhalter/quelpa-use-package#installation][quelpa-use-package]] (which can be installed directly from MELPA).
  2. Add this form to your init file:

#+BEGIN_SRC elisp (use-package org-ql :quelpa (org-ql :fetcher github :repo "alphapapa/org-ql" :files (:defaults (:exclude "helm-org-ql.el")))) #+END_SRC

** Helm support

The command =helm-org-ql= is available in the package =helm-org-ql=. It may be installed from MELPA, or with Quelpa, like so:

#+BEGIN_SRC elisp (use-package helm-org-ql :quelpa (helm-org-ql :fetcher github :repo "alphapapa/org-ql" :files ("helm-org-ql.el"))) #+END_SRC

  • Usage :PROPERTIES: :TOC: :include descendants :depth 1 :END: :CONTENTS:
  • [[#commands][Commands]]
  • [[#queries][Queries]]
    • [[#non-sexp-query-syntax][Non-sexp query syntax]]
    • [[#general-predicates][General predicates]]
    • [[#ancestordescendant-predicates][Ancestor/descendant predicates]]
    • [[#datetime-predicates][Date/time predicates]]
  • [[#functions--macros][Functions / Macros]]
  • [[#dynamic-block][Dynamic block]]
  • [[#links][Links]]
  • [[#tips][Tips]] :END:

These links work on GitHub's Org renderer but not in Org.

Feedback on these APIs is welcome. Eventually, after being tested and polished, they will be considered stable.

TODO: Find a way to get these examples included in the info manual.

Lisp code examples are in [[examples.org]].

** Commands :PROPERTIES: :TOC: ignore-children :END:

  • Showing an agenda-like view:
    • [[#org-ql-search][org-ql-search]] (command)
    • [[#org-ql-view][org-ql-view]] (command)
    • [[#org-ql-view-sidebar][org-ql-view-sidebar]] (command)
    • [[#org-ql-view-recent-items][org-ql-view-recent-items]] (command)
  • Showing a tree in a buffer:
    • [[#org-ql-sparse-tree][org-ql-sparse-tree]] (command)
  • Showing results with Helm:
    • [[#helm-org-ql][helm-org-ql]] (command)

*** org-ql-search

/Note: This command supports both sexp queries and [[#non-sexp-query-syntax][non-sexp queries]]./

Read QUERY and search with org-ql. Interactively, prompt for these variables:

BUFFERS-FILES: A list of buffers and/or files to search. Interactively, may also be:

  • buffer: search the current buffer
  • all: search all Org buffers
  • agenda: search buffers returned by the function org-agenda-files
  • A space-separated list of file or buffer names

GROUPS: An org-super-agenda group set. See variable org-super-agenda-groups.

NARROW: When non-nil, don't widen buffers before searching. Interactively, with prefix, leave narrowed.

SORT: One or a list of org-ql sorting functions, like date or priority.

Bindings: Keys bound in results buffer.

  • =r=: Refresh results. With prefix, prompt to adjust search parameters.
  • =v=: Show =transient= view dispatcher (like Magit's popups).
  • =C-x C-s=: Save query to variable org-ql-views (accessible with command org-ql-view).

Note: The view buffer is currently put in org-agenda-mode, which means that /some/ Org Agenda commands work, such as jumping to entries and changing item priorities (without necessarily updating the view). This feature is experimental and not guaranteed to work correctly with all commands. (It works to the extent it does because the appropriate text properties are placed on each item, imitating an Agenda buffer.)

*** helm-org-ql

/Note: This command uses [[#non-sexp-query-syntax][non-sexp queries]]. It is available separately in the package =helm-org-ql=./

This command displays matches with Helm.

  • Press =C-x C-s= in the Helm session to save the results to an =org-ql-search= buffer.

*** org-ql-view

Choose and display a view stored in org-ql-views.

Bindings: Keys bound in view buffer.

  • =g=, =r=: Refresh results. With prefix, prompt to adjust search parameters.
  • =v=: Show =transient= view dispatcher (like Magit's popups).
  • =C-x C-s=: Save query to variable org-ql-views (accessible with command org-ql-view).

*** org-ql-view-sidebar

Show a sidebar window listing views stored in =org-ql-views= for easy access. In the sidebar, press =RET= or =mouse-1= to show the view at point, and press =c= to customize the view at point.

*** org-ql-view-recent-items

Show items in FILES from last DAYS days with timestamps of TYPE. TYPE may be ts, ts-active, ts-inactive, clocked, closed, deadline, planning, or scheduled. =FILES= defaults to those returned by the function =org-agenda-files=.

*** org-ql-sparse-tree

Arguments: (query &key keep-previous (buffer (current-buffer)))

Show a sparse tree for QUERY in BUFFER and return number of results. The tree will show the lines where the query matches, and any other context defined in org-show-context-detail, which see.

QUERY is an org-ql query sexp (quoted, since this is a function). BUFFER defaults to the current buffer. When KEEP-PREVIOUS is non-nil (interactively, with prefix), the outline is not reset to the overview state before finding matches, which allows stacking calls to this command. Runs org-occur-hook after making the sparse tree.

** Queries :PROPERTIES: :TOC: :include descendants :depth 1 :END: :CONTENTS:

  • [[#non-sexp-query-syntax][Non-sexp query syntax]]
  • [[#general-predicates][General predicates]]
  • [[#ancestordescendant-predicates][Ancestor/descendant predicates]]
  • [[#datetime-predicates][Date/time predicates]] :END:

An =org-ql= query is a Lisp expression which may contain arbitrary expressions, as well as calling certain built-in predicates. It is byte-compiled into a predicate function which is tested with point on each heading in an Org buffer; when it returns non-nil, the heading matches the query. When possible, certain built-in predicates are optimized away to whole-buffer regular expression searches, which are much faster to search for than testing the predicate on each heading.

Notes:

  • Bare strings like "string" are automatically converted to (regexp "string") predicates.
  • Standard numeric comparator function symbols (<, <=, >, >=, = ) need not be quoted when passed as an argument to predicates which accept them. The resemblance to infix notation is coincidental.

*** Non-sexp query syntax

The command =org-ql-search= also accepts, and the command =helm-org-ql= only accepts, an alternative, non-sexp query syntax. The syntax is simple, and a few examples of queries in both syntaxes should suffice. By default, when multiple predicates are used, they are combined with boolean =and=.

| Sexp syntax | Non-sexp syntax | |-------------------------------------------------+----------------------------------------------| | (todo) | todo: | | (todo "SOMEDAY") | todo:SOMEDAY | | (todo "SOMEDAY" "WAITING") | todo:SOMEDAY,WAITING | | (ts :on today) | ts:on=today | | (ts-active :from "2017-01-01" :to "2018-01-01") | ts-active:from=2017-01-01,to=2018-01-01 | | (clocked :on -1) | clocked:on=-1 | | (heading "quoted phrase" "word") | heading:"quoted phrase",word | | (and (tags "book" "books") (priority "A")) | tags:book,books priority:A | | (src :lang "elisp" :regexps ("defun")) | src:defun,lang=elisp or src:lang=elisp,defun | | (and (tags "space") (not (regexp "moon"))) | tags:space !moon | | (priority >= B) | priority:A,B |

Note that the =priority= predicate does not support comparators in the non-sexp syntax, so multiple priorities should be passed instead, as seen in the last example.

*** General predicates

Arguments are listed next to predicate names, where applicable.

  • =category (&optional categories)= :: Return non-nil if current heading is in one or more of CATEGORIES (a list of strings).
  • =done= :: Return non-nil if entry's TODO keyword is in org-done-keywords.
  • =habit= :: Return non-nil if entry is a habit.
  • =heading (&rest strings)= :: Return non-nil if current entry's heading matches all STRINGS. Matching is done case-insensitively.
    • Aliases: =h=.
  • heading-regexp (&rest regexps) :: Return non-nil if current entry's heading matches all REGEXPS (regexp strings). Matching is done case-insensitively.
    • Aliases: h*.
  • =level (level-or-comparator &optional level)= :: Return non-nil if current heading's outline level matches arguments. The following forms are accepted: (level NUMBER): Matches if heading level is NUMBER. (level NUMBER NUMBER): Matches if heading level is equal to or between NUMBERs. (level COMPARATOR NUMBER): Matches if heading level compares to NUMBER with COMPARATOR. COMPARATOR may be <, <=, >, or >=.
  • =link (&optional description-or-target &key description target regexp-p)= :: Return non-nil if current heading contains a link matching arguments. DESCRIPTION-OR-TARGET is matched against the link's description and target. Alternatively, one or both of DESCRIPTION and TARGET may be matched separately. Without arguments, return non-nil if any link is found.
  • =outline-path (&rest strings)= :: Return non-nil if current node's outline path matches all of STRINGS. Each string may appear as a substring in any part of the node's outline path. For example, the path =Food/Fruits/Grapes= would match (olp "Fruit" "Grape").
    • Aliases: olp.
  • =outline-path-segment (&rest strings)= :: Return non-nil if current node's outline path matches STRINGS. Matches STRINGS as a contiguous segment of the outline path. Each string is compared as a substring. For example the path Food/Fruits/Grapes would match (olps "Fruit" "Grape") but not (olps "Food" "Grape").
    • Aliases: olps.
  • =path (&rest regexps)= :: Return non-nil if current heading's buffer's filename path matches any of REGEXPS (regexp strings). Without arguments, return non-nil if buffer is file-backed.
  • =priority (&rest args)= :: Return non-nil if current heading has a certain priority. ARGS may be either a list of one or more priority letters as strings, or a comparator function symbol followed by a priority letter string. For example: (priority "A") (priority "A" "B") (priority '>= "B") Note that items without a priority cookie never match this predicate (while Org itself considers items without a cookie to have the default priority, which, by default, is equal to priority B).
  • =property (property &optional value)= :: Return non-nil if current entry has PROPERTY (a string), and optionally VALUE (a string). Note that property inheritance is currently /not/ enabled for this predicate. If you need to test with inheritance, you could use a custom predicate form, like (org-entry-get (point) "PROPERTY" 'inherit).
  • =regexp (&rest regexps)= :: Return non-nil if current entry matches all of REGEXPS (regexp strings). Matches against entire entry, from beginning of its heading to the next heading.
    • Aliases: =r=.
  • src (&key lang regexps) :: Return non-nil if current entry contains an Org Babel source block. If LANG is non-nil, match blocks of that language. If REGEXPS is non-nil, require that block's contents match all regexps.
  • =tags (&optional tags)= :: Return non-nil if current heading has one or more of TAGS (a list of strings). Tests both inherited and local tags.
  • =tags-inherited (&optional tags)= :: Return non-nil if current heading's inherited tags include one or more of TAGS (a list of strings). If TAGS is nil, return non-nil if heading has any inherited tags.
    • Aliases: inherited-tags, tags-i, itags.
  • =tags-local (&optional tags)= :: Return non-nil if current heading's local tags include one or more of TAGS (a list of strings). If TAGS is nil, return non-nil if heading has any local tags.
    • Aliases: local-tags, tags-l, ltags.
  • =tags-all (tags)= :: Return non-nil if current heading includes all of TAGS. Tests both inherited and local tags.
    • Aliases: tags&.
  • =tags-regexp (&rest regexps)= :: Return non-nil if current heading has tags matching one or more of REGEXPS. Tests both inherited and local tags.
    • Aliases: tags*.
  • =todo (&optional keywords)= :: Return non-nil if current heading is a TODO item. With KEYWORDS, return non-nil if its keyword is one of KEYWORDS (a list of strings). When called without arguments, only matches non-done tasks (i.e. does not match keywords in org-done-keywords).

*** Ancestor/descendant predicates

  • =ancestors (&optional query)= :: Return non-nil if current heading has ancestor headings. If QUERY, return non-nil if an ancestor heading matches it. This selector may be nested.
  • =children (&optional query)= :: Return non-nil if current heading has direct child headings. If QUERY, return non-nil if a child heading matches it. This selector may be nested, e.g. to match grandchild headings.
  • =descendants (&optional query)= :: Return non-nil if current heading has descendant headings. If QUERY, return non-nil if a descendant heading matches it. This selector may be nested (if you can grok the nesting!).
  • =parent (&optional query)= :: Return non-nil if current heading has a direct parent heading. If QUERY, return non-nil if the parent heading matches it. This selector may be nested, e.g. to match grandparent headings.

*** Date/time predicates

All of these predicates take optional keyword arguments :from, :to:, and :on:

  • If :from, return non-nil if entry has a timestamp on or after :from.
  • If :to, return non-nil if entry has a timestamp on or before :to.
  • If :on, return non-nil if entry has a timestamp on date :on.

Argument values should be either a number of days (positive to look forward, or negative to look backward), a ts struct, or a string parseable by parse-time-string (the string may omit the time value).

  • Predicates
    • =ts= :: Return non-nil if current entry has a timestamp in given period. If no arguments are specified, return non-nil if entry has any timestamp.
    • =ts-active=, =ts-a= :: Like =ts=, but only matches active timestamps.
    • =ts-inactive=, =ts-i= :: Like =ts=, but only matches inactive timestamps.

The following predicates, in addition to the keyword arguments, can also take a single argument, a number, which looks backward or forward a number of days. The number can be negative to invert the direction.

  • Backward-looking

    • =clocked= :: Return non-nil if current entry was clocked in given period. If no arguments are specified, return non-nil if entry was clocked at any time. Note: Clock entries are expected to be clocked out. Currently clocked entries (i.e. with unclosed timestamp ranges) are ignored.
    • =closed= :: Return non-nil if current entry was closed in given period. If no arguments are specified, return non-nil if entry was closed at any time.
  • Forward-looking

    • =deadline= :: Return non-nil if current entry has deadline in given period. If argument is =auto=, return non-nil if entry has deadline within =org-deadline-warning-days=. If no arguments are specified, return non-nil if entry has any deadline.
    • =planning= :: Return non-nil if current entry has planning timestamp in given period (i.e. its deadline, scheduled, or closed timestamp). If no arguments are specified, return non-nil if entry is scheduled at any time.
    • =scheduled= :: Return non-nil if current entry is scheduled in given period. If no arguments are specified, return non-nil if entry is scheduled at any time.

** Functions / Macros :PROPERTIES: :TOC: :include descendants :END: :CONTENTS:

  • [[#agenda-like-views][Agenda-like views]]
    • [[#function-org-ql-block][Function: org-ql-block]]
  • [[#listing--acting-on-results][Listing / acting-on results]]
    • [[#caching][Caching]]
    • [[#function-org-ql-select][Function: org-ql-select]]
    • [[#function-org-ql-query][Function: org-ql-query]]
    • [[#macro-org-ql-deprecated][Macro: org-ql (deprecated)]]
  • [[#custom-predicates][Custom predicates]]
    • [[#macro-org-ql-defpred][Macro: org-ql-defpred]] :END:

*** Agenda-like views

**** Function: org-ql-block

For use as a custom agenda block type in org-agenda-custom-commands. For example, you could define a custom series command like this, which would list all priority A items tagged =Emacs= with to-do keyword =SOMEDAY=, followed by the standard agenda view, in a single buffer:

#+BEGIN_SRC elisp (setq org-agenda-custom-commands '(("ces" "Custom: Agenda and Emacs SOMEDAY [#A] items" ((org-ql-block '(and (todo "SOMEDAY") (tags "Emacs") (priority "A")) ((org-ql-block-header "SOMEDAY :Emacs: High-priority"))) (agenda))))) #+END_SRC

Which would be equivalent to a tags-todo search like this:

#+BEGIN_SRC elisp (setq org-agenda-custom-commands '(("ces" "Custom: Agenda and Emacs SOMEDAY [#A] items" ((tags-todo "PRIORITY="A"+Emacs/!SOMEDAY") (agenda))))) #+END_SRC

However, the org-ql-block version runs in about 1/5th the time.

The variable =org-ql-block-header= may be bound to a string to use as the block header, otherwise the header is formed automatically.

*** Listing / acting-on results

**** Caching

Org QL uses a per-buffer cache to speed up subsequent searches. It's keyed on query expressions and match actions, which means that, for the same query and same match action in the same buffer, if the buffer has not been modified since the last time the query was run, the cached match-action result will be returned, and the query will not be evaluated in that buffer again.

Therefore, since neither query expressions nor match actions are guaranteed to be evaluated when the following functions are called, they should be free of side effects. Or, if a side effect is required, the cache should be invalidated (e.g. by incrementing the buffer's modified tick, or by using a query expression or match action that has yet to be cached). /Note: Future improvements will allow the cache to be more easily disabled or cleared./

**** Function: org-ql-select

/Arguments:/ (buffers-or-files query &key action narrow sort)

Return items matching QUERY in BUFFERS-OR-FILES.

BUFFERS-OR-FILES is a one or a list of files and/or buffers.

QUERY is an org-ql query sexp (quoted, since this is a function).

ACTION is a function which is called on each matching entry with point at the beginning of its heading. It may be:

  • element or nil: Equivalent to org-element-headline-parser.

  • element-with-markers: Equivalent to calling org-element-headline-parser, with markers added using org-ql--add-markers. Suitable for formatting with org-ql-agenda--format-element, allowing insertion into an Org Agenda-like buffer.

  • A sexp, which will be byte-compiled into a lambda function.

  • A function symbol.

If NARROW is non-nil, buffers are not widened (the default is to widen and search the entire buffer).

SORT is either nil, in which case items are not sorted; or one or a list of defined org-ql sorting methods (date, deadline, scheduled, todo, priority, or random); or a user-defined comparator function that accepts two items as arguments and returns nil or non-nil.

Examples:

#+BEGIN_SRC elisp ;; Return list of to-do headings in inbox file with tags and to-do keywords: (org-ql-select "~/org/inbox.org" '(todo) :action #'org-get-heading) ;; => ("TODO Practice leaping tall buildings in a single bound :personal:" ...)

;; Without tags and to-do keywords: (org-ql-select "~/org/inbox.org" '(todo) :action '(org-get-heading t t)) ;; => ("Practice leaping tall buildings in a single bound" ...)

;; Return WAITING heading elements in agenda files: (org-ql-select (org-agenda-files) '(todo "WAITING") :action 'element) ;; => ((headline (:raw-value "Visit the moon" ...) ...) ...)

;; Since `element' is the default for ACTION, it may be omitted: (org-ql-select (org-agenda-files) '(todo "WAITING")) ;; => ((headline (:raw-value "Visit the moon" ...) ...) ...) #+END_SRC

**** Function: org-ql-query

/Arguments:/ (&key (select 'element-with-markers) from where order-by narrow)

Like org-ql-select, but arguments are named more like a SQL query.

  • SELECT corresponds to the org-ql-select argument ACTION.
  • FROM corresponds to the org-ql-select argument BUFFERS-OR-FILES.
  • WHERE corresponds to the org-ql-select argument QUERY.
  • ORDER-BY corresponds to the org-ql-select argument SORT, which see.
  • NARROW corresponds to the org-ql-select argument NARROW.

Examples:

#+BEGIN_SRC elisp ;; Return list of to-do headings in inbox file with tags and to-do keywords: (org-ql-query :select #'org-get-heading :from "~/org/inbox.org" :where '(todo)) ;; => ("TODO Practice leaping tall buildings in a single bound :personal:" ...)

;; Without tags and to-do keywords: (org-ql-query :select '(org-get-heading t t) :from "~/org/inbox.org" :where '(todo)) ;; => ("Practice leaping tall buildings in a single bound" ...)

;; Return WAITING heading elements in agenda files: (org-ql-query :select 'element :from (org-agenda-files) :where '(todo "WAITING")) ;; => ((headline (:raw-value "Visit the moon" ...) ...) ...)

;; Since `element' is the default for SELECT, it may be omitted: (org-ql-query :from (org-agenda-files) :where '(todo "WAITING")) ;; => ((headline (:raw-value "Visit the moon" ...) ...) ...) #+END_SRC

**** Macro: org-ql (deprecated)

/Arguments:/ (buffers-or-files query &key sort narrow markers action)

Expands into a call to org-ql-select with the same arguments. For convenience, arguments should be unquoted.

/Note: This macro is deprecated and will be removed in v0.7./

*** Custom predicates

  • See: [[file:examples/defpred.org][Custom predicate tutorial]]

**** Macro: =org-ql-defpred=

/Arguments:/ (name args docstring &key body preambles normalizers)

Define an org-ql selector predicate named org-ql--predicate-NAME. NAME may be a symbol or a list of symbols: if a list, the first is used as NAME and the rest are aliases. A function is only created for NAME, not for aliases, so a normalizer should be used to replace aliases with NAME in queries (keep reading).

ARGS is a cl-defun-style argument list. DOCSTRING is the function's docstring.

BODY is the body of the predicate. It will be evaluated with point on the beginning of an Org heading and should return non-nil if the heading's entry is a match.

PREAMBLES and NORMALIZERS are lists of pcase forms matched against Org QL query sexps. They are spliced into pcase forms in the definitions of the functions org-ql--query-preamble and org-ql--normalize-query, which see. Those functions are redefined when this macro is expanded, unless variable org-ql-defpred-defer is non-nil, in which case those functions should be redefined manually after defining predicates by calling org-ql--define-query-preamble-fn and org-ql--define-normalize-query-fn.

NORMALIZERS are used to normalize query expressions to standard forms. For example, when the predicate has aliases, the aliases should be replaced with predicate names using a normalizer. Also, predicate arguments may be put into a more optimal form so that the predicate has less work to do at query time.

PREAMBLES refer to regular expressions which may be used to search through a buffer directly to a potential match rather than testing the predicate body on each heading. (Naming things is hard.) In each pcase form in PREAMBLES, the pcase expression (not the pattern) should be a plist with the following keys, each value of which should be an expression which may refer to variables bound in the pattern:

:regexp Regular expression which searches directly to a potential match.

:case-fold Bound to case-fold-search around the regexp search.

:query Expression which should replace the query expression, or query if it should not be changed (e.g. if the regexp is insufficient to determine whether a heading matches, in which case the predicate's body needs to be tested on the heading). If the regexp guarantees a match, this may be simply t, leaving the query expression with no work to do, which improves performance.

For convenience, within the pcase patterns, the symbol predicate-names is a special form which is replaced with a pattern matching any of the predicate's name and aliases. For example, if NAME were:

(heading h)

Then if NORMALIZERS were:

(((,predicate-names . ,args)(heading ,@args)))

It would be expanded to:

(((,(or 'heading 'h) . ,args)(heading ,@args)))

** Dynamic block

Org QL provides a dynamic block that lists entries in the current document matching a query. In the header, these parameters are supported:

  • :query: An Org QL query expression in either sexp or non-sexp form.
  • :columns A list of columns, including heading, todo, property, priority, deadline, scheduled.
    • Each column may also be specified as a list with the second element being a header string. For example, to abbreviate the priority column: (priority "P").
    • For certain columns, like =property=, arguments may be passed by specifying the column type itself as a list. For example, to display a column showing the values of a property named milestone, with the header being abbreviated to M: ((property "milestone") "M").
  • :sort One or a list of Org QL sorting methods (see org-ql-select).
  • :take Optionally take a number of results from the front (a positive number) or the end (a negative number) of the results.
  • :ts-format Optional format string used to format timestamp-based columns.

The heading column is formatted as a link to the heading (not shown in the following example).

For example, this dynamic block shows the first seven headings that are to-do items with priority A or B, sorted by deadline then priority, with certain columns (including the value of the =agenda-group= property with a custom header) and timestamp format:

NOTE: These results are edited manually because the Org links don't display well in the Info manual.

#+BEGIN_SRC org ,#+BEGIN: org-ql :query "todo: priority:A,B" :columns (todo (priority "P") ((property "agenda-group") "Group") deadline heading) :sort (deadline priority) :take 7 :ts-format "%Y-%m-%d %H:%M" | Todo | P | Group | Deadline | Heading | |------+---+-------+------------------+---------------------------------------| | TODO | A | | 2017-07-07 00:00 | Take over the world | | TODO | B | | 2017-07-10 00:00 | Renew membership in supervillain club | | TODO | A | plans | 2017-07-15 00:00 | Take over the universe | | TODO | B | | 2017-07-21 00:00 | Internet | | TODO | A | bills | 2017-08-01 00:00 | Spaceship lease | | TODO | A | | | Skype with president of Antarctica | | TODO | B | | | Take over Mars | ,#+END: #+END_SRC

** Links

Org QL View searches may be accessed by opening org-ql-search: links in an Org file.

In an Org QL View buffer, the command org-store-link (i.e. C-c l) stores a link to the current search, and it may be inserted into an Org buffer with the command org-insert-link (C-c C-l). The stored link records all of the view settings, like title, sorting, and grouping.

Simple links may also be written manually in either sexp or non-sexp form, like:

#+BEGIN_SRC org [[org-ql-search:todo:NEXT priority:A]] [[org-ql-search:(and (todo "NEXT") (priority "A"))]] #+END_SRC

** Tips

  • Org QL View buffers can be bookmarked with Emacs bookmark commands, e.g. =C-x r m=. This also integrates with [[https://github.com/alphapapa/org-sidebar][org-sidebar]] and [[https://github.com/alphapapa/burly.el][Burly]].
  • Changelog :PROPERTIES: :TOC: ignore-children :END:

/Note:/ Breaking changes may be made before version 1.0, but in the event of major changes, attempts at backward compatibility will be made with obsolescence declarations, translation of arguments, etc. Users who need stability guarantees before 1.0 may choose to use tagged stable releases.

** 0.6-pre

Added

  • Macro =org-ql-defpred=, used to define search predicates. (See [[file:examples/defpred.org][tutorial]].)
  • Predicate heading-regexp, which matches regular expressions against heading text (alias: h*).

Changed

  • Helm support (including the command =helm-org-ql=) has been moved to a separate package, =helm-org-ql=.
  • Predicate heading now matches plain strings instead of regular expressions.

Internal

  • Predicates are now defined more cleanly with a macro (=org-ql-defpred=) that consolidates functionality related to each predicate. This will also allow users to more easily define custom predicates.
  • Version 1.0 of library peg is now required.

** 0.5

Added

  • View dispatcher using =transient.el= (like Magit), bound to =v= in search/view buffers.
  • Predicate =link=, which matches descriptions and targets in Org links.
  • Predicate tags-regexp (alias: tags*), which matches regexps against entry tags (e.g, helpful when a tag might end in "s").
  • Emacs bookmark support: Org QL View buffers can be bookmarked with, e.g. =C-x r m= and shown with, e.g. =C-x r b=. (This also enables view restoration with [[https://github.com/alphapapa/burly.el][Burly]].)
  • Dynamic block support.
  • Org link support (storing and opening links to Org QL View searches).
  • Mascot.

Changed

  • Binding to refresh search/view buffers changed to =r=.

Internal

  • When formatting entries for Org QL View buffers, use internal function for retrieving heading tags. This improves speed by using our cache, and it removes the need for a compatibility alias for Org versions before 9.3.

Deprecated

  • Macro =org-ql= is marked obsolete. It will be removed in v0.7. Functions =org-ql-select= and =org-ql-query= should be used instead. (The macro serves only to confuse with regard to quoting arguments.)

Acknowledgments

  • [[https://github.com/tpeacock19][tpeacock19]] for extensive help testing new features in this version.

** 0.4.9

Fixed

  • Agenda restriction in =org-ql-block=. (Fixes [[https://github.com/alphapapa/org-ql/issues/84][#84]]. Thanks to [[https://github.com/yantar92][Ihor Radchenko]].)

** 0.4.8

Fixed

  • Multiple sorters not preserved when refreshing views. (Fixes [[https://github.com/alphapapa/org-ql/issues/136][#136]], [[https://github.com/alphapapa/org-ql/pull/137][#137]]. Thanks to [[https://github.com/natrys][Imran Khan]].)

** 0.4.7

Fixed

  • Give a useful error if =org-ql-search-directories-files= is called without a directories argument and =org-directory= doesn't exist. (Fixes [[https://github.com/alphapapa/org-ql/issues/139][#139]]. Thanks to [[https://github.com/matthuszagh][Matt Huszagh]] for reporting.)

** 0.4.6

Fixed

  • Compatibility with newer versions of the =peg= library, which removed a macro used by this package. (Fixes [[https://github.com/alphapapa/org-ql/issues/75][#75]]. Thanks to [[https://github.com/novoid][Karl Voit]] and [[https://github.com/karlicoss][@karlicoss]] for reporting.)

** 0.4.5

Fixed

  • Non-case-folding predicates like (todo) unnecessarily disabled case-folding for other predicates. ([[https://github.com/alphapapa/org-ql/issues/114][Issue #114]]. Thanks to [[https://github.com/bitclick][@bitclick]] for reporting.)

** 0.4.4

Fixed

  • Compatibility with Org Agenda remote editing commands (some of which were broken by 0.4.3). (Fixes [[https://github.com/alphapapa/org-ql/issues/102][#102]]. Thanks to [[https://github.com/AloisJanicek][Alois Janíček]] for reporting.)

** 0.4.3

Fixed

  • When =org-ql-view-refresh= is called, ensure the buffer is an Org QL View buffer.

** 0.4.2

Fixed

  • Items' to-do keywords were not shown in views.

** 0.4.1

Fixed

  • =level= predicate used with arguments in plain queries. (Thanks to [[https://github.com/akirak][Akira Komamura]] for reporting.)

** 0.4

/Note:/ The next release, 0.5, may include changes which will require minor updates to written queries (e.g. a few predicates may be renamed). Users who wish to avoid those changes happening unexpectedly in their configs should avoid upgrading =org-ql= beyond 0.4 automatically, as they will be pushed to the =master= branch when ready.

Added

  • Commands
    • helm-org-ql-views, which shows one of org-ql-views selected with Helm.
    • org-ql-search can search files in org-directory; customization options are available in the org-ql-search group.
    • org-ql-view-refresh can be called with a prefix argument to adjust search parameters.
  • Queries
    • Negation of terms in plain queries using !. For example, tags:space !moon to exclude entries which contain moon.
    • Predicates =outline-path= (alias =olp=) and =outline-path-segment= (alias =olps=).
    • Predicate src, which matches Org Babel source blocks.
    • Predicates =parent= and =ancestors=. (Thanks to [[https://github.com/mm--][Josh Moller-Mara]].)
    • Alias =h= for =heading= predicate.
    • Alias =r= for =regexp= predicate. (Thanks to [[https://github.com/tumashu][Feng Shu]].)
  • Info manual.
  • Function helm-org-ql-source, which returns a Helm source that searches given buffers/files with helm-org-ql. It can be used for custom Helm commands that search certain files.
  • Display a message when views are refreshed. (Thanks to [[https://github.com/xeijin][xeijin]].)
  • Respect Org Agenda restriction in =org-ql-block=. (Thanks to [[https://github.com/yantar92][Ihor Radchenko]] for reporting.)
  • Option =org-ql-view-sidebar-sort-views=.
  • Mouseover =help-echo= text for =org-ql-views= default view names.
  • "Dangling tasks" default view in =org-ql-views=. (Users who have modified =org-ql-views= from the default will not see the new view unless they copy it into their config.)

Changed

  • Some default =org-ql-view= views (users who have modified =org-ql-views= from the default will not see the new views unless they copy them into their config):
    • Rename some views.
    • "Stuck projects" view (now uses =descendants= instead of =children=, which is more useful.

Fixed

  • Inherit file tags when =org-tag-inheritance= is enabled. (Fixes [[https://github.com/alphapapa/org-ql/issues/55][#55]]. Thanks to [[https://github.com/mskorzhinskiy][Mikhail Skorzhinskiy]].)
  • Call =helm-make-source= directly instead of using =helm-build-sync-source= macro. (Fixes [[https://github.com/alphapapa/org-ql/issues/60][#60]]. Thanks to [[https://github.com/matthuszagh][Matt Huszagh]] for reporting.)
  • Search/view buffers now always end with a newline, which prevents side-scrolling of the window when calling =end-of-buffer=.
  • Face for done to-do keywords in =org-ql-view= buffers. (Thanks to [[https://github.com/dsdshcym][Yiming Chen]].)
  • Make view buffers read-only. (Fixes [[https://github.com/alphapapa/org-ql/issues/72][#72]]. Thanks to [[https://github.com/xeijin][xeijin]].)
  • Sorting with single sorter specified as an atom. (Thanks to [[https://github.com/legalnonsense][Jeff Filipovits]].)
  • Autoload for =org-ql-block= agenda block. (Fixes [[https://github.com/alphapapa/org-ql/issues/53][#53]]. Thanks to reports from [[https://github.com/gcantieni][Gus Cantieni]], [[https://github.com/novoid][Karl Voit]], [[https://github.com/rieje][rieje]], and [[https://github.com/jakejx][Jake | Junxuan]].)

Internal

  • Added generic node data cache to speed up recursive, tree-based queries.

** 0.3.2

Fixed

  • In =org-ql-search=, accept symbol as :super-groups argument.
  • In the =This week= and =Next week= default =org-ql-views= views, set timestamps for beginning-of-week to 00:00:00 and end-of-week to 23:59:59.
  • Plain quoted-phrases in non-sexp queries.

** 0.3.1

Fixed

  • Compatibility with Org 9.2. Thanks to [[https://github.com/leungbk][Brian Leung]].

** 0.3

Added

  • Alternative, non-sexp query syntax for commands =org-ql-search= and =helm-org-ql=. See [[#non-sexp-query-syntax][documentation]].
  • Command =helm-org-ql=.
  • Command =org-ql-sparse-tree=, like =org-sparse-tree= for =org-ql= queries. (Thanks to [[https://github.com/akirak][Akira Komamura]].)
  • Command =org-ql-view-sidebar=.
  • Per-buffer, per-heading tag caching, which increases the speed of tags-related queries by 6-7x.
  • More tags-related predicates and aliases:
    • For inherited tags: =tags-inherited=, =inherited-tags=, =tags-i=, =itags=.
    • For heading-local tags: =tags-local=, =local-tags=, =tags-l=, =ltags=.
    • =tags-all=, =tags&=: Matches all given tags using boolean =AND= (rather than boolean =OR=, which the =tags= predicate uses).
  • Variable =org-ql-block-header=, which overrides the default header in =org-ql-block= agenda blocks.
  • Predicate =(path)=.
  • Option =org-ql-views= may now be customized in a guided, structured way with the customization UI (e.g. =M-x customize-option RET org-ql-views RET=, or press =c= in the =org-ql-view-sidebar= buffer).
  • Enable more Org Agenda commands in =org-ql-view= buffers (e.g. setting deadlines and scheduling). (Fixes [[https://github.com/alphapapa/org-ql/issues/35][#35]]. Thanks to [[https://github.com/mz-pdm][Milan Zamazal]] and [[https://github.com/mskorzhinskiy][Mikhail Skorzhinskii]].)
  • Function =org-ql-select='s =buffers-files= argument can be a function which returns a list of buffers and/or files.

Changed

  • Predicate =heading= now accepts multiple regexps, which are matched with boolean =AND=.
  • Predicate =regexp= now matches its regexp arguments with boolean =AND=.
  • Package =org-super-agenda= is now a dependency. This removes the need for awkward code to handle the case where it's not installed, and makes grouping features always available. Of course, the global minor mode =org-super-agenda-mode= is not activated by =org-ql=, so no behavior is changed in Org Agenda or =org-ql=; it only means that commands like =org-ql-search= will always provide grouping when called with the appropriate arguments.

Removed

  • Macro =org-ql-agenda=. Instead, use function =org-ql-search=. See also command =org-ql-view=, etc.

Fixed

  • Predicate =heading= now matches only against heading text, i.e. not including tags at the end of the line, to-do keyword, etc.
  • Predicate =todo= now matches case-sensitively, avoiding non-todo-keyword matches (e.g. a heading which begins =Waiting on= will no longer match for a todo keyword =WAITING=).
  • Interactive completion in =org-ql-search=.

Internal

  • Refactored code from file =org-ql-agenda.el= into files =org-ql-search.el= and =org-ql-view.el=. Function and variable names have been changed accordingly.

** 0.2.3

Fixed

  • Priority queries could fail to match headings whose to-do keywords had non-alphabetic characters, like =TO-READ=.

** 0.2.2

Fixed

  • =(deadline auto)= selector matched entries whose deadlines had a warning period that had not yet been entered (=org-deadline-warning-days= too soon).

** 0.2.1

Fixed

  • =(descendants)= selector matched against parent heading instead of only descendants.

** 0.2 :PROPERTIES: :ID: 67be09f9-e959-4333-9be2-93ad8f458fbe :END:

Added

  • Function org-ql-query, like org-ql-select but with arguments named more like a SQL query.
  • Bare strings like "string" can be used in queries, which are converted to (regexp "string") automatically.
  • Selector (regexp) accepts multiple regexps to test.
  • Macro org-ql and functions org-ql-query and org-ql-select now also accept a comparator function in their :sort argument.
  • Function org-ql-block, which works as an Org Agenda series/composite/block command, usable in custom agenda commands defined in variable org-agenda-custom-commands. (Inspired by [[https://github.com/pestctrl/emacs-config/blob/84c557982a860e86d6f67976a82ea776a7bd2c7a/config-org-new.org#my-own-agenda-renderer][Benson Chu's config]].)
  • Function org-ql-agenda--agenda optionally takes a list of entries as an argument.
  • Selectors ts-a and ts-i, aliases for ts-active and ts-inactive.
  • Selector ts now accepts a :type argument.
  • Face =org-ql-agenda-due-date=.
  • Selectors (children) and (descendants).
  • Function org-ql-search and macro org-ql-agenda accept a :title argument, which is displayed in the header.
  • Command org-ql-search offers global org-super-agenda-groups in completion.
  • Customization group org-ql.
  • Command org-ql-view, which displays views saved to variable org-ql-views, which can be saved from org-ql-search buffers with command org-ql-search-save, which is bound to =C-x C-s= in view buffers.
  • Variable org-ql-view-map, active in view buffers displayed by org-ql-search, org-ql-agenda, and org-ql-view.
  • =random= sort method.
  • Save position when refreshing search buffers.

Changed

  • Function org-ql-query renamed to org-ql-select. org-ql-query now refers to a new function.
  • Macro org-ql no longer accepts a :markers argument. Instead, use argument :action element-with-markers. See function org-ql-select, which org-ql calls.
  • Selector (todo) no longer matches "done" keywords when used without arguments (i.e. the ones in variable org-done-keywords).
  • Overhauled date/time-based predicates. See documentation for new argument signatures.

Removed

  • Selector (date), replaced by (ts).

Fixed

  • Handle date ranges in date-based selectors. (Thanks to [[https://github.com/codygman][Cody Goodman]], [[https://github.com/swflint][Samuel W. Flint]], and [[https://github.com/vikasrawal][Vikas Rawal]].)
  • Don't overwrite bindings in =org-agenda-mode-map=.
  • Don't search buffers without headings, and show a message if the user attempts it.
  • Don't search hidden/special buffers.
  • Properly accept arbitrary sort functions in =org-ql-select=, etc. (Fixes [[https://github.com/alphapapa/org-ql/issues/37][#37]]. Thanks to [[https://github.com/mz-pdm][Milan Zamazal]].)
  • Planning-line-related predicates searched too far into entries.
  • Add autoloads. (Fixes [[https://github.com/alphapapa/org-ql/pull/36/files#][#36]]. Thanks to [[https://github.com/akirak][Akira Komamura]].)

Compatibility

  • Fixes for compatibility with Org 9.2. (Thanks to [[https://github.com/ataias][Ataias Pereira Reis]] and [[https://github.com/dakra][Daniel Kraus]].)

Internal

  • Optimizations for some query selectors, e.g. =regexp= and =todo=. These can provide a significant improvement for some queries. See benchmarks in [[file:notes.org][notes.org]].
  • Library [[https://github.com/alphapapa/ts.el][ts]] is now used for parsing and comparing timestamps.

** 0.1

First tagged release.

  • Notes :PROPERTIES: :TOC: :ignore this :END:

** Comparison with Org Agenda searches

Of course, queries like these can already be written with Org Agenda searches, but the syntax can be complex. For example, 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 [[https://orgmode.org/worg/org-tutorials/advanced-searching.html#combining-metadata-and-full-text-queries][advanced searching tutorial]], it would require using org-search-view with a query with specific regular expression syntax, like this:

#+BEGIN_EXAMPLE +lisp +{^*+\s-+TO-READ\s-} #+END_EXAMPLE

But with =org-ql-search=, you would write a query like =lisp todo:TO-READ=, or in Lisp syntax, (and "lisp" (todo "TO-READ")).

** org-sidebar

This package is used by [[https://github.com/alphapapa/org-sidebar][org-sidebar]], which presents a customizable agenda-like view in a sidebar window.

  • License :PROPERTIES: :TOC: :ignore this :END:

GPLv3

  • COMMENT Code :noexport: :PROPERTIES: :TOC: :ignore this :END:

The COMMENT keyword prevents GitHub's renderer from showing this entry.

Code used to update this document.

** Predicates

Generates the predicate subtree.

#+BEGIN_SRC elisp :results silent :exports code (defun org-ql--readme-update-predicates () "Update predicate subtree in current document." (interactive) (org-ql--readme-replace-node '("Usage" "Queries" "Predicates") (org-ql--readme-predicate-list)))

(defun org-ql--readme-replace-node (outline-path string) "Replace contents of node at OUTLINE-PATH with STRING." (org-with-wide-buffer (-let* ((subtree-marker (org-find-olp outline-path t)) ((_headline element) (progn (goto-char subtree-marker) (org-element-headline-parser (point-max)))) ((&plist :contents-begin beg :contents-end end) element)) (goto-char beg) (delete-region (point) (1- end)) (insert string "\n"))))

(defun org-ql--readme-predicate-list () "Return an Org list string documenting predicates." (concat (unpackaged/docstring-to-org "Arguments are listed next to predicate names, where applicable.

Note that, for convenience, standard numeric comparator function symbols (<',=', etc.) do not need to be quoted when passed as an argument to these predicates. The resemblance to infix notation is coincidental. See examples in documentation.\n\n") (s-join "\n" (->> org-ql-predicates (--sort (string< (symbol-name (plist-get it :name)) (symbol-name (plist-get other :name)))) (--map (-let* (((&plist :name name :docstring docstring :fn fn :args args) it) (args (->> args (--replace-where (listp it) (car it)) (--replace-where (eq '&rest it) '&optional)))) (if docstring (progn (setq docstring (s-replace "\n" " " docstring)) (format "+ %s%s :: %s" name (if args (format " %s" args) "") (unpackaged/docstring-to-org docstring))) (when (s-prefix? "org-ql-" (symbol-name name)) (warn "No docstring for: %s" name)) nil))) -non-nil)))) #+END_SRC

*** TODO Use async

If org-ql is loaded byte-compiled, the argument lists are not named properly (not sure why, as help-function-arglist is supposed to handle that). We could run the function in another Emacs process with async to avoid this.

  • COMMENT Export setup :noexport: :PROPERTIES: :TOC: :ignore this :END:

Copied from org-super-agenda's readme, in which much was borrowed from Org's =org-manual.org=.

#+OPTIONS: broken-links:t *:t

** Info export options

#+TEXINFO_DIR_CATEGORY: Emacs #+TEXINFO_DIR_TITLE: Org QL: (org-ql) #+TEXINFO_DIR_DESC: Query language, search commands, and saved views for Org files

NOTE: We could use these, but that causes a pointless error, "org-compile-file: File "..README.info" wasn't produced...", so we just rename the files in the after-save-hook instead.

#+TEXINFO_FILENAME: org-ql.info

#+EXPORT_FILE_NAME: org-ql.texi

** File-local variables

NOTE: Setting org-comment-string buffer-locally is a nasty hack to work around GitHub's org-ruby's HTML rendering, which does not respect noexport tags. The only way to hide this tree from its output is to use the COMMENT keyword, but that prevents Org from processing the export options declared in it. So since these file-local variables don't affect org-ruby, wet set org-comment-string to an unused keyword, which prevents Org from deleting this tree from the export buffer, which allows it to find the export options in it. And since org-export does respect the noexport tag, the tree is excluded from the info page.

Local Variables:

before-save-hook: org-make-toc

after-save-hook: (lambda nil (when (and (require 'ox-texinfo nil t) (org-texinfo-export-to-info)) (delete-file "README.texi") (rename-file "README.info" "org-ql.info" t)))

org-export-initial-scope: buffer

org-comment-string: "NOTCOMMENT"

End:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].