1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(ibuffer-filter-format-alist, ibuffer-cached-filter-formats,

ibuffer-compiled-filter-formats): New variables.
This commit is contained in:
Colin Walters 2002-02-04 03:57:19 +00:00
parent 3094ad7a5f
commit d98be487f7

View File

@ -133,6 +133,20 @@ displaying information to the user. FUNCTION is given a buffer and
the value of the qualifier, and returns non-nil if and only if the
buffer should be displayed.")
(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.")
(defvar ibuffer-cached-filter-formats nil)
(defvar ibuffer-compiled-filter-formats nil)
(defcustom ibuffer-old-time 3
"The number of days before a buffer is considered \"old\"."
:type 'integer