Function: todo-jump-to-category

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

Signature

(todo-jump-to-category)

Documentation

Jump to a category. Default is previous category.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-jump-to-category ()
  "Jump to a category.  Default is previous category."
  (interactive)
  (let ((category (todo-completing-read)))
    (if (string= "" category)
        (setq category (nth todo-category-number todo-categories)))
    (setq todo-category-number
          (if (member category todo-categories)
              (- (length todo-categories)
                 (length (member category todo-categories)))
            (todo-add-category category)))
    (todo-show)))