Function: todo-filter-top-priorities-multifile

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

Signature

(todo-filter-top-priorities-multifile &optional ARG)

Documentation

Display a list of top priority 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.

With numerical prefix ARG show at most ARG top priority items from each category in each file. With C-u (universal-argument) as prefix argument show the numbers of top priority items specified in todo-top-priorities-overrides, if this is non-nil; otherwise show todo-top-priorities(var)/todo-top-priorities(fun) items per category. With no prefix argument, if a top priorities file for the chosen todo files exists (see todo-save-filtered-items-buffer), visit this file; if there is no such file, do the same as with prefix argument C-u (universal-argument).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-filter-top-priorities-multifile (&optional arg)
  "Display a list of top priority 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.

With numerical prefix ARG show at most ARG top priority items
from each category in each file.  With \\[universal-argument] as prefix argument
show the numbers of top priority items specified in
`todo-top-priorities-overrides', if this is non-nil; otherwise show
`todo-top-priorities' items per category.  With no prefix
argument, if a top priorities file for the chosen todo files
exists (see `todo-save-filtered-items-buffer'), visit this file;
if there is no such file, do the same as with prefix argument
\\[universal-argument]."
  (interactive "P")
  (todo-filter-items 'top arg t))