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 symbol stats.

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

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 symbol `stats'."
  :type '(set :greedy t
	      (const stats))
  :package-version '(Org . "9.7")
  :group 'org-agenda)