Variable: org-id-track-globally

org-id-track-globally is a customizable variable defined in org-id.el.gz.

Value

t

Documentation

Non-nil means track IDs through files, so that links work globally.

This work by maintaining a hash table for IDs and writing this table to disk when exiting Emacs. Because of this, it works best if you use a single Emacs process, not many.

When nil, IDs are not tracked. Links to IDs will still work within a buffer, but not if the entry is located in another file. IDs can still be used if the entry with the id is in the same file as the link.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
(defcustom org-id-track-globally t
  "Non-nil means track IDs through files, so that links work globally.
This work by maintaining a hash table for IDs and writing this table
to disk when exiting Emacs.  Because of this, it works best if you use
a single Emacs process, not many.

When nil, IDs are not tracked.  Links to IDs will still work within
a buffer, but not if the entry is located in another file.
IDs can still be used if the entry with the id is in the same file as
the link."
  :group 'org-id
  :type 'boolean)