Function: todo-filter-diary-items-multifile

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

Signature

(todo-filter-diary-items-multifile &optional ARG)

Documentation

Display a list of todo diary items from different categories.

The categories are a subset of the 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.

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

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-filter-diary-items-multifile (&optional arg)
  "Display a list of todo diary items from different categories.
The categories are a subset of the 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.

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