Function: cider-clojuredocs
cider-clojuredocs is an autoloaded, interactive and byte-compiled
function defined in cider-clojuredocs.el.
Signature
(cider-clojuredocs &optional ARG)
Documentation
Open ClojureDocs 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-clojuredocs.el
;;;###autoload
(defun cider-clojuredocs (&optional arg)
"Open ClojureDocs 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")
(when (cider-clojurescript-major-mode-p)
(user-error "`cider-clojuredocs' doesn't support ClojureScript"))
(funcall (cider-prompt-for-symbol-function arg)
"ClojureDocs doc for"
#'cider-clojuredocs-lookup))