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-20260414.1619/cider-eval.el
(defun cider-undef-all (&optional ns)
  "Undefine all symbols and aliases from the namespace NS."
  (interactive)
  (cider-ensure-op-supported "undef-all")
  (cider-nrepl-send-sync-request
   `("op" "undef-all"
     "ns" ,(or ns (cider-current-ns)))))