Function: cider-toggle-trace-var

cider-toggle-trace-var is an autoloaded, interactive and byte-compiled function defined in cider-tracing.el.

Signature

(cider-toggle-trace-var ARG)

Documentation

Toggle var tracing.

Prompts for the symbol to use, or uses the symbol at point, depending on the value of cider-prompt-for-symbol. With prefix arg ARG, does the opposite of what that option dictates.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-tracing.el
;;;###autoload
(defun cider-toggle-trace-var (arg)
  "Toggle var tracing.
Prompts for the symbol to use, or uses the symbol at point, depending on
the value of `cider-prompt-for-symbol'.  With prefix arg ARG, does the
opposite of what that option dictates."
  (interactive "P")
  (cider-ensure-op-supported "toggle-trace-var")
  (funcall (cider-prompt-for-symbol-function arg)
           "Toggle trace for var"
           #'cider--toggle-trace-var))