Variable: cider-auto-jump-to-error
cider-auto-jump-to-error is a customizable variable defined in
cider-eval.el.
Value
t
Documentation
Control the cursor jump behavior in compilation error buffer.
When non-nil automatically jump to error location during interactive
compilation. When set to errors-only, don't jump to warnings.
When set to nil, don't jump at all.
This variable was added, or its default value changed, in cider version 0.7.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defcustom cider-auto-jump-to-error t
"Control the cursor jump behavior in compilation error buffer.
When non-nil automatically jump to error location during interactive
compilation. When set to `errors-only', don't jump to warnings.
When set to nil, don't jump at all."
:type '(choice (const :tag "always" t)
(const errors-only)
(const :tag "never" nil))
:group 'cider
:package-version '(cider . "0.7.0"))