Function: cider-undef
cider-undef is an interactive and byte-compiled function defined in
cider-eval.el.
Signature
(cider-undef)
Documentation
Undefine a symbol from the current ns.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-undef ()
"Undefine a symbol from the current ns."
(interactive)
(cider-ensure-op-supported "undef")
(cider-read-symbol-name
"Undefine symbol: "
(lambda (sym)
(cider-nrepl-send-request
`("op" "undef"
"ns" ,(cider-current-ns)
"sym" ,sym)
(cider-interactive-eval-handler (current-buffer))))))