Variable: org-agenda-show-outline-path
org-agenda-show-outline-path is a customizable variable defined in
org-agenda.el.gz.
Value
t
Documentation
Non-nil means show outline path in echo area after line motion.
If set to title, show outline path with prepended document
title. Fallback to file name is no title is present.
This variable was added, or its default value changed, in Org version
9.6.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-show-outline-path t
"Non-nil means show outline path in echo area after line motion.
If set to `title', show outline path with prepended document
title. Fallback to file name is no title is present."
:group 'org-agenda-startup
:type '(choice
(const :tag "Don't show outline path in agenda view." nil)
(const :tag "Show outline path with prepended file name." t)
(const :tag "Show outline path with prepended document title." title))
:package-version '(Org . "9.6"))