Variable: org-id-completion-targets

org-id-completion-targets is a customizable variable defined in org-id.el.gz.

Value

((nil . t) (org-id-files . t))

Documentation

Candidate headings for completing "id:" links in M-x org-insert-link (org-insert-link).

This variable has the same form as org-refile-targets, which see.

This variable was added, or its default value changed, in Org version
9.8.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
(defcustom org-id-completion-targets
  '((nil . t)
    (org-id-files . t))
  "Candidate headings for completing \"id:\" links in `\\[org-insert-link]'.
This variable has the same form as `org-refile-targets', which see."
  :group 'org-id
  :type (get 'org-refile-targets 'custom-type)
  :package-version '(Org . "9.8")
  :risky t)