Function: cider-current-host

cider-current-host is a byte-compiled function defined in cider.el.

Signature

(cider-current-host)

Documentation

Retrieve the current host.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
;;; Helpers

(defun cider-current-host ()
  "Retrieve the current host."
  (or (when (stringp buffer-file-name)
        (file-remote-p buffer-file-name 'host))
      "localhost"))