comparison lisp/ibuffer.el @ 90103:3ebd9bdb4fe5

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-13 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-83 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-89 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-90 Update from CVS: man/calc.texi: Add macro for LaTeX for info output. * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-91 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-94 Update from CVS
author Miles Bader <miles@gnu.org>
date Sun, 13 Feb 2005 07:19:08 +0000
parents e24e2e78deda aac0a33f5772
children f042e7c0fe20
comparison
equal deleted inserted replaced
90102:9b4f359c4117 90103:3ebd9bdb4fe5
43 "An advanced replacement for `buffer-menu'. 43 "An advanced replacement for `buffer-menu'.
44 44
45 Ibuffer allows you to operate on buffers in a manner much like Dired. 45 Ibuffer allows you to operate on buffers in a manner much like Dired.
46 Operations include sorting, marking by regular expression, and 46 Operations include sorting, marking by regular expression, and
47 the ability to filter the displayed buffers by various criteria." 47 the ability to filter the displayed buffers by various criteria."
48 :version "21.4" 48 :version "22.1"
49 :group 'convenience) 49 :group 'convenience)
50 50
51 (defcustom ibuffer-formats '((mark modified read-only " " (name 18 18 :left :elide) 51 (defcustom ibuffer-formats '((mark modified read-only " " (name 18 18 :left :elide)
52 " " (size 9 -1 :right) 52 " " (size 9 -1 :right)
53 " " (mode 16 16 :right :elide) " " filename-and-process) 53 " " (mode 16 16 :right :elide) " " filename-and-process)
213 If a regexp, then it will be matched against the buffer's name. 213 If a regexp, then it will be matched against the buffer's name.
214 If a function, it will be called with the buffer as an argument, and 214 If a function, it will be called with the buffer as an argument, and
215 should return non-nil if this buffer should be shown. 215 should return non-nil if this buffer should be shown.
216 216
217 Viewing of buffers hidden because of these predicates may be customized 217 Viewing of buffers hidden because of these predicates may be customized
218 via `ibuffer-default-display-maybe-show-predicates' and is toggled by 218 via `ibuffer-default-display-maybe-show-predicates' and is toggled by
219 giving a non-nil prefix argument to `ibuffer-update'. 219 giving a non-nil prefix argument to `ibuffer-update'.
220 Note that this specialized filtering occurs before real filtering." 220 Note that this specialized filtering occurs before real filtering."
221 :type '(repeat (choice regexp function)) 221 :type '(repeat (choice regexp function))
222 :group 'ibuffer) 222 :group 'ibuffer)
223 223