Function: cider--var-namespace

cider--var-namespace is a byte-compiled function defined in cider-mode.el.

Signature

(cider--var-namespace VAR)

Documentation

Return the namespace of VAR.

VAR is a fully qualified Clojure variable name as a string.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-mode.el
(defun cider--var-namespace (var)
  "Return the namespace of VAR.
VAR is a fully qualified Clojure variable name as a string."
  (replace-regexp-in-string "\\(?:#'\\)?\\(.*\\)/.*" "\\1" var))