Function: todo-jump-to-archive-category

todo-jump-to-archive-category is an interactive and byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-jump-to-archive-category &optional FILE)

Documentation

Prompt for a category in a todo archive and jump to it.

With prefix argument FILE, prompt for an archive and choose (with TAB completion) a category in it to jump to; otherwise, choose and jump to any category in the current archive.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-jump-to-archive-category (&optional file)
  "Prompt for a category in a todo archive and jump to it.
With prefix argument FILE, prompt for an archive and choose (with
TAB completion) a category in it to jump to; otherwise, choose
and jump to any category in the current archive."
  (interactive "P")
  (todo-jump-to-category file 'archive))