Function: cider-trace-next-call

cider-trace-next-call is an interactive and byte-compiled function defined in cider-tracing.el.

Signature

(cider-trace-next-call)

Documentation

Move point to the next call in the trace buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
(defun cider-trace-next-call ()
  "Move point to the next call in the trace buffer."
  (interactive)
  (if-let* ((match (text-property-search-forward 'cider-trace-call-id nil nil t)))
      (goto-char (prop-match-beginning match))
    (user-error "No next call")))