Variable: cider-warn-on-deprecated-keybindings

cider-warn-on-deprecated-keybindings is a customizable variable defined in cider-util.el.

Value

t

Documentation

Whether to hint when a deprecated CIDER keybinding is used.

The command still runs either way; this only controls the one-time message nudging you toward the replacement binding.

This variable was added, or its default value changed, in cider version 2.0.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-util.el
;;; Deprecated keybindings
;;
;; Emacs has `make-obsolete' for symbols, but nothing for keybindings.  As CIDER
;; reorganizes its keymaps (grouping commands under prefixes) we want to retire
;; bindings without yanking them out from under people's muscle memory: the old
;; key keeps working throughout a deprecation window but, once per session,
;; nudges you toward the replacement.  `cider-list-deprecated-keybindings' shows
;; everything still pending removal.

(defcustom cider-warn-on-deprecated-keybindings t
  "Whether to hint when a deprecated CIDER keybinding is used.
The command still runs either way; this only controls the one-time message
nudging you toward the replacement binding."
  :type 'boolean
  :group 'cider
  :package-version '(cider . "2.0.0"))