Function: todo-forward-category
todo-forward-category is an interactive and byte-compiled function
defined in otodo-mode.el.gz.
Signature
(todo-forward-category)
Documentation
Go forward to TODO list of next category.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-forward-category ()
"Go forward to TODO list of next category."
(interactive)
(setq todo-category-number
(mod (1+ todo-category-number) (length todo-categories)))
(todo-category-select))