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