Function: nrepl-local-host-p

nrepl-local-host-p is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-local-host-p HOST)

Documentation

Return t if HOST is local.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-local-host-p (host)
  "Return t if HOST is local."
  (string-match-p tramp-local-host-regexp host))