Variable: org-link-use-indirect-buffer-for-internals

org-link-use-indirect-buffer-for-internals is a customizable variable defined in ol.el.gz.

Value

nil

Documentation

Non-nil means use indirect buffer to display infile links.

Activating internal links (from one location in a file to another location in the same file) normally just jumps to the location. When the link is activated with a C-u (universal-argument) prefix (or with mouse-3), the link is displayed in another window. When this option is set, the other window actually displays an indirect buffer clone of the current buffer, to avoid any visibility changes to the current buffer.

Aliases

org-display-internal-link-with-indirect-buffer (obsolete since 9.3)

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defcustom org-link-use-indirect-buffer-for-internals nil
  "Non-nil means use indirect buffer to display infile links.
Activating internal links (from one location in a file to another location
in the same file) normally just jumps to the location.  When the link is
activated with a `\\[universal-argument]' prefix (or with mouse-3), the link \
is displayed in
another window.  When this option is set, the other window actually displays
an indirect buffer clone of the current buffer, to avoid any visibility
changes to the current buffer."
  :group 'org-link-follow
  :type 'boolean
  :safe #'booleanp)