Function: cider-tap--handle
cider-tap--handle is a byte-compiled function defined in cider-tap.el.
Signature
(cider-tap--handle BUFFER MSG)
Documentation
Handle a tap subscription response MSG, rendering into BUFFER.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tap.el
(defun cider-tap--handle (buffer msg)
"Handle a tap subscription response MSG, rendering into BUFFER."
(when (buffer-live-p buffer)
(with-current-buffer buffer
(nrepl-dbind-response msg (cider/tap-subscribe cider/tap-value)
(cond (cider/tap-value
(cider-tap--render-value cider/tap-value))
(cider/tap-subscribe
(setq cider-tap--subscription cider/tap-subscribe)))))))