Function: ibuffer-redisplay
ibuffer-redisplay is an interactive and byte-compiled function defined
in ibuffer.el.gz.
Signature
(ibuffer-redisplay &optional SILENT)
Documentation
Redisplay the current list of buffers.
This does not show new buffers; use ibuffer-update for that.
If optional arg SILENT is non-nil, do not display progress messages.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-redisplay (&optional silent)
"Redisplay the current list of buffers.
This does not show new buffers; use `ibuffer-update' for that.
If optional arg SILENT is non-nil, do not display progress messages."
(interactive)
(ibuffer-forward-line 0)
(unless silent
(message "Redisplaying current buffer list..."))
(let ((blist (ibuffer-current-state-list)))
(when (and (null blist)
(featurep 'ibuf-ext)
(or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups))
(message "No buffers! (note: filtering in effect)"))
(ibuffer-redisplay-engine blist t)
(unless silent
(message "Redisplaying current buffer list...done"))
(ibuffer-forward-line 0)))