Function: cider-list-deprecated-keybindings

cider-list-deprecated-keybindings is an interactive and byte-compiled function defined in cider-util.el.

Signature

(cider-list-deprecated-keybindings)

Documentation

Display CIDER's deprecated keybindings and what to use instead.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-util.el
(defun cider-list-deprecated-keybindings ()
  "Display CIDER's deprecated keybindings and what to use instead."
  (interactive)
  (if (null cider--deprecated-keybindings)
      (message "No deprecated CIDER keybindings")
    (with-help-window "*cider-deprecated-keybindings*"
      (princ "Deprecated CIDER keybindings (still working, but slated for removal):\n\n")
      (dolist (entry (reverse cider--deprecated-keybindings))
        (princ (format "  %-10s  use %s%s\n"
                       (plist-get entry :key)
                       (plist-get entry :replacement)
                       (if-let* ((since (plist-get entry :since)))
                           (format "  (deprecated since %s)" since)
                         "")))))))