Function: cider-tap-next

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

Signature

(cider-tap-next)

Documentation

Move point to the next tapped value.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tap.el
(defun cider-tap-next ()
  "Move point to the next tapped value."
  (interactive)
  (if-let* ((match (text-property-search-forward 'cider-tap-entry nil nil t)))
      (goto-char (prop-match-beginning match))
    (user-error "No next tapped value")))