Variable: clojure-toplevel-inside-comment-form

clojure-toplevel-inside-comment-form is a customizable variable defined in clojure-mode.el.

Value

nil

Documentation

Eval top level forms inside comment forms instead of the comment form itself.

Experimental. Function cider-defun-at-point is used extensively so if we change this heuristic it needs to be bullet-proof and desired. While testing, give an easy way to turn this new behavior off.

This variable was added, or its default value changed, in clojure-mode version 5.9.0.

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defcustom clojure-toplevel-inside-comment-form nil
  "Eval top level forms inside comment forms instead of the comment form itself.
Experimental.  Function `cider-defun-at-point' is used extensively so if we
change this heuristic it needs to be bullet-proof and desired.  While
testing, give an easy way to turn this new behavior off."
  :type 'boolean
  :safe #'booleanp
  :package-version '(clojure-mode . "5.9.0"))