Function: cider-log--buffers-in-major-mode
cider-log--buffers-in-major-mode is a byte-compiled function defined
in cider-log.el.
Signature
(cider-log--buffers-in-major-mode EXPECTED)
Documentation
Return all buffers which are in the EXPECTED major mode.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--buffers-in-major-mode (expected)
"Return all buffers which are in the EXPECTED major mode."
(seq-filter (lambda (buffer)
(with-current-buffer buffer
(equal expected major-mode)))
(buffer-list)))