Function: cider-stacktrace-previous-cause

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

Signature

(cider-stacktrace-previous-cause)

Documentation

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

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
;; Interactive functions

(defun cider-stacktrace-previous-cause ()
  "Move point to the previous exception cause, if one exists."
  (interactive)
  (with-current-buffer cider-error-buffer
    (when-let* ((pos (previous-single-property-change (point) 'cause)))
      (goto-char pos))))