Variable: cider-scratch-initial-message

cider-scratch-initial-message is a customizable variable defined in cider-scratch.el.

Value

";; This buffer is for Clojure experiments and evaluation.\n\n;; Press C-j to evaluate the last expression.\n\n;; You can also press C-u C-j to evaluate the expression and pretty-print its result.\n\n"

Documentation

The initial message displayed in new scratch buffers.

This variable was added, or its default value changed, in cider version 0.18.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-scratch.el
(defcustom cider-scratch-initial-message
  ";; This buffer is for Clojure experiments and evaluation.\n
;; Press C-j to evaluate the last expression.\n
;; You can also press C-u C-j to evaluate the expression and pretty-print its result.\n\n"
  "The initial message displayed in new scratch buffers."
  :type 'string
  :group 'cider
  :package-version '(cider . "0.18.0"))