Variable: ffap-ftp-regexp

ffap-ftp-regexp is a customizable variable defined in ffap.el.gz.

Value

"\\`/[^/:]+:"

Documentation

File names matching this regexp are treated as remote ffap.

If nil, ffap neither recognizes nor generates such names.

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-ftp-regexp "\\`/[^/:]+:"
  "File names matching this regexp are treated as remote ffap.
If nil, ffap neither recognizes nor generates such names."
  :type '(choice (const :tag "Disable" nil)
		 (const :tag "Standard" "\\`/[^/:]+:")
		 regexp)
  :group 'ffap)