Function: cider-repl-handle-png
cider-repl-handle-png is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl-handle-png TYPE BUFFER IMAGE &optional SHOW-PREFIX BOL)
Documentation
A handler for inserting a png IMAGE into a repl BUFFER.
Part of the default cider-repl-content-type-handler-alist.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-handle-png (_type buffer image &optional show-prefix bol)
"A handler for inserting a png IMAGE into a repl BUFFER.
Part of the default `cider-repl-content-type-handler-alist'."
(cider-repl--display-image buffer
(cider-repl--image image 'png t)
show-prefix bol))