Function: cider-stacktrace-next-cause

cider-stacktrace-next-cause is an interactive and byte-compiled function defined in cider-stacktrace.el.

Signature

(cider-stacktrace-next-cause)

Documentation

Move point to the next exception cause, if one exists.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defun cider-stacktrace-next-cause ()
  "Move point to the next exception cause, if one exists."
  (interactive)
  (with-current-buffer cider-error-buffer
    (when-let* ((pos (next-single-property-change (point) 'cause)))
      (goto-char pos))))