Function: cider--find-ns
cider--find-ns is a byte-compiled function defined in cider-find.el.
Signature
(cider--find-ns NS &optional OTHER-WINDOW)
Documentation
Find the file containing NS's definition.
Optionally open it in a different window if OTHER-WINDOW is truthy.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-find.el
(defun cider--find-ns (ns &optional other-window)
"Find the file containing NS's definition.
Optionally open it in a different window if OTHER-WINDOW is truthy."
(if-let* ((path (cider-sync-request:ns-path ns)))
(cider-jump-to (cider-find-file path) nil other-window)
(user-error "Can't find namespace `%s'" ns)))