Function: cider-repl-help

cider-repl-help is an autoloaded, interactive and byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-help)

Documentation

Display a quick REPL reference for working in the CIDER REPL.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
;;;###autoload
(defun cider-repl-help ()
  "Display a quick REPL reference for working in the CIDER REPL."
  (interactive)
  (with-current-buffer (get-buffer-create cider-repl-help-buffer)
    (cider-repl-help-mode)
    (let ((inhibit-read-only t))
      (erase-buffer)
      (insert (cider-repl--help-contents))
      (goto-char (point-min))))
  (pop-to-buffer cider-repl-help-buffer))