Function: cider-repl--insert-startup-commands

cider-repl--insert-startup-commands is a byte-compiled function defined in cider-repl.el.

Signature

(cider-repl--insert-startup-commands)

Documentation

Insert a compact startup note for ClojureScript REPLs.

The full launch details - the jack-in command and the cljs init form - stay in cider-launch-params and are shown on demand by cider-repl-describe-startup, rather than dumped into the REPL transcript.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl--insert-startup-commands ()
  "Insert a compact startup note for ClojureScript REPLs.
The full launch details - the jack-in command and the cljs init form - stay in
`cider-launch-params' and are shown on demand by `cider-repl-describe-startup',
rather than dumped into the REPL transcript."
  (when-let* ((cljs-repl-type (plist-get cider-launch-params :cljs-repl-type)))
    (insert-before-markers
     (propertize (format ";; ClojureScript REPL: %s\n" cljs-repl-type)
                 'font-lock-face 'font-lock-comment-face))))