Function: cider-show-apropos

cider-show-apropos is a byte-compiled function defined in cider-apropos.el.

Signature

(cider-show-apropos SUMMARY RESULTS QUERY DOCS-P)

Documentation

Show SUMMARY and RESULTS for QUERY in a pop-up buffer, formatted for DOCS-P.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-apropos.el
(defun cider-show-apropos (summary results query docs-p)
  "Show SUMMARY and RESULTS for QUERY in a pop-up buffer, formatted for DOCS-P."
  (with-current-buffer (cider-popup-buffer cider-apropos-buffer 'select 'apropos-mode 'ancillary)
    (let ((inhibit-read-only t))
      (if (boundp 'header-line-format)
          (setq-local header-line-format summary)
        (insert summary "\n\n"))
      (dolist (result results)
        (cider-apropos-result result query docs-p))
      (goto-char (point-min)))))