Variable: org-agenda-ignore-properties

org-agenda-ignore-properties is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Avoid updating text properties when building the agenda.

Properties are used to prepare buffers for effort estimates, appointments, statistics and subtree-local categories. If you don't use these in the agenda, you can add them to this list and agenda building will be a bit faster. The value is a list, with zero or more of the symbols effort, appt, stats or category.

This variable was added, or its default value changed, in Org version
8.3.

Aliases

org-agenda-ignore-drawer-properties (obsolete since 9.0)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-agenda-ignore-properties nil
  "Avoid updating text properties when building the agenda.
Properties are used to prepare buffers for effort estimates,
appointments, statistics and subtree-local categories.
If you don't use these in the agenda, you can add them to this
list and agenda building will be a bit faster.
The value is a list, with zero or more of the symbols `effort', `appt',
`stats' or `category'."
  :type '(set :greedy t
	      (const effort)
	      (const appt)
	      (const stats)
	      (const category))
  :version "26.1"
  :package-version '(Org . "8.3")
  :group 'org-agenda)