Function: cider-trace-find-var

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

Signature

(cider-trace-find-var)

Documentation

Jump to the definition of the traced function on the current line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
(defun cider-trace-find-var ()
  "Jump to the definition of the traced function on the current line."
  (interactive)
  (if-let* ((fn (get-text-property (point) 'cider-trace-fn)))
      (cider-find-var nil fn)
    (user-error "No traced function on this line")))