Variable: org-agenda-text-search-extra-files
org-agenda-text-search-extra-files is a customizable variable defined
in org.el.gz.
Value
nil
Documentation
List of extra files to be searched by text search commands.
These files will be searched in addition to the agenda files by the
commands org-search-view (M-x org-agenda (org-agenda) s) and org-occur-in-agenda-files.
Note that these files will only be searched for text search commands,
not for the other agenda views like todo lists, tag searches or the weekly
agenda. This variable is intended to list notes and possibly archive files
that should also be searched by these two commands.
In fact, if the first element in the list is the symbol agenda-archives,
then all archive files of all agenda files will be added to the search
scope.
Aliases
org-agenda-multi-occur-extra-files
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-agenda-text-search-extra-files nil
"List of extra files to be searched by text search commands.
These files will be searched in addition to the agenda files by the
commands `org-search-view' (`\\[org-agenda] s') \
and `org-occur-in-agenda-files'.
Note that these files will only be searched for text search commands,
not for the other agenda views like todo lists, tag searches or the weekly
agenda. This variable is intended to list notes and possibly archive files
that should also be searched by these two commands.
In fact, if the first element in the list is the symbol `agenda-archives',
then all archive files of all agenda files will be added to the search
scope."
:group 'org-agenda
:type '(set :greedy t
(const :tag "Agenda Archives" agenda-archives)
(repeat :inline t (file))))