Function: cider-eldoc-setup

cider-eldoc-setup is a byte-compiled function defined in cider-eldoc.el.

Signature

(cider-eldoc-setup)

Documentation

Setup eldoc in the current buffer.

eldoc mode has to be enabled for this to have any effect.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eldoc.el
(defun cider-eldoc-setup ()
  "Setup eldoc in the current buffer.
eldoc mode has to be enabled for this to have any effect."
  (add-hook 'eldoc-documentation-functions #'cider-eldoc nil t)
  (apply #'eldoc-add-command cider-extra-eldoc-commands))