Function: hpath:find-file-urls-p
hpath:find-file-urls-p is a byte-compiled function defined in
hpath.el.
Signature
(hpath:find-file-urls-p)
Documentation
Return t when file finding commands can handle remote urls.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
;;; URL Handling
(defun hpath:find-file-urls-p ()
"Return t when file finding commands can handle remote urls."
(and (boundp 'file-name-handler-alist) (hpath:remote-available-p) t))