Function: ibuffer-filter-by-starred-name
ibuffer-filter-by-starred-name is an autoloaded, interactive and
byte-compiled function defined in ibuf-ext.el.gz.
Signature
(ibuffer-filter-by-starred-name QUALIFIER)
Documentation
Limit current view to buffers with name beginning and ending
with *, along with an optional suffix of the form digits or
<digits>.
Probably introduced at or before Emacs version 26.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
;;;###autoload (autoload 'ibuffer-filter-by-starred-name "ibuf-ext")
(define-ibuffer-filter starred-name
"Limit current view to buffers with name beginning and ending
with *, along with an optional suffix of the form digits or
<digits>."
(:description "starred buffer name"
:reader nil)
(string-match "\\`\\*[^*]+\\*\\(?:<[[:digit:]]+>\\)?\\'" (buffer-name buf)))