Variable: org-agenda-remove-tags

org-agenda-remove-tags is a customizable variable defined in org-agenda.el.gz.

Value

nil

Documentation

Non-nil means remove the tags from the headline copy in the agenda.

When this is the symbol prefix, only remove tags when org-agenda-prefix-format contains a %T specifier.

Aliases

org-agenda-remove-tags-when-in-prefix

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-remove-tags nil
  "Non-nil means remove the tags from the headline copy in the agenda.
When this is the symbol `prefix', only remove tags when
`org-agenda-prefix-format' contains a `%T' specifier."
  :group 'org-agenda-line-format
  :type '(choice
	  (const :tag "Always" t)
	  (const :tag "Never" nil)
	  (const :tag "When prefix format contains %T" prefix)))