Function: cider-apropos-documentation-select

cider-apropos-documentation-select is an autoloaded, interactive and byte-compiled function defined in cider-apropos.el.

Signature

(cider-apropos-documentation-select)

Documentation

Shortcut for (cider-apropos-select <query> nil t).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-apropos.el
;;;###autoload
(defun cider-apropos-documentation-select ()
  "Shortcut for (cider-apropos-select <query> nil t)."
  (interactive)
  (cider-ensure-connected)
  (cider-ensure-op-supported "apropos")
  (cider-apropos-select (read-string "Search for Clojure documentation (a regular expression): ") nil t))