Function: cider-ns-from-form
cider-ns-from-form is a byte-compiled function defined in
cider-client.el.
Signature
(cider-ns-from-form NS-FORM)
Documentation
Get ns substring from NS-FORM.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-ns-from-form (ns-form)
"Get ns substring from NS-FORM."
(when (string-match "^[ \t\n]*\(ns[ \t\n]+\\([^][ \t\n(){}]+\\)" ns-form)
(match-string-no-properties 1 ns-form)))