Function: cider-doc-apropos-select

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

Signature

(cider-doc-apropos-select ARG1 &optional ARG2)

Documentation

Search for Clojure symbols matching QUERY and pick one via completing-read.

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-select (query &optional args)
  "Search for Clojure symbols matching QUERY and pick one via `completing-read'.
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-select query (cider-doc--apropos-args args)))