Function: cider-clojuredocs-web

cider-clojuredocs-web is an autoloaded, interactive and byte-compiled function defined in cider-clojuredocs.el.

Signature

(cider-clojuredocs-web &optional ARG)

Documentation

Open ClojureDocs documentation in the default web browser.

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-web (&optional arg)
  "Open ClojureDocs documentation in the default web browser.

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")
  (funcall (cider-prompt-for-symbol-function arg)
           "ClojureDocs doc for"
           #'cider-clojuredocs-web-lookup))