Variable: todo-prefix

todo-prefix is a customizable variable defined in otodo-mode.el.gz.

Value

""

Documentation

TODO mode prefix for entries.

This is useful in conjunction with calendar and diary if you use

#include "~/.emacs.d/todo-do"

in your diary file to include your todo list file as part of your diary. With the default value "*/*" the diary displays each entry every day and it may also be marked on every day of the calendar. Using "&%%(equal (calendar-current-date) date)" instead will only show and mark todo entries for today, but may slow down processing of the diary file somewhat.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defcustom todo-prefix     "*/*"
  "TODO mode prefix for entries.

This is useful in conjunction with `calendar' and `diary' if you use

#include \"~/.emacs.d/todo-do\"

in your diary file to include your todo list file as part of your
diary.  With the default value \"*/*\" the diary displays each entry
every day and it may also be marked on every day of the calendar.
Using \"&%%(equal (calendar-current-date) date)\" instead will only
show and mark todo entries for today, but may slow down processing of
the diary file somewhat."
  :type 'string)