Variable: ffap-prefer-remote-file

ffap-prefer-remote-file is a customizable variable defined in ffap.el.gz.

Value

nil

Documentation

Whether to prefer remote files in remote context.

If non-nil, ffap always finds remote files in buffers with remote default-directory. If nil, ffap finds local files first for absolute filenames in above buffers. Relative filenames are not affected by this option.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-prefer-remote-file nil
  "Whether to prefer remote files in remote context.
If non-nil, ffap always finds remote files in buffers with remote
`default-directory'.  If nil, ffap finds local files first for absolute
filenames in above buffers.  Relative filenames are not affected by this
option."
  :type 'boolean
  :group 'ffap
  :version "31.1")