Variable: cider--deprecated-keybindings

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

Value

((:key "C-c M-C" :command cider-connect-cljs :replacement
       "C-c C-x c s" :since "0.18.0")
 (:key "C-c M-c" :command cider-connect-clj :replacement "C-c C-x c j"
       :since "0.18.0")
 (:key "C-c M-J" :command cider-jack-in-cljs :replacement
       "C-c C-x j s" :since "0.18.0")
 (:key "C-c M-j" :command cider-jack-in-clj :replacement "C-c C-x j j"
       :since "0.18.0"))

Documentation

Registry of CIDER's deprecated keybindings.

Each entry is a plist with :key, :command, :replacement and :since. Populated by cider--define-deprecated-key, listed by cider-list-deprecated-keybindings.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-util.el
(defvar cider--deprecated-keybindings nil
  "Registry of CIDER's deprecated keybindings.
Each entry is a plist with `:key', `:command', `:replacement' and `:since'.
Populated by `cider--define-deprecated-key', listed by
`cider-list-deprecated-keybindings'.")