Function: cider-repl-clear-help-banner
cider-repl-clear-help-banner is an interactive and byte-compiled
function defined in cider-repl.el.
Signature
(cider-repl-clear-help-banner)
Documentation
Delete the help hint shown below the REPL banner.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl-clear-help-banner ()
"Delete the help hint shown below the REPL banner."
(interactive)
(when-let* ((start (text-property-any (point-min) (point-max)
'cider-repl-help-banner t))
(end (or (next-single-property-change start 'cider-repl-help-banner)
(point-max))))
(let ((inhibit-read-only t))
(cider-repl--clear-region start end))))