Variable: org-agenda-show-inherited-tags

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

Value

t

Documentation

Non-nil means show inherited tags in each agenda line.

When this option is set to always, it takes precedence over org-agenda-use-tag-inheritance and inherited tags are shown in every agenda.

When this option is set to t (the default), inherited tags are shown when they are available, i.e. when the value of org-agenda-use-tag-inheritance enables tag inheritance for the given agenda type.

This can be set to a list of agenda types in which the agenda must display the inherited tags. Available types are todo, agenda and search.

When set to nil, never show inherited tags in agenda lines.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-show-inherited-tags t
  "Non-nil means show inherited tags in each agenda line.

When this option is set to `always', it takes precedence over
`org-agenda-use-tag-inheritance' and inherited tags are shown
in every agenda.

When this option is set to t (the default), inherited tags are
shown when they are available, i.e. when the value of
`org-agenda-use-tag-inheritance' enables tag inheritance for the
given agenda type.

This can be set to a list of agenda types in which the agenda
must display the inherited tags.  Available types are `todo',
`agenda' and `search'.

When set to nil, never show inherited tags in agenda lines."
  :group 'org-agenda-line-format
  :group 'org-agenda
  :version "24.3"
  :type '(choice
	  (const :tag "Show inherited tags when available" t)
	  (const :tag "Always show inherited tags" always)
	  (repeat :tag "Show inherited tags only in selected agenda types"
		  (symbol :tag "Agenda type"))))