Function: cider-inspector-tap-at-point

cider-inspector-tap-at-point is an interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector-tap-at-point)

Documentation

Sends the current Inspector current sub-value (per POINT) to tap>.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-tap-at-point ()
  "Sends the current Inspector current sub-value (per POINT) to `tap>'."
  (interactive)
  (seq-let (property value) (cider-inspector-property-at-point)
    (pcase property
      (`cider-value-idx
       (cl-assert value)
       (nrepl-dbind-response (cider-nrepl-send-sync-request `("op" "inspect-tap-indexed"
                                                              "idx" ,value))
           (value err)
         (if value
             (message "Successfully tapped the Inspector item at point")
           (error "Could not tap the Inspector item at point: %s" err))))
      (_ (error "No object at point")))))