Function: cider-javadoc

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

Signature

(cider-javadoc ARG)

Documentation

Open Javadoc 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-javadoc (arg)
  "Open Javadoc 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)
  (cider-ensure-op-supported "info")
  (funcall (cider-prompt-for-symbol-function arg)
           "Javadoc for"
           #'cider-javadoc-handler))