Function: cider-doc

cider-doc is an interactive and byte-compiled function defined in cider-doc.el.

Signature

(cider-doc &optional ARG)

Documentation

Open Clojure documentation in a popup buffer.

Prompts for the symbol to use, or uses the symbol at point, depending on the value of cider-prompt-for-symbol. With prefix arg ARG, does the opposite of what that option dictates.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-doc.el
(defun cider-doc (&optional arg)
  "Open Clojure documentation in a popup buffer.

Prompts for the symbol to use, or uses the symbol at point, depending on
the value of `cider-prompt-for-symbol'.  With prefix arg ARG, does the
opposite of what that option dictates."
  (interactive "P")
  (cider-ensure-connected)
  (funcall (cider-prompt-for-symbol-function arg)
           "Doc for"
           #'cider-doc-lookup))