Variable: todo-indent-to-here

todo-indent-to-here is a customizable variable defined in todo-mode.el.gz.

Value

3

Documentation

Number of spaces to indent continuation lines of items.

This must be a positive number to ensure such items are fully shown in the Fancy Diary display.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defcustom todo-indent-to-here 3
  "Number of spaces to indent continuation lines of items.
This must be a positive number to ensure such items are fully
shown in the Fancy Diary display."
  :type '(integer :validate
		  (lambda (widget)
		    (unless (> (widget-value widget) 0)
		      (widget-put widget :error
				  "Invalid value: must be a positive integer")
		      widget)))
  :group 'todo-display)