Variable: org-agenda-fontify-priorities

org-agenda-fontify-priorities is a customizable variable defined in org-agenda.el.gz.

Value

cookies

Documentation

Non-nil means highlight low and high priorities in agenda.

When t, the highest priority entries are bold, lowest priority italic. However, settings in org-priority-faces will overrule these faces. When this variable is the symbol cookies, only fontify the cookies, not the entire task. This may also be an association list of priority faces, whose keys are the character values of org-priority-highest, org-priority-default, and org-priority-lowest (the default values are ?A, ?B, and ?C, respectively). The face may be a named face, a color as a string, or a list like (:background "Red"). If it is a color, the variable org-faces-easy-properties determines if it is a foreground or a background color.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-fontify-priorities 'cookies
  "Non-nil means highlight low and high priorities in agenda.
When t, the highest priority entries are bold, lowest priority italic.
However, settings in `org-priority-faces' will overrule these faces.
When this variable is the symbol `cookies', only fontify the
cookies, not the entire task.
This may also be an association list of priority faces, whose
keys are the character values of `org-priority-highest',
`org-priority-default', and `org-priority-lowest' (the default values
are ?A, ?B, and ?C, respectively).  The face may be a named face, a
color as a string, or a list like `(:background \"Red\")'.
If it is a color, the variable `org-faces-easy-properties'
determines if it is a foreground or a background color."
  :group 'org-agenda-line-format
  :type '(choice
	  (const :tag "Never" nil)
	  (const :tag "Defaults" t)
	  (const :tag "Cookies only" cookies)
	  (repeat :tag "Specify"
		  (list (character :tag "Priority" :value ?A)
			(choice    :tag "Face    "
				   (string :tag "Color")
				   (sexp :tag "Face"))))))