Function: cider-list-traced

cider-list-traced is an autoloaded, interactive and byte-compiled function defined in cider-tracing.el.

Signature

(cider-list-traced)

Documentation

Display the vars and namespaces that are currently traced.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
;;;###autoload
(defun cider-list-traced ()
  "Display the vars and namespaces that are currently traced."
  (interactive)
  (let* ((response (cider-sync-request:list-traced))
         (vars (nrepl-dict-get response "traced-vars"))
         (nses (nrepl-dict-get response "traced-nses")))
    (if (and (null vars) (null nses))
        (message "Nothing is currently traced")
      (cider-list-traced--render nses vars))))