Variable: org-complete-tags-always-offer-all-agenda-tags
org-complete-tags-always-offer-all-agenda-tags is a customizable
variable defined in org.el.gz.
Value
nil
Documentation
If non-nil, always offer completion for all tags of all agenda files.
Setting this variable locally allows for dynamic generation of tag completions in capture buffers.
(add-hook 'org-capture-mode-hook
(lambda ()
(setq-local org-complete-tags-always-offer-all-agenda-tags t)))
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-complete-tags-always-offer-all-agenda-tags nil
"If non-nil, always offer completion for all tags of all agenda files.
Setting this variable locally allows for dynamic generation of tag
completions in capture buffers.
(add-hook \\='org-capture-mode-hook
(lambda ()
(setq-local org-complete-tags-always-offer-all-agenda-tags t)))"
:group 'org-tags
:version "24.1"
:type 'boolean)