Function: cider-doc-apropos

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

Signature

(cider-doc-apropos ARG1 &optional ARG2)

Documentation

Search for Clojure symbols matching QUERY and show them in a pop-up.

ARGS are the transient arguments controlling the apropos search.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doc.el
(transient-define-suffix cider-doc-apropos (query &optional args)
  "Search for Clojure symbols matching QUERY and show them in a pop-up.
ARGS are the transient arguments controlling the apropos search."
  (interactive (list (read-string "Search for Clojure symbol (a regular expression): ")
                     (transient-args 'cider-doc-menu)))
  (apply #'cider-apropos query (cider-doc--apropos-args args)))