Function: hsys-org-todo-occur

hsys-org-todo-occur is an interactive and byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-todo-occur &optional KEYWORD)

Documentation

Filter to a tree of todos matching optional KEYWORD.

The tree will include all higher headlines above each match. Match to all todos if keyword is nil or the empty string.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-todo-occur (&optional keyword)
  "Filter to a tree of todos matching optional KEYWORD.
The tree will include all higher headlines above each match.
Match to all todos if `keyword' is nil or the empty string."
  (interactive
   (list (hargs:read-match "List todos matching keyword: " org-todo-keywords-1)))
  (unless keyword (setq keyword ""))
  (message "%d '%s' TODO entries found"
	   (org-occur (concat "^" org-outline-regexp " *" (regexp-quote keyword)))
	   keyword))