Function: hpath:find-file-urls-mode

hpath:find-file-urls-mode is an autoloaded, interactive and byte-compiled function defined in hpath.el.

Signature

(hpath:find-file-urls-mode &optional ARG)

Documentation

Toggle use of ftp and www Urls as arguments to find-file commands.

With optional prefix ARG, enable this feature if ARG is positive or turn it off otherwise.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
;;;###autoload
(defun hpath:find-file-urls-mode (&optional arg)
  "Toggle use of ftp and www Urls as arguments to `find-file' commands.
With optional prefix ARG, enable this feature if ARG is positive or turn it
off otherwise."
  (interactive "P")
  (funcall (if (called-interactively-p 'interactive) #'call-interactively #'funcall)
	   (if (if arg
		   (> (prefix-numeric-value arg) 0)
		 (not hpath:find-file-urls-mode))
	       #'hpath:enable-find-file-urls
	     #'hpath:disable-find-file-urls)))