Variable: ffap-url-unwrap-remote
ffap-url-unwrap-remote is a customizable variable defined in
ffap.el.gz.
Value
("ftp")
Documentation
If non-nil, convert URLs to remote file names before prompting.
If the value is a list of strings, that specifies a list of URL schemes (e.g. "ftp"); in that case, only convert those URLs.
This variable was added, or its default value changed, in Emacs 24.3.
Probably introduced at or before Emacs version 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-url-unwrap-remote '("ftp")
"If non-nil, convert URLs to remote file names before prompting.
If the value is a list of strings, that specifies a list of URL
schemes (e.g. \"ftp\"); in that case, only convert those URLs."
:type '(choice (repeat string) boolean)
:group 'ffap
:version "24.3")