Variable: cider-mode-line

cider-mode-line is a customizable variable defined in cider-mode.el.

Value

(:eval
 (format " cider[%s]"
	 (cider--modeline-info)))

Documentation

Mode line lighter for cider mode.

The value of this variable is a mode line template as in mode-line-format. See Info Node (elisp)Mode Line Format for details about mode line templates.

Customize this variable to change how cider mode displays its status in the mode line. The default value displays the current connection. Set this variable to nil to disable the mode line entirely.

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-mode.el
;;;###autoload
(defcustom cider-mode-line
  '(:eval (format " cider[%s]" (cider--modeline-info)))
  "Mode line lighter for cider mode.

The value of this variable is a mode line template as in
`mode-line-format'.  See Info Node `(elisp)Mode Line Format' for details
about mode line templates.

Customize this variable to change how cider mode displays its status in the
mode line.  The default value displays the current connection.  Set this
variable to nil to disable the mode line entirely."
  :group 'cider
  :type 'sexp
  :risky t
  :package-version '(cider "0.7.0"))