Variable: ibuffer-filter-format-alist
ibuffer-filter-format-alist is a customizable variable defined in
ibuf-ext.el.gz.
Value
nil
Documentation
An alist which has special formats used when a filter is active.
The contents of this variable should look like:
((FILTER (FORMAT FORMAT ...)) (FILTER (FORMAT FORMAT ...)) ...)
For example, suppose that when you add a filter for buffers whose
major mode is emacs-lisp-mode, you only want to see the mark and the
name of the buffer. You could accomplish that by adding:
(mode ((mark " " name)))
to this variable.
Source Code
;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
(defcustom ibuffer-filter-format-alist nil
"An alist which has special formats used when a filter is active.
The contents of this variable should look like:
((FILTER (FORMAT FORMAT ...)) (FILTER (FORMAT FORMAT ...)) ...)
For example, suppose that when you add a filter for buffers whose
major mode is `emacs-lisp-mode', you only want to see the mark and the
name of the buffer. You could accomplish that by adding:
(mode ((mark \" \" name)))
to this variable."
:type '(repeat (list :tag "Association" (symbol :tag "Filter")
(list :tag "Formats" (repeat (sexp :tag "Format")))))
:group 'ibuffer)