Function: todo-forward-item
todo-forward-item is an interactive and byte-compiled function defined
in otodo-mode.el.gz.
Signature
(todo-forward-item &optional COUNT)
Documentation
Select COUNT-th next entry of TODO list.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-forward-item (&optional count)
"Select COUNT-th next entry of TODO list."
(interactive "P")
(if (listp count) (setq count (car count)))
(end-of-line)
(search-forward-regexp (concat "^" (regexp-quote todo-prefix))
nil 'goto-end count)
(beginning-of-line)
(message ""))