Function: cider-inspector-tap-current-val

cider-inspector-tap-current-val is an interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector-tap-current-val)

Documentation

Sends the current Inspector current value to tap>.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-tap-current-val ()
  "Sends the current Inspector current value to `tap>'."
  (interactive)
  (let ((response (cider-nrepl-send-sync-request '("op" "inspect-tap-current-value"))))
    (nrepl-dbind-response response (value err)
      (if value
          (message "Successfully tapped the current Inspector value")
        (error "Could not tap the current Inspector value: %s" err)))))