aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters2002-02-04 03:57:19 +0000
committerColin Walters2002-02-04 03:57:19 +0000
commitd98be487f771c18fe2b58e7858642fd4377cad1d (patch)
tree11c17f0c02a40062ed7500c8b71b91628366c8ff
parent3094ad7a5f8a4b33c8fb8dacd7171c523895a369 (diff)
downloademacs-d98be487f771c18fe2b58e7858642fd4377cad1d.tar.gz
emacs-d98be487f771c18fe2b58e7858642fd4377cad1d.zip
(ibuffer-filter-format-alist, ibuffer-cached-filter-formats,
ibuffer-compiled-filter-formats): New variables.
-rw-r--r--lisp/ibuf-ext.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index 28e951592d5..9d914fae7c8 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -133,6 +133,20 @@ displaying information to the user. FUNCTION is given a buffer and
133the value of the qualifier, and returns non-nil if and only if the 133the value of the qualifier, and returns non-nil if and only if the
134buffer should be displayed.") 134buffer should be displayed.")
135 135
136(defcustom ibuffer-filter-format-alist nil
137 "An alist which has special formats used when a filter is active.
138The contents of this variable should look like:
139 ((FILTER (FORMAT FORMAT ...)) (FILTER (FORMAT FORMAT ...)) ...)
140
141For example, suppose that when you add a filter for buffers whose
142major mode is `emacs-lisp-mode', you only want to see the mark and the
143name of the buffer. You could accomplish that by adding:
144 (mode ((mark \" \" name)))
145to this variable.")
146
147(defvar ibuffer-cached-filter-formats nil)
148(defvar ibuffer-compiled-filter-formats nil)
149
136(defcustom ibuffer-old-time 3 150(defcustom ibuffer-old-time 3
137 "The number of days before a buffer is considered \"old\"." 151 "The number of days before a buffer is considered \"old\"."
138 :type 'integer 152 :type 'integer