Function: cider-trace-previous-call
cider-trace-previous-call is an interactive and byte-compiled function
defined in cider-tracing.el.
Signature
(cider-trace-previous-call)
Documentation
Move point to the previous call in the trace buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
(defun cider-trace-previous-call ()
"Move point to the previous call in the trace buffer."
(interactive)
(if-let* ((match (text-property-search-backward 'cider-trace-call-id nil nil t)))
(goto-char (prop-match-beginning match))
(user-error "No previous call")))