Variable: org-columns-default-format-for-agenda

org-columns-default-format-for-agenda is a customizable variable defined in org.el.gz.

Value

nil

Documentation

The default column format in an agenda buffer.

This will be used for column view in the agenda unless a format has been set by adding org-overriding-columns-format to the local settings list of a custom agenda view. When nil, the columns format for the first item in the agenda list will be used, or as a fall-back, org-columns-default-format.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-columns-default-format-for-agenda nil
  "The default column format in an agenda buffer.
This will be used for column view in the agenda unless a format has
been set by adding `org-overriding-columns-format' to the local
settings list of a custom agenda view.  When nil, the columns format
for the first item in the agenda list will be used, or as a fall-back,
`org-columns-default-format'."
  :group 'org-properties
  :type '(choice
	  (const :tag "No default" nil)
	  (string :tag "Format string")))