Function: cider-browse-spec-all

cider-browse-spec-all is an autoloaded, interactive and byte-compiled function defined in cider-browse-spec.el.

Signature

(cider-browse-spec-all &optional ARG)

Documentation

Open list of specs in a popup buffer.

With a prefix argument ARG, prompts for a regexp to filter specs. No filter applied if the regexp is the empty string.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-browse-spec.el
;;;###autoload
(defun cider-browse-spec-all (&optional arg)
  "Open list of specs in a popup buffer.

With a prefix argument ARG, prompts for a regexp to filter specs.
No filter applied if the regexp is the empty string."
  (interactive "P")
  (cider-browse-spec-regex (if arg (read-string "Filter regex: ") "")))