Function: todo-filter-regexp-items

todo-filter-regexp-items is an interactive and byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-filter-regexp-items &optional ARG)

Documentation

Prompt for a regular expression and display items that match it.

The matches can be from any categories in the current todo file and with non-nil option todo-filter-done-items, can include not only todo items but also done items, including those in Archive files.

Called with no prefix ARG, if a regexp items file for the current todo file has previously been saved (see todo-save-filtered-items-buffer), visit this file; if there is no such file, build the list of regexp items. Called with a prefix argument, build the list even if there is a saved file of regexp items.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-filter-regexp-items (&optional arg)
  "Prompt for a regular expression and display items that match it.
The matches can be from any categories in the current todo file
and with non-nil option `todo-filter-done-items', can include
not only todo items but also done items, including those in
Archive files.

Called with no prefix ARG, if a regexp items file for the current
todo file has previously been saved (see
`todo-save-filtered-items-buffer'), visit this file; if there is
no such file, build the list of regexp items.  Called with a
prefix argument, build the list even if there is a saved file of
regexp items."
  (interactive "P")
  (todo-filter-items 'regexp arg))