Function: todo-backward-item
todo-backward-item is an interactive and byte-compiled function
defined in otodo-mode.el.gz.
Signature
(todo-backward-item)
Documentation
Select previous entry of TODO list.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-backward-item ()
"Select previous entry of TODO list."
(interactive)
(search-backward-regexp (concat "^" (regexp-quote todo-prefix)) nil t)
(message ""))