Function: cider-undef-all

cider-undef-all is an interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-undef-all &optional NS)

Documentation

Undefine all symbols and aliases from the namespace NS.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider-undef-all (&optional ns)
  "Undefine all symbols and aliases from the namespace NS."
  (interactive)
  (cider-nrepl-sync-request
   `("op" "cider/undef-all"
     "ns" ,(or ns (cider-current-ns)))))