We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb6d98 commit b4c3bdcCopy full SHA for b4c3bdc
cider-mode.el
@@ -171,6 +171,14 @@ the related commands `cider-repl-clear-buffer' and
171
"sym" ,sym)
172
(cider-interactive-eval-handler (current-buffer))))))
173
174
+(defun cider-undef-all (&optional ns)
175
+ "Undefine all symbols and aliases from the namespace NS."
176
+ (interactive)
177
+ (cider-ensure-op-supported "undef-all")
178
+ (cider-nrepl-send-sync-request
179
+ `("op" "undef-all"
180
+ "ns" ,(or ns (cider-current-ns)))))
181
+
182
;;; cider-run
183
(defvar cider--namespace-history nil
184
"History of user input for namespace prompts.")
0 commit comments