Function: cider--comment-format

cider--comment-format is a byte-compiled function defined in cider-eval.el.

Signature

(cider--comment-format)

Documentation

Return the comment formatting for cider-comment-style.

The return value is a list (PREFIX CONTINUED-PREFIX POSTFIX) suitable for the eval-to-comment handlers.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--comment-format ()
  "Return the comment formatting for `cider-comment-style'.
The return value is a list (PREFIX CONTINUED-PREFIX POSTFIX) suitable for
the eval-to-comment handlers."
  (pcase cider-comment-style
    ('discard (list "#_" "" ""))
    ('comment (list "(comment " "" ")"))
    (_        (list cider-comment-prefix
                    cider-comment-continued-prefix
                    cider-comment-postfix))))