Function: todo-filter-regexp-items-multifile
todo-filter-regexp-items-multifile is an interactive and byte-compiled
function defined in todo-mode.el.gz.
Signature
(todo-filter-regexp-items-multifile &optional ARG)
Documentation
Prompt for a regular expression and display items that match it.
The matches can be from any categories in the files listed in
todo-filter-files, or if this nil, in the files chosen from a
file selection dialog that pops up in this case. With non-nil
option todo-filter-done-items, the matches 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-multifile (&optional arg)
"Prompt for a regular expression and display items that match it.
The matches can be from any categories in the files listed in
`todo-filter-files', or if this nil, in the files chosen from a
file selection dialog that pops up in this case. With non-nil
option `todo-filter-done-items', the matches 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 t))