Function: cider-show-xref

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

Signature

(cider-show-xref SUMMARY RESULTS)

Documentation

Show SUMMARY and RESULTS in a pop-up buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-xref.el
(defun cider-show-xref (summary results)
  "Show SUMMARY and RESULTS in a pop-up buffer."
  (with-current-buffer (cider-popup-buffer cider-xref-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-xref-result result))
      (goto-char (point-min)))))