Variable: org-agenda-timerange-leaders

org-agenda-timerange-leaders is a customizable variable defined in org-agenda.el.gz.

Value

("" "(%d/%d): ")

Documentation

Text preceding timerange entries in the agenda view.

This is a list with two strings. The first applies when the range is entirely on one day. The second applies if the range spans several days. The strings may have two "%d" format specifiers which will be filled with the sequence number of the days, and the total number of days in the range, respectively.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  "Text preceding timerange entries in the agenda view.
This is a list with two strings.  The first applies when the range
is entirely on one day.  The second applies if the range spans several days.
The strings may have two \"%d\" format specifiers which will be filled
with the sequence number of the days, and the total number of days in the
range, respectively."
  :group 'org-agenda-line-format
  :type '(list
	  (string :tag "Deadline today   ")
	  (choice :tag "Deadline relative"
		  (string :tag "Format string")
		  (function))))