Variable: todo-prefix
todo-prefix is a customizable variable defined in todo-mode.el.gz.
Value
""
Documentation
String prefixed to todo items for visual distinction.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; -----------------------------------------------------------------------------
;;; Todo mode display options
;; -----------------------------------------------------------------------------
(defcustom todo-prefix ""
"String prefixed to todo items for visual distinction."
:type '(string :validate
(lambda (widget)
(when (string= (widget-value widget) todo-item-mark)
(widget-put
widget :error
(format-message
"Invalid value: must be distinct from `todo-item-mark'"))
widget)))
:initialize #'custom-initialize-default
:set #'todo-reset-prefix
:group 'todo-display)