Function: cider-apropos-documentation
cider-apropos-documentation is an autoloaded, interactive and
byte-compiled function defined in cider-apropos.el.
Signature
(cider-apropos-documentation)
Documentation
Shortcut for (cider-apropos <query> nil t).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-apropos.el
;;;###autoload
(defun cider-apropos-documentation ()
"Shortcut for (cider-apropos <query> nil t)."
(interactive)
(cider-ensure-connected)
(cider-ensure-op-supported "apropos")
(cider-apropos (read-string "Search for Clojure documentation (a regular expression): ") nil t))