Function: cider-test-previous-result
cider-test-previous-result is an interactive and byte-compiled
function defined in cider-test.el.
Signature
(cider-test-previous-result)
Documentation
Move point to the previous test result, if one exists.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-test-previous-result ()
"Move point to the previous test result, if one exists."
(interactive)
(with-current-buffer (get-buffer cider-test-report-buffer)
(when-let* ((pos (previous-single-property-change (point) 'type)))
(if (get-text-property pos 'type)
(goto-char pos)
(when-let* ((pos (previous-single-property-change pos 'type)))
(goto-char pos))))))