Variable: cider-enable-nrepl-jvmti-agent
cider-enable-nrepl-jvmti-agent is a customizable variable defined in
cider.el.
Value
nil
Documentation
When t, add -Djdk.attach.allowAttachSelf to the command line arguments.
This allows nREPL JVMTI agent to be loaded. It is needed for evaluation interruption to properly work on Java 21 and above.
This variable was added, or its default value changed, in Emacs (cider
. 1.15.0).
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-enable-nrepl-jvmti-agent nil
"When t, add `-Djdk.attach.allowAttachSelf' to the command line arguments.
This allows nREPL JVMTI agent to be loaded. It is needed for evaluation
interruption to properly work on Java 21 and above."
:type 'boolean
:safe #'booleanp
:version '(cider . "1.15.0"))