Function: cider-repl--insert-banner
cider-repl--insert-banner is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl--insert-banner)
Documentation
Insert the banner in the current REPL buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl--insert-banner ()
"Insert the banner in the current REPL buffer."
(insert-before-markers
(propertize (cider-repl--banner) 'font-lock-face 'font-lock-comment-face))
(when cider-repl-display-help-banner
(insert-before-markers
(propertize (cider-repl--help-banner) 'font-lock-face 'font-lock-comment-face))))