Variable: hpath:find-file-urls-mode
hpath:find-file-urls-mode is a customizable variable defined in
hpath.el.
Value
nil
Documentation
Set to t to enable use of ftp and http urls in file finding commands.
Requires that a remote file access library is available. Default is nil since this can slow down normal file finding.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defcustom hpath:find-file-urls-mode nil
"Set to t to enable use of ftp and http urls in file finding commands.
Requires that a remote file access library is available.
Default is nil since this can slow down normal file finding."
:type 'boolean
:initialize #'custom-initialize-default
:set (lambda (_symbol _value) (call-interactively #'hpath:find-file-urls-mode))
:group 'hyperbole-buttons)