Add 2011 to FSF/AIST copyright years.
[bpt/emacs.git] / lisp / ibuffer.el
CommitLineData
25d2f683
CW
1;;; ibuffer.el --- operate on buffers like dired
2
e6ce8c42 3;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5df4f04c 4;; 2009, 2010, 2011 Free Software Foundation, Inc.
25d2f683
CW
5
6;; Author: Colin Walters <walters@verbum.org>
4e4a724c 7;; Maintainer: John Paul Wallington <jpw@gnu.org>
25d2f683 8;; Created: 8 Sep 2000
25d2f683 9;; Keywords: buffer, convenience
25d2f683 10
b5cd37ea 11;; This file is part of GNU Emacs.
25d2f683 12
eb3fa2cf
GM
13;; GNU Emacs is free software: you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
25d2f683 17
eb3fa2cf
GM
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
25d2f683
CW
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25d2f683
CW
25
26;;; Commentary:
27
28;; ibuffer.el is an advanced replacement for the `buffer-menu' which
29;; is normally distributed with Emacs. Its interface is intended to
30;; be analogous to that of Dired.
31
32;;; Code:
33
34(eval-when-compile
35 (require 'cl)
36 (require 'ibuf-macs)
37 (require 'dired))
38
730da5b2 39(require 'font-core)
fd225d80 40
735d7026
JB
41;; These come from ibuf-ext.el, which can not be require'd at compile time
42;; because it has a recursive dependency on ibuffer.el
43(defvar ibuffer-auto-mode)
44(defvar ibuffer-cached-filter-formats)
45(defvar ibuffer-compiled-filter-formats)
46(defvar ibuffer-filter-format-alist)
47(defvar ibuffer-filter-group-kill-ring)
48(defvar ibuffer-filter-groups)
49(defvar ibuffer-filtering-qualifiers)
6d11a78b 50(defvar ibuffer-header-line-format)
735d7026
JB
51(defvar ibuffer-hidden-filter-groups)
52(defvar ibuffer-inline-columns)
53(defvar ibuffer-show-empty-filter-groups)
54(defvar ibuffer-tmp-hide-regexps)
55(defvar ibuffer-tmp-show-regexps)
63f0a166 56
2ead9289 57(declare-function ibuffer-mark-on-buffer "ibuf-ext"
004a00f4 58 (func &optional ibuffer-mark-on-buffer-mark group))
2ead9289 59(declare-function ibuffer-generate-filter-groups "ibuf-ext"
004a00f4
DN
60 (bmarklist &optional noempty nodefault))
61(declare-function ibuffer-format-filter-group-data "ibuf-ext" (filter))
62
25d2f683
CW
63(defgroup ibuffer nil
64 "An advanced replacement for `buffer-menu'.
65
66Ibuffer allows you to operate on buffers in a manner much like Dired.
67Operations include sorting, marking by regular expression, and
68the ability to filter the displayed buffers by various criteria."
bf247b6e 69 :version "22.1"
25d2f683
CW
70 :group 'convenience)
71
ac3c7293
JPW
72(defcustom ibuffer-formats '((mark modified read-only " " (name 18 18 :left :elide)
73 " " (size 9 -1 :right)
b9debd54 74 " " (mode 16 16 :left :elide) " " filename-and-process)
25d2f683
CW
75 (mark " " (name 16 -1) " " filename))
76 "A list of ways to display buffer lines.
77
78With Ibuffer, you are not limited to displaying just certain
79attributes of a buffer such as size, name, and mode in a particular
cba63a2d 80order. Through this variable, you can completely customize and
25d2f683
CW
81control the appearance of an Ibuffer buffer. See also
82`define-ibuffer-column', which allows you to define your own columns
83for display.
84
85This variable has the form
2e4fae7d 86 ((COLUMN COLUMN ...) (COLUMN COLUMN ...) ...)
25d2f683
CW
87Each element in `ibuffer-formats' should be a list containing COLUMN
88specifiers. A COLUMN can be any of the following:
89
90 SYMBOL - A symbol naming the column. Predefined columns are:
91 mark modified read-only name size mode process filename
92 When you define your own columns using `define-ibuffer-column', just
93 use their name like the predefined columns here. This entry can
94 also be a function of two arguments, which should return a string.
95 The first argument is the buffer object, and the second is the mark
96 on that buffer.
97 or
98 \"STRING\" - A literal string to display.
99 or
100 (SYMBOL MIN-SIZE MAX-SIZE &optional ALIGN ELIDE) - SYMBOL is a
101 symbol naming the column, and MIN-SIZE and MAX-SIZE are integers (or
102 functions of no arguments returning an integer) which constrict the
103 size of a column. If MAX-SIZE is -1, there is no upper bound. The
104 default values are 0 and -1, respectively. If MIN-SIZE is negative,
105 use the end of the string. The optional element ALIGN describes the
106 alignment of the column; it can be :left, :center or :right. The
107 optional element ELIDE describes whether or not to elide the column
108 if it is too long; valid values are :elide and nil. The default is
109 nil (don't elide).
110
111Some example of valid entries in `ibuffer-formats', with
112description (also, feel free to try them out, and experiment with your
113own!):
114
115 (mark \" \" name)
116 This format just displays the current mark (if any) and the name of
117 the buffer, separated by a space.
118 (mark modified read-only \" \" (name 16 16 :left) \" \" (size 6 -1 :right))
119 This format displays the current mark (if any), its modification and
120 read-only status, as well as the name of the buffer and its size. In
121 this format, the name is restricted to 16 characters (longer names
523304ed 122 will be truncated, and shorter names will be padded with spaces), and
cba63a2d 123 the name is also aligned to the left. The size of the buffer will
25d2f683
CW
124 be padded with spaces up to a minimum of six characters, but there is
125 no upper limit on its size. The size will also be aligned to the
126 right.
127
128Thus, if you wanted to use these two formats, add
129
130 (setq ibuffer-formats '((mark \" \" name)
131 (mark modified read-only
132 (name 16 16 :left) (size 6 -1 :right))))
133
134to your ~/.emacs file.
135
136Using \\[ibuffer-switch-format], you can rotate the display between
137the specified formats in the list."
138 :type '(repeat sexp)
139 :group 'ibuffer)
140
141(defcustom ibuffer-always-compile-formats (featurep 'bytecomp)
142 "If non-nil, then use the byte-compiler to optimize `ibuffer-formats'.
143This will increase the redisplay speed, at the cost of loading the
144elisp byte-compiler."
145 :type 'boolean
146 :group 'ibuffer)
147
148(defcustom ibuffer-fontification-alist
40c10465 149 `((10 buffer-read-only font-lock-constant-face)
9fe14abe
JPW
150 (15 (and buffer-file-name
151 (string-match ibuffer-compressed-file-name-regexp
152 buffer-file-name))
153 font-lock-doc-face)
154 (20 (string-match "^*" (buffer-name)) font-lock-keyword-face)
155 (25 (and (string-match "^ " (buffer-name))
da337a28
JPW
156 (null buffer-file-name))
157 italic)
9fe14abe
JPW
158 (30 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face)
159 (35 (eq major-mode 'dired-mode) font-lock-function-name-face))
25d2f683
CW
160 "An alist describing how to fontify buffers.
161Each element should be of the form (PRIORITY FORM FACE), where
162PRIORITY is an integer, FORM is an arbitrary form to evaluate in the
163buffer, and FACE is the face to use for fontification. If the FORM
164evaluates to non-nil, then FACE will be put on the buffer name. The
fd225d80
CW
165element with the highest PRIORITY takes precedence.
166
4e4a724c 167If you change this variable, you must kill the Ibuffer buffer and
fd225d80 168recreate it for the change to take effect."
25d2f683
CW
169 :type '(repeat
170 (list (integer :tag "Priority")
171 (sexp :tag "Test Form")
172 face))
173 :group 'ibuffer)
174
175(defcustom ibuffer-use-other-window nil
7ad5b902 176 "If non-nil, display Ibuffer in another window by default."
25d2f683
CW
177 :type 'boolean
178 :group 'ibuffer)
179
180(defcustom ibuffer-default-shrink-to-minimum-size nil
181 "If non-nil, minimize the size of the Ibuffer window by default."
182 :type 'boolean
183 :group 'ibuffer)
184(defvar ibuffer-shrink-to-minimum-size nil)
185
0740098c
JPW
186(defcustom ibuffer-display-summary t
187 "If non-nil, summarize Ibuffer columns."
188 :type 'boolean
189 :group 'ibuffer)
190
3eda3649
CW
191(defcustom ibuffer-truncate-lines t
192 "If non-nil, do not display continuation lines."
193 :type 'boolean
194 :group 'ibuffer)
195
25d2f683
CW
196(defcustom ibuffer-case-fold-search case-fold-search
197 "If non-nil, ignore case when searching."
198 :type 'boolean
199 :group 'ibuffer)
200
201(defcustom ibuffer-default-sorting-mode 'recency
202 "The criteria by which to sort the buffers.
203
4e4a724c
JPW
204Note that this variable is local to each Ibuffer buffer. Thus, you
205can have multiple Ibuffer buffers open, each with a different sorted
25d2f683
CW
206view of the buffers."
207 :type '(choice (const :tag "Last view time" :value recency)
208 (const :tag "Lexicographic" :value alphabetic)
209 (const :tag "Buffer size" :value size)
d5794180 210 (const :tag "File name" :value filename/process)
25d2f683
CW
211 (const :tag "Major mode" :value major-mode))
212 :group 'ibuffer)
213(defvar ibuffer-sorting-mode nil)
e7820654 214(defvar ibuffer-last-sorting-mode nil)
25d2f683
CW
215
216(defcustom ibuffer-default-sorting-reversep nil
217 "If non-nil, reverse the default sorting order."
218 :type 'boolean
219 :group 'ibuffer)
220(defvar ibuffer-sorting-reversep nil)
221
222(defcustom ibuffer-elide-long-columns nil
972b8f82 223 "If non-nil, then elide column entries which exceed their max length."
25d2f683
CW
224 :type 'boolean
225 :group 'ibuffer)
972b8f82
JB
226(make-obsolete-variable 'ibuffer-elide-long-columns
227 "use the :elide argument of `ibuffer-formats'."
228 "22.1")
25d2f683
CW
229
230(defcustom ibuffer-eliding-string "..."
231 "The string to use for eliding long columns."
232 :type 'string
233 :group 'ibuffer)
234
235(defcustom ibuffer-maybe-show-predicates `(,(lambda (buf)
236 (and (string-match "^ " (buffer-name buf))
237 (null buffer-file-name))))
4e4a724c
JPW
238 "A list of predicates for buffers to display conditionally.
239
240A predicate can be a regexp or a function.
25d2f683
CW
241If a regexp, then it will be matched against the buffer's name.
242If a function, it will be called with the buffer as an argument, and
243should return non-nil if this buffer should be shown.
244
957237cb 245Viewing of buffers hidden because of these predicates may be customized
bf247b6e 246via `ibuffer-default-display-maybe-show-predicates' and is toggled by
957237cb
JPW
247giving a non-nil prefix argument to `ibuffer-update'.
248Note that this specialized filtering occurs before real filtering."
25d2f683
CW
249 :type '(repeat (choice regexp function))
250 :group 'ibuffer)
251
957237cb
JPW
252(defcustom ibuffer-default-display-maybe-show-predicates nil
253 "Non-nil means show buffers that match `ibuffer-maybe-show-predicates'."
254 :type 'boolean
255 :group 'ibuffer)
256
257(defvar ibuffer-display-maybe-show-predicates nil)
258
25d2f683
CW
259(defvar ibuffer-current-format nil)
260
0ce780e1
CW
261(defcustom ibuffer-movement-cycle t
262 "If non-nil, then forward and backwards movement commands cycle."
263 :type 'boolean
264 :group 'ibuffer)
265
25d2f683
CW
266(defcustom ibuffer-modified-char ?*
267 "The character to display for modified buffers."
268 :type 'character
269 :group 'ibuffer)
270
271(defcustom ibuffer-read-only-char ?%
272 "The character to display for read-only buffers."
273 :type 'character
274 :group 'ibuffer)
275
276(defcustom ibuffer-marked-char ?>
277 "The character to display for marked buffers."
278 :type 'character
279 :group 'ibuffer)
280
281(defcustom ibuffer-deletion-char ?D
282 "The character to display for buffers marked for deletion."
283 :type 'character
284 :group 'ibuffer)
285
286(defcustom ibuffer-expert nil
287 "If non-nil, don't ask for confirmation of \"dangerous\" operations."
288 :type 'boolean
289 :group 'ibuffer)
290
291(defcustom ibuffer-view-ibuffer nil
292 "If non-nil, display the current Ibuffer buffer itself.
293Note that this has a drawback - the data about the current Ibuffer
294buffer will most likely be inaccurate. This includes modification
295state, size, etc."
296 :type 'boolean
297 :group 'ibuffer)
298
299(defcustom ibuffer-always-show-last-buffer nil
4e4a724c
JPW
300 "If non-nil, always display the previous buffer.
301This variable takes precedence over filtering, and even
25d2f683
CW
302`ibuffer-never-show-predicates'."
303 :type '(choice (const :tag "Always" :value t)
304 (const :tag "Never" :value nil)
305 (const :tag "Always except minibuffer" :value :nomini))
306 :group 'ibuffer)
307
0bdd7ae4
JPW
308(defcustom ibuffer-jump-offer-only-visible-buffers nil
309 "If non-nil, only offer buffers visible in the Ibuffer buffer
310in completion lists of the `ibuffer-jump-to-buffer' command."
311 :type 'boolean
312 :group 'ibuffer)
313
25d2f683 314(defcustom ibuffer-use-header-line (boundp 'header-line-format)
7ad5b902 315 "If non-nil, display a header line containing current filters."
25d2f683
CW
316 :type 'boolean
317 :group 'ibuffer)
318
319(defcustom ibuffer-default-directory nil
4e4a724c 320 "The default directory to use for a new Ibuffer buffer.
2e4fae7d 321If nil, inherit the directory of the buffer in which `ibuffer' was
25d2f683
CW
322called. Otherwise, this variable should be a string naming a
323directory, like `default-directory'."
324 :type '(choice (const :tag "Inherit" :value nil)
325 string)
326 :group 'ibuffer)
327
4e4a724c
JPW
328(defcustom ibuffer-help-buffer-modes
329 '(help-mode apropos-mode Info-mode Info-edit-mode)
60356fb5
CW
330 "List of \"Help\" major modes."
331 :type '(repeat function)
332 :group 'ibuffer)
333
9fe14abe 334(defcustom ibuffer-compressed-file-name-regexp
fe99056f 335 "\\.\\(arj\\|bgz\\|bz2\\|gz\\|lzh\\|taz\\|tgz\\|zip\\|z\\)$"
9fe14abe
JPW
336 "Regexp to match compressed file names."
337 :type 'regexp
c7f5c0a8 338 :group 'ibuffer)
9fe14abe 339
cd6ef82d
GM
340(define-obsolete-variable-alias 'ibuffer-hooks 'ibuffer-hook "22.1")
341
e9e96ba0 342(defcustom ibuffer-hook nil
4e4a724c 343 "Hook run when `ibuffer' is called."
25d2f683
CW
344 :type 'hook
345 :group 'ibuffer)
cd6ef82d
GM
346
347(define-obsolete-variable-alias 'ibuffer-mode-hooks 'ibuffer-mode-hook "22.1")
25d2f683 348
e9e96ba0 349(defcustom ibuffer-mode-hook nil
4e4a724c 350 "Hook run upon entry into `ibuffer-mode'."
25d2f683
CW
351 :type 'hook
352 :group 'ibuffer)
353
4e4a724c
JPW
354(defcustom ibuffer-load-hook nil
355 "Hook run when Ibuffer is loaded."
356 :type 'hook
357 :group 'ibuffer)
358
25d2f683
CW
359(defcustom ibuffer-marked-face 'font-lock-warning-face
360 "Face used for displaying marked buffers."
361 :type 'face
362 :group 'ibuffer)
363
364(defcustom ibuffer-deletion-face 'font-lock-type-face
365 "Face used for displaying buffers marked for deletion."
366 :type 'face
367 :group 'ibuffer)
368
369(defcustom ibuffer-title-face 'font-lock-type-face
370 "Face used for the title string."
371 :type 'face
372 :group 'ibuffer)
373
b5cd37ea
CW
374(defcustom ibuffer-filter-group-name-face 'bold
375 "Face used for displaying filtering group names."
376 :type 'face
377 :group 'ibuffer)
378
25d2f683
CW
379(defcustom ibuffer-directory-abbrev-alist nil
380 "An alist of file name abbreviations like `directory-abbrev-alist'."
381 :type '(repeat (cons :format "%v"
382 :value ("" . "")
383 (regexp :tag "From")
384 (regexp :tag "To")))
385 :group 'ibuffer)
386
4e4a724c 387
25d2f683
CW
388(defvar ibuffer-mode-map nil)
389(defvar ibuffer-mode-operate-map nil)
b5e80d1a 390(defvar ibuffer-mode-groups-popup nil)
25d2f683
CW
391(unless ibuffer-mode-map
392 (let ((map (make-sparse-keymap))
b5e80d1a
CW
393 (operate-map (make-sparse-keymap "Operate"))
394 (groups-map (make-sparse-keymap "Filter Groups")))
25d2f683
CW
395 (define-key map (kbd "0") 'digit-argument)
396 (define-key map (kbd "1") 'digit-argument)
397 (define-key map (kbd "2") 'digit-argument)
398 (define-key map (kbd "3") 'digit-argument)
399 (define-key map (kbd "4") 'digit-argument)
400 (define-key map (kbd "5") 'digit-argument)
401 (define-key map (kbd "6") 'digit-argument)
402 (define-key map (kbd "7") 'digit-argument)
403 (define-key map (kbd "8") 'digit-argument)
404 (define-key map (kbd "9") 'digit-argument)
405
406 (define-key map (kbd "m") 'ibuffer-mark-forward)
407 (define-key map (kbd "t") 'ibuffer-toggle-marks)
408 (define-key map (kbd "u") 'ibuffer-unmark-forward)
409 (define-key map (kbd "=") 'ibuffer-diff-with-file)
410 (define-key map (kbd "j") 'ibuffer-jump-to-buffer)
0bdd7ae4 411 (define-key map (kbd "M-g") 'ibuffer-jump-to-buffer)
78176075
JL
412 (define-key map (kbd "M-s a C-s") 'ibuffer-do-isearch)
413 (define-key map (kbd "M-s a M-C-s") 'ibuffer-do-isearch-regexp)
25d2f683
CW
414 (define-key map (kbd "DEL") 'ibuffer-unmark-backward)
415 (define-key map (kbd "M-DEL") 'ibuffer-unmark-all)
416 (define-key map (kbd "* *") 'ibuffer-unmark-all)
417 (define-key map (kbd "* M") 'ibuffer-mark-by-mode)
418 (define-key map (kbd "* m") 'ibuffer-mark-modified-buffers)
419 (define-key map (kbd "* u") 'ibuffer-mark-unsaved-buffers)
420 (define-key map (kbd "* s") 'ibuffer-mark-special-buffers)
421 (define-key map (kbd "* r") 'ibuffer-mark-read-only-buffers)
422 (define-key map (kbd "* /") 'ibuffer-mark-dired-buffers)
423 (define-key map (kbd "* e") 'ibuffer-mark-dissociated-buffers)
424 (define-key map (kbd "* h") 'ibuffer-mark-help-buffers)
9fe14abe 425 (define-key map (kbd "* z") 'ibuffer-mark-compressed-file-buffers)
25d2f683 426 (define-key map (kbd ".") 'ibuffer-mark-old-buffers)
71296446 427
25d2f683
CW
428 (define-key map (kbd "d") 'ibuffer-mark-for-delete)
429 (define-key map (kbd "C-d") 'ibuffer-mark-for-delete-backwards)
430 (define-key map (kbd "k") 'ibuffer-mark-for-delete)
431 (define-key map (kbd "x") 'ibuffer-do-kill-on-deletion-marks)
71296446 432
25d2f683
CW
433 ;; immediate operations
434 (define-key map (kbd "n") 'ibuffer-forward-line)
b5cd37ea 435 (define-key map (kbd "<down>") 'ibuffer-forward-line)
25d2f683
CW
436 (define-key map (kbd "SPC") 'forward-line)
437 (define-key map (kbd "p") 'ibuffer-backward-line)
cba63a2d 438 (define-key map (kbd "<up>") 'ibuffer-backward-line)
25d2f683
CW
439 (define-key map (kbd "M-}") 'ibuffer-forward-next-marked)
440 (define-key map (kbd "M-{") 'ibuffer-backwards-next-marked)
441 (define-key map (kbd "l") 'ibuffer-redisplay)
442 (define-key map (kbd "g") 'ibuffer-update)
443 (define-key map "`" 'ibuffer-switch-format)
444 (define-key map "-" 'ibuffer-add-to-tmp-hide)
445 (define-key map "+" 'ibuffer-add-to-tmp-show)
446 (define-key map "b" 'ibuffer-bury-buffer)
447 (define-key map (kbd ",") 'ibuffer-toggle-sorting-mode)
448 (define-key map (kbd "s i") 'ibuffer-invert-sorting)
449 (define-key map (kbd "s a") 'ibuffer-do-sort-by-alphabetic)
450 (define-key map (kbd "s v") 'ibuffer-do-sort-by-recency)
451 (define-key map (kbd "s s") 'ibuffer-do-sort-by-size)
d5794180 452 (define-key map (kbd "s f") 'ibuffer-do-sort-by-filename/process)
25d2f683
CW
453 (define-key map (kbd "s m") 'ibuffer-do-sort-by-major-mode)
454
455 (define-key map (kbd "/ m") 'ibuffer-filter-by-mode)
5bc06df9 456 (define-key map (kbd "/ M") 'ibuffer-filter-by-used-mode)
25d2f683
CW
457 (define-key map (kbd "/ n") 'ibuffer-filter-by-name)
458 (define-key map (kbd "/ c") 'ibuffer-filter-by-content)
459 (define-key map (kbd "/ e") 'ibuffer-filter-by-predicate)
460 (define-key map (kbd "/ f") 'ibuffer-filter-by-filename)
461 (define-key map (kbd "/ >") 'ibuffer-filter-by-size-gt)
462 (define-key map (kbd "/ <") 'ibuffer-filter-by-size-lt)
463 (define-key map (kbd "/ r") 'ibuffer-switch-to-saved-filters)
464 (define-key map (kbd "/ a") 'ibuffer-add-saved-filters)
465 (define-key map (kbd "/ x") 'ibuffer-delete-saved-filters)
466 (define-key map (kbd "/ d") 'ibuffer-decompose-filter)
467 (define-key map (kbd "/ s") 'ibuffer-save-filters)
468 (define-key map (kbd "/ p") 'ibuffer-pop-filter)
469 (define-key map (kbd "/ !") 'ibuffer-negate-filter)
470 (define-key map (kbd "/ t") 'ibuffer-exchange-filters)
471 (define-key map (kbd "/ TAB") 'ibuffer-exchange-filters)
472 (define-key map (kbd "/ o") 'ibuffer-or-filter)
b5cd37ea
CW
473 (define-key map (kbd "/ g") 'ibuffer-filters-to-filter-group)
474 (define-key map (kbd "/ P") 'ibuffer-pop-filter-group)
2bd26a6f 475 (define-key map (kbd "/ D") 'ibuffer-decompose-filter-group)
25d2f683 476 (define-key map (kbd "/ /") 'ibuffer-filter-disable)
b5cd37ea
CW
477
478 (define-key map (kbd "M-n") 'ibuffer-forward-filter-group)
479 (define-key map (kbd "<right>") 'ibuffer-forward-filter-group)
480 (define-key map (kbd "M-p") 'ibuffer-backward-filter-group)
481 (define-key map (kbd "<left>") 'ibuffer-backward-filter-group)
482 (define-key map (kbd "M-j") 'ibuffer-jump-to-filter-group)
cba63a2d
CW
483 (define-key map (kbd "C-k") 'ibuffer-kill-line)
484 (define-key map (kbd "C-y") 'ibuffer-yank)
485 (define-key map (kbd "/ S") 'ibuffer-save-filter-groups)
486 (define-key map (kbd "/ R") 'ibuffer-switch-to-saved-filter-groups)
487 (define-key map (kbd "/ X") 'ibuffer-delete-saved-filter-groups)
488 (define-key map (kbd "/ \\") 'ibuffer-clear-filter-groups)
71296446 489
25d2f683
CW
490 (define-key map (kbd "q") 'ibuffer-quit)
491 (define-key map (kbd "h") 'describe-mode)
492 (define-key map (kbd "?") 'describe-mode)
493
494 (define-key map (kbd "% n") 'ibuffer-mark-by-name-regexp)
495 (define-key map (kbd "% m") 'ibuffer-mark-by-mode-regexp)
496 (define-key map (kbd "% f") 'ibuffer-mark-by-file-name-regexp)
71296446 497
25d2f683
CW
498 (define-key map (kbd "C-t") 'ibuffer-visit-tags-table)
499
500 (define-key map (kbd "|") 'ibuffer-do-shell-command-pipe)
501 (define-key map (kbd "!") 'ibuffer-do-shell-command-file)
502 (define-key map (kbd "~") 'ibuffer-do-toggle-modified)
503 ;; marked operations
504 (define-key map (kbd "A") 'ibuffer-do-view)
505 (define-key map (kbd "D") 'ibuffer-do-delete)
506 (define-key map (kbd "E") 'ibuffer-do-eval)
507 (define-key map (kbd "F") 'ibuffer-do-shell-command-file)
508 (define-key map (kbd "I") 'ibuffer-do-query-replace-regexp)
509 (define-key map (kbd "H") 'ibuffer-do-view-other-frame)
510 (define-key map (kbd "N") 'ibuffer-do-shell-command-pipe-replace)
511 (define-key map (kbd "M") 'ibuffer-do-toggle-modified)
512 (define-key map (kbd "O") 'ibuffer-do-occur)
513 (define-key map (kbd "P") 'ibuffer-do-print)
514 (define-key map (kbd "Q") 'ibuffer-do-query-replace)
515 (define-key map (kbd "R") 'ibuffer-do-rename-uniquely)
516 (define-key map (kbd "S") 'ibuffer-do-save)
517 (define-key map (kbd "T") 'ibuffer-do-toggle-read-only)
518 (define-key map (kbd "U") 'ibuffer-do-replace-regexp)
519 (define-key map (kbd "V") 'ibuffer-do-revert)
520 (define-key map (kbd "W") 'ibuffer-do-view-and-eval)
521 (define-key map (kbd "X") 'ibuffer-do-shell-command-pipe)
71296446 522
25d2f683
CW
523 (define-key map (kbd "k") 'ibuffer-do-kill-lines)
524 (define-key map (kbd "w") 'ibuffer-copy-filename-as-kill)
525
526 (define-key map (kbd "RET") 'ibuffer-visit-buffer)
527 (define-key map (kbd "e") 'ibuffer-visit-buffer)
528 (define-key map (kbd "f") 'ibuffer-visit-buffer)
529 (define-key map (kbd "C-x C-f") 'ibuffer-find-file)
530 (define-key map (kbd "o") 'ibuffer-visit-buffer-other-window)
531 (define-key map (kbd "C-o") 'ibuffer-visit-buffer-other-window-noselect)
532 (define-key map (kbd "M-o") 'ibuffer-visit-buffer-1-window)
533 (define-key map (kbd "v") 'ibuffer-do-view)
534 (define-key map (kbd "C-x v") 'ibuffer-do-view-horizontally)
535 (define-key map (kbd "C-c C-a") 'ibuffer-auto-mode)
536 (define-key map (kbd "C-x 4 RET") 'ibuffer-visit-buffer-other-window)
537 (define-key map (kbd "C-x 5 RET") 'ibuffer-visit-buffer-other-frame)
538
539 (define-key map [menu-bar view]
540 (cons "View" (make-sparse-keymap "View")))
541
542 (define-key-after map [menu-bar view visit-buffer]
543 '(menu-item "View this buffer" ibuffer-visit-buffer))
544 (define-key-after map [menu-bar view visit-buffer-other-window]
545 '(menu-item "View (other window)" ibuffer-visit-buffer-other-window))
546 (define-key-after map [menu-bar view visit-buffer-other-frame]
547 '(menu-item "View (other frame)" ibuffer-visit-buffer-other-frame))
548 (define-key-after map [menu-bar view ibuffer-update]
549 '(menu-item "Update" ibuffer-update
550 :help "Regenerate the list of buffers"))
551 (define-key-after map [menu-bar view switch-format]
552 '(menu-item "Switch display format" ibuffer-switch-format
553 :help "Toggle between available values of `ibuffer-formats'"))
554
555 (define-key-after map [menu-bar view dashes]
556 '("--"))
557
558 (define-key-after map [menu-bar view sort]
559 (cons "Sort" (make-sparse-keymap "Sort")))
560
561 (define-key-after map [menu-bar view sort do-sort-by-major-mode]
cba63a2d 562 '(menu-item "Sort by major mode" ibuffer-do-sort-by-major-mode))
25d2f683 563 (define-key-after map [menu-bar view sort do-sort-by-size]
cba63a2d 564 '(menu-item "Sort by buffer size" ibuffer-do-sort-by-size))
25d2f683
CW
565 (define-key-after map [menu-bar view sort do-sort-by-alphabetic]
566 '(menu-item "Sort lexicographically" ibuffer-do-sort-by-alphabetic
567 :help "Sort by the alphabetic order of buffer name"))
568 (define-key-after map [menu-bar view sort do-sort-by-recency]
569 '(menu-item "Sort by view time" ibuffer-do-sort-by-recency
570 :help "Sort by the last time the buffer was displayed"))
4e4a724c
JPW
571 (define-key-after map [menu-bar view sort dashes]
572 '("--"))
25d2f683
CW
573 (define-key-after map [menu-bar view sort invert-sorting]
574 '(menu-item "Reverse sorting order" ibuffer-invert-sorting))
575 (define-key-after map [menu-bar view sort toggle-sorting-mode]
576 '(menu-item "Switch sorting mode" ibuffer-toggle-sorting-mode
577 :help "Switch between the various sorting criteria"))
578
579 (define-key-after map [menu-bar view filter]
580 (cons "Filter" (make-sparse-keymap "Filter")))
581
582 (define-key-after map [menu-bar view filter filter-disable]
05cc03af
CW
583 '(menu-item "Disable all filtering" ibuffer-filter-disable
584 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)))
25d2f683 585 (define-key-after map [menu-bar view filter filter-by-mode]
cba63a2d 586 '(menu-item "Add filter by major mode..." ibuffer-filter-by-mode))
5bc06df9
CW
587 (define-key-after map [menu-bar view filter filter-by-mode]
588 '(menu-item "Add filter by major mode in use..." ibuffer-filter-by-used-mode))
25d2f683 589 (define-key-after map [menu-bar view filter filter-by-name]
cba63a2d 590 '(menu-item "Add filter by buffer name..." ibuffer-filter-by-name))
25d2f683 591 (define-key-after map [menu-bar view filter filter-by-filename]
cba63a2d 592 '(menu-item "Add filter by filename..." ibuffer-filter-by-filename))
25d2f683 593 (define-key-after map [menu-bar view filter filter-by-size-lt]
cba63a2d 594 '(menu-item "Add filter by size less than..." ibuffer-filter-by-size-lt))
25d2f683 595 (define-key-after map [menu-bar view filter filter-by-size-gt]
cba63a2d 596 '(menu-item "Add filter by size greater than..." ibuffer-filter-by-size-gt))
25d2f683 597 (define-key-after map [menu-bar view filter filter-by-content]
cba63a2d 598 '(menu-item "Add filter by content (regexp)..." ibuffer-filter-by-content))
25d2f683 599 (define-key-after map [menu-bar view filter filter-by-predicate]
cba63a2d 600 '(menu-item "Add filter by Lisp predicate..." ibuffer-filter-by-predicate))
25d2f683 601 (define-key-after map [menu-bar view filter pop-filter]
05cc03af
CW
602 '(menu-item "Remove top filter" ibuffer-pop-filter
603 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)))
25d2f683
CW
604 (define-key-after map [menu-bar view filter or-filter]
605 '(menu-item "OR top two filters" ibuffer-or-filter
717339e5
CW
606 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers
607 (cdr ibuffer-filtering-qualifiers))
25d2f683
CW
608 :help "Create a new filter which is the logical OR of the top two filters"))
609 (define-key-after map [menu-bar view filter negate-filter]
05cc03af
CW
610 '(menu-item "Negate top filter" ibuffer-negate-filter
611 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)))
25d2f683
CW
612 (define-key-after map [menu-bar view filter decompose-filter]
613 '(menu-item "Decompose top filter" ibuffer-decompose-filter
717339e5 614 :enable (and (featurep 'ibuf-ext) (memq (car ibuffer-filtering-qualifiers) '(or saved not)))
25d2f683
CW
615 :help "Break down a complex filter like OR or NOT"))
616 (define-key-after map [menu-bar view filter exchange-filters]
05cc03af 617 '(menu-item "Swap top two filters" ibuffer-exchange-filters
717339e5
CW
618 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers
619 (cdr ibuffer-filtering-qualifiers))))
25d2f683
CW
620 (define-key-after map [menu-bar view filter save-filters]
621 '(menu-item "Save current filters permanently..." ibuffer-save-filters
4e4a724c 622 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)
25d2f683
CW
623 :help "Use a mnemnonic name to store current filter stack"))
624 (define-key-after map [menu-bar view filter switch-to-saved-filters]
625 '(menu-item "Restore permanently saved filters..." ibuffer-switch-to-saved-filters
05cc03af 626 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filters)
25d2f683
CW
627 :help "Replace current filters with a saved stack"))
628 (define-key-after map [menu-bar view filter add-saved-filters]
629 '(menu-item "Add to permanently saved filters..." ibuffer-add-saved-filters
05cc03af 630 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)
cba63a2d 631 :help "Include already saved stack with current filters"))
25d2f683 632 (define-key-after map [menu-bar view filter delete-saved-filters]
cba63a2d 633 '(menu-item "Delete permanently saved filters..."
05cc03af
CW
634 ibuffer-delete-saved-filters
635 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filters)))
cba63a2d 636
b5e80d1a 637 ;; Filter groups
cba63a2d 638
b5e80d1a 639 (define-key-after groups-map [filters-to-filter-group]
cba63a2d 640 '(menu-item "Create filter group from current filters..."
2bd26a6f
CW
641 ibuffer-filters-to-filter-group
642 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers)))
b5e80d1a 643 (define-key-after groups-map [forward-filter-group]
cba63a2d 644 '(menu-item "Move point to the next filter group"
4e4a724c 645 ibuffer-forward-filter-group))
b5e80d1a 646 (define-key-after groups-map [backward-filter-group]
cba63a2d
CW
647 '(menu-item "Move point to the previous filter group"
648 ibuffer-backward-filter-group))
b5e80d1a 649 (define-key-after groups-map [jump-to-filter-group]
cba63a2d
CW
650 '(menu-item "Move point to a specific filter group..."
651 ibuffer-jump-to-filter-group))
b5e80d1a
CW
652 (define-key-after groups-map [kill-filter-group]
653 '(menu-item "Kill filter group named..."
654 ibuffer-kill-filter-group
655 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups)))
656 (define-key-after groups-map [yank-filter-group]
657 '(menu-item "Yank last killed filter group before..."
658 ibuffer-yank-filter-group
659 :enable (and (featurep 'ibuf-ext) ibuffer-filter-group-kill-ring)))
660 (define-key-after groups-map [pop-filter-group]
b5cd37ea 661 '(menu-item "Remove top filter group"
b5e80d1a 662 ibuffer-pop-filter-group
2bd26a6f 663 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups)))
b5e80d1a 664 (define-key-after groups-map [clear-filter-groups]
cba63a2d 665 '(menu-item "Remove all filter groups"
b5e80d1a 666 ibuffer-clear-filter-groups
2bd26a6f
CW
667 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups)))
668 (define-key-after groups-map [pop-filter-group]
669 '(menu-item "Decompose filter group..."
670 ibuffer-pop-filter-group
671 :help "\"Unmake\" a filter group"
672 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups)))
b5e80d1a 673 (define-key-after groups-map [save-filter-groups]
cba63a2d
CW
674 '(menu-item "Save current filter groups permanently..."
675 ibuffer-save-filter-groups
05cc03af 676 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups)
cba63a2d 677 :help "Use a mnemnonic name to store current filter groups"))
b5e80d1a 678 (define-key-after groups-map [switch-to-saved-filter-groups]
cba63a2d
CW
679 '(menu-item "Restore permanently saved filters..."
680 ibuffer-switch-to-saved-filter-groups
05cc03af 681 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filter-groups)
4e4a724c 682 :help "Replace current filters with a saved stack"))
b5e80d1a 683 (define-key-after groups-map [delete-saved-filter-groups]
cba63a2d 684 '(menu-item "Delete permanently saved filter groups..."
05cc03af
CW
685 ibuffer-delete-saved-filter-groups
686 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filter-groups)))
b5e80d1a 687 (define-key-after groups-map [set-filter-groups-by-mode]
cba63a2d
CW
688 '(menu-item "Set current filter groups to filter by mode"
689 ibuffer-set-filter-groups-by-mode))
690
b5e80d1a
CW
691 (define-key-after map [menu-bar view filter-groups]
692 (cons "Filter Groups" groups-map))
693
25d2f683
CW
694 (define-key-after map [menu-bar view dashes2]
695 '("--"))
696 (define-key-after map [menu-bar view diff-with-file]
697 '(menu-item "Diff with file" ibuffer-diff-with-file
698 :help "View the differences between this buffer and its file"))
699 (define-key-after map [menu-bar view auto-mode]
700 '(menu-item "Toggle Auto Mode" ibuffer-auto-mode
701 :help "Attempt to automatically update the Ibuffer buffer"))
702 (define-key-after map [menu-bar view customize]
4e4a724c 703 '(menu-item "Customize Ibuffer" ibuffer-customize
25d2f683
CW
704 :help "Use Custom to customize Ibuffer"))
705
706 (define-key-after map [menu-bar mark]
707 (cons "Mark" (make-sparse-keymap "Mark")))
708
709 (define-key-after map [menu-bar mark toggle-marks]
710 '(menu-item "Toggle marks" ibuffer-toggle-marks
711 :help "Unmark marked buffers, and mark unmarked buffers"))
712 (define-key-after map [menu-bar mark mark-forward]
713 '(menu-item "Mark" ibuffer-mark-forward
714 :help "Mark the buffer at point"))
715 (define-key-after map [menu-bar mark unmark-forward]
716 '(menu-item "Unmark" ibuffer-unmark-forward
717 :help "Unmark the buffer at point"))
718 (define-key-after map [menu-bar mark mark-by-mode]
719 '(menu-item "Mark by mode..." ibuffer-mark-by-mode
720 :help "Mark all buffers in a particular major mode"))
721 (define-key-after map [menu-bar mark mark-modified-buffers]
722 '(menu-item "Mark modified buffers" ibuffer-mark-modified-buffers
723 :help "Mark all buffers which have been modified"))
724 (define-key-after map [menu-bar mark mark-unsaved-buffers]
725 '(menu-item "Mark unsaved buffers" ibuffer-mark-unsaved-buffers
726 :help "Mark all buffers which have a file and are modified"))
727 (define-key-after map [menu-bar mark mark-read-only-buffers]
728 '(menu-item "Mark read-only buffers" ibuffer-mark-read-only-buffers
729 :help "Mark all buffers which are read-only"))
730 (define-key-after map [menu-bar mark mark-special-buffers]
731 '(menu-item "Mark special buffers" ibuffer-mark-special-buffers
732 :help "Mark all buffers whose name begins with a *"))
733 (define-key-after map [menu-bar mark mark-dired-buffers]
734 '(menu-item "Mark dired buffers" ibuffer-mark-dired-buffers
735 :help "Mark buffers in dired-mode"))
736 (define-key-after map [menu-bar mark mark-dissociated-buffers]
737 '(menu-item "Mark dissociated buffers" ibuffer-mark-dissociated-buffers
738 :help "Mark buffers with a non-existent associated file"))
739 (define-key-after map [menu-bar mark mark-help-buffers]
740 '(menu-item "Mark help buffers" ibuffer-mark-help-buffers
741 :help "Mark buffers in help-mode"))
9fe14abe
JPW
742 (define-key-after map [menu-bar mark mark-compressed-file-buffers]
743 '(menu-item "Mark compressed file buffers" ibuffer-mark-compressed-file-buffers
744 :help "Mark buffers which have a file that is compressed"))
25d2f683
CW
745 (define-key-after map [menu-bar mark mark-old-buffers]
746 '(menu-item "Mark old buffers" ibuffer-mark-old-buffers
747 :help "Mark buffers which have not been viewed recently"))
748 (define-key-after map [menu-bar mark unmark-all]
749 '(menu-item "Unmark All" ibuffer-unmark-all))
71296446 750
25d2f683
CW
751 (define-key-after map [menu-bar mark dashes]
752 '("--"))
71296446 753
25d2f683
CW
754 (define-key-after map [menu-bar mark mark-by-name-regexp]
755 '(menu-item "Mark by buffer name (regexp)..." ibuffer-mark-by-name-regexp
756 :help "Mark buffers whose name matches a regexp"))
757 (define-key-after map [menu-bar mark mark-by-mode-regexp]
758 '(menu-item "Mark by major mode (regexp)..." ibuffer-mark-by-mode-regexp
759 :help "Mark buffers whose major mode name matches a regexp"))
760 (define-key-after map [menu-bar mark mark-by-file-name-regexp]
761 '(menu-item "Mark by file name (regexp)..." ibuffer-mark-by-file-name-regexp
762 :help "Mark buffers whose file name matches a regexp"))
763
764 ;; Operate map is added later
765
766 (define-key-after operate-map [do-view]
767 '(menu-item "View" ibuffer-do-view))
768 (define-key-after operate-map [do-view-other-frame]
769 '(menu-item "View (separate frame)" ibuffer-do-view-other-frame))
770 (define-key-after operate-map [do-save]
771 '(menu-item "Save" ibuffer-do-save))
772 (define-key-after operate-map [do-replace-regexp]
773 '(menu-item "Replace (regexp)..." ibuffer-do-replace-regexp
774 :help "Replace text inside marked buffers"))
775 (define-key-after operate-map [do-query-replace]
776 '(menu-item "Query Replace..." ibuffer-do-query-replace
777 :help "Replace text in marked buffers, asking each time"))
778 (define-key-after operate-map [do-query-replace-regexp]
779 '(menu-item "Query Replace (regexp)..." ibuffer-do-query-replace-regexp
780 :help "Replace text in marked buffers by regexp, asking each time"))
781 (define-key-after operate-map [do-print]
782 '(menu-item "Print" ibuffer-do-print))
783 (define-key-after operate-map [do-toggle-modified]
784 '(menu-item "Toggle modification flag" ibuffer-do-toggle-modified))
785 (define-key-after operate-map [do-revert]
786 '(menu-item "Revert" ibuffer-do-revert
787 :help "Revert marked buffers to their associated file"))
788 (define-key-after operate-map [do-rename-uniquely]
789 '(menu-item "Rename Uniquely" ibuffer-do-rename-uniquely
790 :help "Rename marked buffers to a new, unique name"))
791 (define-key-after operate-map [do-delete]
792 '(menu-item "Kill" ibuffer-do-delete))
793 (define-key-after operate-map [do-occur]
794 '(menu-item "List lines matching..." ibuffer-do-occur
795 :help "View all lines in marked buffers matching a regexp"))
796 (define-key-after operate-map [do-shell-command-pipe]
797 '(menu-item "Pipe to shell command..." ibuffer-do-shell-command-pipe
798 :help "For each marked buffer, send its contents to a shell command"))
799 (define-key-after operate-map [do-shell-command-pipe-replace]
800 '(menu-item "Pipe to shell command (replace)..." ibuffer-do-shell-command-pipe-replace
801 :help "For each marked buffer, replace its contents with output of shell command"))
802 (define-key-after operate-map [do-shell-command-file]
803 '(menu-item "Shell command on buffer's file..." ibuffer-do-shell-command-file
804 :help "For each marked buffer, run a shell command with its file as argument"))
805 (define-key-after operate-map [do-eval]
806 '(menu-item "Eval..." ibuffer-do-eval
807 :help "Evaluate a Lisp form in each marked buffer"))
808 (define-key-after operate-map [do-view-and-eval]
809 '(menu-item "Eval (viewing buffer)..." ibuffer-do-view-and-eval
810 :help "Evaluate a Lisp form in each marked buffer while viewing it"))
71296446 811
25d2f683 812 (setq ibuffer-mode-map map
b5e80d1a 813 ibuffer-mode-operate-map operate-map
2bd26a6f
CW
814 ibuffer-mode-groups-popup (copy-keymap groups-map))))
815
816(define-key ibuffer-mode-groups-popup [kill-filter-group]
4e4a724c
JPW
817 '(menu-item "Kill filter group"
818 ibuffer-kill-line
34a4faa0
JPW
819 :enable (and (featurep 'ibuf-ext)
820 ibuffer-filter-groups)))
545aad2f 821(define-key ibuffer-mode-groups-popup [yank-filter-group]
4e4a724c
JPW
822 '(menu-item "Yank last killed filter group"
823 ibuffer-yank
34a4faa0
JPW
824 :enable (and (featurep 'ibuf-ext)
825 ibuffer-filter-group-kill-ring)))
4e4a724c 826
acf88897 827(defvar ibuffer-name-map
25d2f683 828 (let ((map (make-sparse-keymap)))
25d2f683
CW
829 (define-key map [(mouse-1)] 'ibuffer-mouse-toggle-mark)
830 (define-key map [(mouse-2)] 'ibuffer-mouse-visit-buffer)
831 (define-key map [down-mouse-3] 'ibuffer-mouse-popup-menu)
acf88897 832 map))
25d2f683 833
d5794180
DN
834(defvar ibuffer-filename/process-header-map
835 (let ((map (make-sparse-keymap)))
836 (define-key map [(mouse-1)] 'ibuffer-do-sort-by-filename/process)
837 map))
838
acf88897 839(defvar ibuffer-mode-name-map
25d2f683 840 (let ((map (make-sparse-keymap)))
25d2f683
CW
841 (define-key map [(mouse-2)] 'ibuffer-mouse-filter-by-mode)
842 (define-key map (kbd "RET") 'ibuffer-interactive-filter-by-mode)
acf88897 843 map))
25d2f683 844
f0b31589
DN
845(defvar ibuffer-name-header-map
846 (let ((map (make-sparse-keymap)))
847 (define-key map [(mouse-1)] 'ibuffer-do-sort-by-alphabetic)
848 map))
849
850(defvar ibuffer-size-header-map
851 (let ((map (make-sparse-keymap)))
852 (define-key map [(mouse-1)] 'ibuffer-do-sort-by-size)
853 map))
854
855(defvar ibuffer-mode-header-map
856 (let ((map (make-sparse-keymap)))
857 (define-key map [(mouse-1)] 'ibuffer-do-sort-by-major-mode)
858 map))
859
acf88897 860(defvar ibuffer-mode-filter-group-map
b5cd37ea 861 (let ((map (make-sparse-keymap)))
b5cd37ea
CW
862 (define-key map [(mouse-1)] 'ibuffer-mouse-toggle-mark)
863 (define-key map [(mouse-2)] 'ibuffer-mouse-toggle-filter-group)
864 (define-key map (kbd "RET") 'ibuffer-toggle-filter-group)
b5e80d1a 865 (define-key map [down-mouse-3] 'ibuffer-mouse-popup-menu)
acf88897 866 map))
b5cd37ea 867
4ed1f829
JPW
868(defvar ibuffer-restore-window-config-on-quit nil
869 "If non-nil, restore previous window configuration upon exiting `ibuffer'.")
870
871(defvar ibuffer-prev-window-config nil
872 "Window configuration before starting Ibuffer.")
25d2f683
CW
873
874(defvar ibuffer-did-modification nil)
875
63f0a166
JB
876(defvar ibuffer-compiled-formats nil)
877(defvar ibuffer-cached-formats nil)
878(defvar ibuffer-cached-eliding-string nil)
879(defvar ibuffer-cached-elide-long-columns 0)
880
25d2f683
CW
881(defvar ibuffer-sorting-functions-alist nil
882 "An alist of functions which describe how to sort buffers.
883
884Note: You most likely do not want to modify this variable directly;
885use `define-ibuffer-sorter' instead.
886
887The alist elements are constructed like (NAME DESCRIPTION FUNCTION)
888Where NAME is a symbol describing the sorting method, DESCRIPTION is a
889short string which will be displayed in the minibuffer and menu, and
890FUNCTION is a function of two arguments, which will be the buffers to
891compare.")
892
893;;; Utility functions
894(defun ibuffer-columnize-and-insert-list (list &optional pad-width)
895 "Insert LIST into the current buffer in as many columns as possible.
896The maximum number of columns is determined by the current window
897width and the longest string in LIST."
898 (unless pad-width
899 (setq pad-width 3))
900 (let ((width (window-width))
901 (max (+ (apply #'max (mapcar #'length list))
902 pad-width)))
903 (let ((columns (/ width max)))
904 (when (zerop columns)
905 (setq columns 1))
906 (while list
907 (dotimes (i (1- columns))
908 (insert (concat (car list) (make-string (- max (length (car list)))
972b8f82 909 ?\s)))
25d2f683
CW
910 (setq list (cdr list)))
911 (when (not (null list))
912 (insert (pop list)))
913 (insert "\n")))))
914
25d2f683
CW
915(defsubst ibuffer-current-mark ()
916 (cadr (get-text-property (line-beginning-position)
917 'ibuffer-properties)))
918
919(defun ibuffer-mouse-toggle-mark (event)
920 "Toggle the marked status of the buffer chosen with the mouse."
921 (interactive "e")
922 (unwind-protect
b5cd37ea
CW
923 (let ((pt (save-excursion
924 (mouse-set-point event)
925 (point))))
926 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name)
927 (ibuffer-toggle-marks it)
928 (goto-char pt)
929 (let ((mark (ibuffer-current-mark)))
930 (setq buffer-read-only nil)
931 (if (eq mark ibuffer-marked-char)
972b8f82 932 (ibuffer-set-mark ?\s)
b5cd37ea 933 (ibuffer-set-mark ibuffer-marked-char)))))
25d2f683
CW
934 (setq buffer-read-only t)))
935
936(defun ibuffer-find-file (file &optional wildcards)
937 "Like `find-file', but default to the directory of the buffer at point."
938 (interactive
939 (let ((default-directory (let ((buf (ibuffer-current-buffer)))
940 (if (buffer-live-p buf)
941 (with-current-buffer buf
942 default-directory)
943 default-directory))))
944 (list (read-file-name "Find file: " default-directory)
fe78af29
JPW
945 t)))
946 (find-file file wildcards))
25d2f683
CW
947
948(defun ibuffer-mouse-visit-buffer (event)
949 "Visit the buffer chosen with the mouse."
950 (interactive "e")
951 (switch-to-buffer
952 (save-excursion
953 (mouse-set-point event)
b5cd37ea 954 (ibuffer-current-buffer t))))
25d2f683
CW
955
956(defun ibuffer-mouse-popup-menu (event)
957 "Display a menu of operations."
958 (interactive "e")
a1793b2d
JPW
959 (let ((eventpt (posn-point (event-end event)))
960 (origpt (point)))
25d2f683 961 (unwind-protect
51922c04 962 (if (get-text-property eventpt 'ibuffer-filter-group-name)
a1793b2d
JPW
963 (progn
964 (goto-char eventpt)
965 (popup-menu ibuffer-mode-groups-popup))
51922c04 966 (let ((inhibit-read-only t))
b5e80d1a 967 (ibuffer-save-marks
4e4a724c
JPW
968 ;; hm. we could probably do this in a better fashion
969 (ibuffer-unmark-all ?\r)
970 (save-excursion
971 (goto-char eventpt)
972 (ibuffer-set-mark ibuffer-marked-char))
973 (save-excursion
974 (popup-menu ibuffer-mode-operate-map)))))
a1793b2d 975 (setq buffer-read-only t)
4ba16127 976 (if (= eventpt (point))
a1793b2d 977 (goto-char origpt)))))
51922c04 978
b5cd37ea
CW
979(defun ibuffer-skip-properties (props direction)
980 (while (and (not (eobp))
981 (let ((hit nil))
982 (dolist (prop props hit)
983 (when (get-text-property (point) prop)
984 (setq hit t)))))
985 (forward-line direction)
986 (beginning-of-line)))
25d2f683 987
4e4a724c
JPW
988(defun ibuffer-customize ()
989 "Begin customizing Ibuffer interactively."
990 (interactive)
991 (customize-group 'ibuffer))
992
b5cd37ea 993(defun ibuffer-backward-line (&optional arg skip-group-names)
25d2f683
CW
994 "Move backwards ARG lines, wrapping around the list if necessary."
995 (interactive "P")
34a4faa0 996 (or arg (setq arg 1))
25d2f683
CW
997 (beginning-of-line)
998 (while (> arg 0)
999 (forward-line -1)
0ce780e1
CW
1000 (when (and ibuffer-movement-cycle
1001 (or (get-text-property (point) 'ibuffer-title)
1002 (and skip-group-names
34a4faa0
JPW
1003 (get-text-property (point)
1004 'ibuffer-filter-group-name))))
25d2f683 1005 (goto-char (point-max))
60356fb5 1006 (beginning-of-line))
b5cd37ea
CW
1007 (ibuffer-skip-properties (append '(ibuffer-summary)
1008 (when skip-group-names
1009 '(ibuffer-filter-group-name)))
1010 -1)
60356fb5
CW
1011 ;; Handle the special case of no buffers.
1012 (when (get-text-property (point) 'ibuffer-title)
1013 (forward-line 1)
1014 (setq arg 1))
1015 (decf arg)))
25d2f683 1016
b5cd37ea 1017(defun ibuffer-forward-line (&optional arg skip-group-names)
25d2f683
CW
1018 "Move forward ARG lines, wrapping around the list if necessary."
1019 (interactive "P")
34a4faa0 1020 (or arg (setq arg 1))
25d2f683 1021 (beginning-of-line)
0ce780e1
CW
1022 (when (and ibuffer-movement-cycle
1023 (or (eobp)
1024 (get-text-property (point) 'ibuffer-summary)))
214b39be 1025 (goto-char (point-min)))
b5cd37ea
CW
1026 (when (or (get-text-property (point) 'ibuffer-title)
1027 (and skip-group-names
1028 (get-text-property (point) 'ibuffer-filter-group-name)))
1029 (when (> arg 0)
1030 (decf arg))
1031 (ibuffer-skip-properties (append '(ibuffer-title)
1032 (when skip-group-names
1033 '(ibuffer-filter-group-name)))
1034 1))
25d2f683
CW
1035 (if (< arg 0)
1036 (ibuffer-backward-line (- arg))
60356fb5
CW
1037 (while (> arg 0)
1038 (forward-line 1)
0ce780e1
CW
1039 (when (and ibuffer-movement-cycle
1040 (or (eobp)
1041 (get-text-property (point) 'ibuffer-summary)))
60356fb5 1042 (goto-char (point-min)))
b5cd37ea
CW
1043 (decf arg)
1044 (ibuffer-skip-properties (append '(ibuffer-title)
1045 (when skip-group-names
1046 '(ibuffer-filter-group-name)))
1047 1))))
25d2f683 1048
d246cabf
CW
1049(defun ibuffer-visit-buffer (&optional single)
1050 "Visit the buffer on this line.
d246cabf
CW
1051If optional argument SINGLE is non-nil, then also ensure there is only
1052one window."
1053 (interactive "P")
b5cd37ea 1054 (let ((buf (ibuffer-current-buffer t)))
25d2f683 1055 (bury-buffer (current-buffer))
d246cabf
CW
1056 (switch-to-buffer buf)
1057 (when single
1058 (delete-other-windows))))
25d2f683
CW
1059
1060(defun ibuffer-visit-buffer-other-window (&optional noselect)
1061 "Visit the buffer on this line in another window."
1062 (interactive)
b5cd37ea 1063 (let ((buf (ibuffer-current-buffer t)))
25d2f683
CW
1064 (bury-buffer (current-buffer))
1065 (if noselect
1066 (let ((curwin (selected-window)))
1067 (pop-to-buffer buf)
1068 (select-window curwin))
1069 (switch-to-buffer-other-window buf))))
1070
1071(defun ibuffer-visit-buffer-other-window-noselect ()
1072 "Visit the buffer on this line in another window, but don't select it."
1073 (interactive)
1074 (ibuffer-visit-buffer-other-window t))
1075
1076(defun ibuffer-visit-buffer-other-frame ()
1077 "Visit the buffer on this line in another frame."
1078 (interactive)
b5cd37ea 1079 (let ((buf (ibuffer-current-buffer t)))
25d2f683
CW
1080 (bury-buffer (current-buffer))
1081 (switch-to-buffer-other-frame buf)))
1082
1083(defun ibuffer-visit-buffer-1-window ()
1084 "Visit the buffer on this line, and delete other windows."
1085 (interactive)
d246cabf 1086 (ibuffer-visit-buffer t))
25d2f683
CW
1087
1088(defun ibuffer-bury-buffer ()
1089 "Bury the buffer on this line."
1090 (interactive)
b5cd37ea 1091 (let ((buf (ibuffer-current-buffer t))
25d2f683 1092 (line (+ 1 (count-lines 1 (point)))))
25d2f683
CW
1093 (bury-buffer buf)
1094 (ibuffer-update nil t)
e6ce8c42
GM
1095 (goto-char (point-min))
1096 (forward-line (1- line))))
25d2f683
CW
1097
1098(defun ibuffer-visit-tags-table ()
1099 "Visit the tags table in the buffer on this line. See `visit-tags-table'."
1100 (interactive)
b5cd37ea 1101 (let ((file (buffer-file-name (ibuffer-current-buffer t))))
25d2f683
CW
1102 (if file
1103 (visit-tags-table file)
1104 (error "Specified buffer has no file"))))
1105
1106(defun ibuffer-do-view (&optional other-frame)
1107 "View marked buffers, or the buffer on the current line.
1108If optional argument OTHER-FRAME is non-nil, then display each
1109marked buffer in a new frame. Otherwise, display each buffer as
1110a new window in the current frame, splitting vertically."
1111 (interactive)
1112 (ibuffer-do-view-1 (if other-frame 'other-frame 'vertically)))
1113
1114(defun ibuffer-do-view-horizontally (&optional other-frame)
1115 "As `ibuffer-do-view', but split windows horizontally."
1116 (interactive)
1117 (ibuffer-do-view-1 (if other-frame 'other-frame 'horizontally)))
1118
1119(defun ibuffer-do-view-1 (type)
1120 (let ((marked-bufs (ibuffer-get-marked-buffers)))
1121 (when (null marked-bufs)
b5cd37ea 1122 (setq marked-bufs (list (ibuffer-current-buffer t))))
25d2f683
CW
1123 (unless (and (eq type 'other-frame)
1124 (not ibuffer-expert)
1125 (> (length marked-bufs) 3)
1126 (not (y-or-n-p (format "Really create a new frame for %s buffers? "
1127 (length marked-bufs)))))
4e4a724c 1128 (set-buffer-modified-p nil)
25d2f683
CW
1129 (delete-other-windows)
1130 (switch-to-buffer (pop marked-bufs))
1131 (let ((height (/ (1- (if (eq type 'horizontally) (frame-width)
4e4a724c 1132 (frame-height)))
25d2f683
CW
1133 (1+ (length marked-bufs)))))
1134 (mapcar (if (eq type 'other-frame)
1135 #'(lambda (buf)
1136 (let ((curframe (selected-frame)))
acf88897 1137 (select-frame (make-frame))
25d2f683
CW
1138 (switch-to-buffer buf)
1139 (select-frame curframe)))
1140 #'(lambda (buf)
1141 (split-window nil height (eq type 'horizontally))
1142 (other-window 1)
1143 (switch-to-buffer buf)))
1144 marked-bufs)))))
1145
1146(defun ibuffer-do-view-other-frame ()
1147 "View each of the marked buffers in a separate frame."
1148 (interactive)
1149 (ibuffer-do-view t))
1150
1151(defsubst ibuffer-map-marked-lines (func)
1152 (prog1 (ibuffer-map-on-mark ibuffer-marked-char func)
1153 (ibuffer-redisplay t)))
1154
1155(defun ibuffer-shrink-to-fit (&optional owin)
54124194
MO
1156 ;; Make sure that redisplay is performed, otherwise there can be a
1157 ;; bad interaction with code in the window-scroll-functions hook
1158 (redisplay t)
25d2f683
CW
1159 (fit-window-to-buffer nil (when owin (/ (frame-height)
1160 (length (window-list (selected-frame)))))))
1161
1162(defun ibuffer-confirm-operation-on (operation names)
1163 "Display a buffer asking whether to perform OPERATION on NAMES."
1164 (or ibuffer-expert
1165 (if (= (length names) 1)
1166 (y-or-n-p (format "Really %s buffer %s? " operation (car names)))
1167 (let ((buf (get-buffer-create "*Ibuffer confirmation*")))
1168 (with-current-buffer buf
1169 (setq buffer-read-only nil)
1170 (erase-buffer)
1171 (ibuffer-columnize-and-insert-list names)
1172 (goto-char (point-min))
1173 (setq buffer-read-only t))
4e4a724c 1174 (let ((lastwin (car (last (window-list nil 'nomini)))))
25d2f683
CW
1175 ;; Now attempt to display the buffer...
1176 (save-window-excursion
1177 (select-window lastwin)
1178 ;; The window might be too small to split; in that case,
7ad5b902 1179 ;; try a few times to increase its size before giving up.
25d2f683
CW
1180 (let ((attempts 0)
1181 (trying t))
1182 (while trying
1183 (condition-case err
1184 (progn
1185 (split-window)
1186 (setq trying nil))
1187 (error
1188 ;; Handle a failure
1189 (if (or (> (incf attempts) 4)
1190 (and (stringp (cadr err))
71296446 1191 ;; This definitely falls in the
4e4a724c 1192 ;; ghetto hack category...
25d2f683 1193 (not (string-match "too small" (cadr err)))))
8131c345 1194 (signal (car err) (cdr err))
25d2f683 1195 (enlarge-window 3))))))
25d2f683
CW
1196 (select-window (next-window))
1197 (switch-to-buffer buf)
1198 (unwind-protect
1199 (progn
1200 (fit-window-to-buffer)
1201 (y-or-n-p (format "Really %s %d buffers? "
1202 operation (length names))))
1203 (kill-buffer buf))))))))
1204
1205(defsubst ibuffer-map-lines-nomodify (function)
1206 "As `ibuffer-map-lines', but don't set the modification flag."
1207 (ibuffer-map-lines function t))
1208
1209(defun ibuffer-buffer-names-with-mark (mark)
1210 (let ((ibuffer-buffer-names-with-mark-result nil))
1211 (ibuffer-map-lines-nomodify
4e4a724c 1212 #'(lambda (buf mk)
25d2f683
CW
1213 (when (char-equal mark mk)
1214 (push (buffer-name buf)
1215 ibuffer-buffer-names-with-mark-result))))
1216 ibuffer-buffer-names-with-mark-result))
1217
1218(defsubst ibuffer-marked-buffer-names ()
1219 (ibuffer-buffer-names-with-mark ibuffer-marked-char))
1220
1221(defsubst ibuffer-deletion-marked-buffer-names ()
1222 (ibuffer-buffer-names-with-mark ibuffer-deletion-char))
1223
1224(defun ibuffer-count-marked-lines (&optional all)
1225 (if all
1226 (ibuffer-map-lines-nomodify
57c9cc3e 1227 #'(lambda (buf mark)
972b8f82 1228 (not (char-equal mark ?\s))))
25d2f683 1229 (ibuffer-map-lines-nomodify
57c9cc3e 1230 #'(lambda (buf mark)
25d2f683
CW
1231 (char-equal mark ibuffer-marked-char)))))
1232
1233(defsubst ibuffer-count-deletion-lines ()
1234 (ibuffer-map-lines-nomodify
57c9cc3e 1235 #'(lambda (buf mark)
25d2f683
CW
1236 (char-equal mark ibuffer-deletion-char))))
1237
1238(defsubst ibuffer-map-deletion-lines (func)
1239 (ibuffer-map-on-mark ibuffer-deletion-char func))
1240
87a6a53a 1241(defsubst ibuffer-assert-ibuffer-mode ()
2ead9289 1242 (assert (derived-mode-p 'ibuffer-mode)))
87a6a53a 1243
92cb2eaf
JPW
1244(defun ibuffer-buffer-file-name ()
1245 (or buffer-file-name
1246 (let ((dirname (or (and (boundp 'dired-directory)
1247 (if (stringp dired-directory)
1248 dired-directory
1249 (car dired-directory)))
414408cd 1250 (bound-and-true-p list-buffers-directory))))
9d458edc 1251 (and dirname (expand-file-name dirname)))))
92cb2eaf 1252
fd225d80 1253(define-ibuffer-op ibuffer-do-save ()
25d2f683
CW
1254 "Save marked buffers as with `save-buffer'."
1255 (:complex t
1256 :opstring "saved"
1257 :modifier-p :maybe)
1258 (when (buffer-modified-p buf)
1259 (if (not (with-current-buffer buf
1260 buffer-file-name))
1261 ;; handle the case where we're prompted
1262 ;; for a file name
1263 (save-window-excursion
1264 (switch-to-buffer buf)
1265 (save-buffer))
1266 (with-current-buffer buf
1267 (save-buffer))))
1268 t)
1269
fd225d80 1270(define-ibuffer-op ibuffer-do-toggle-modified ()
25d2f683
CW
1271 "Toggle modification flag of marked buffers."
1272 (:opstring "(un)marked as modified"
1273 :modifier-p t)
1274 (set-buffer-modified-p (not (buffer-modified-p))))
1275
92be491c
RW
1276(define-ibuffer-op ibuffer-do-toggle-read-only (&optional arg)
1277 "Toggle read only status in marked buffers.
320d3e68 1278With optional ARG, make read-only only if ARG is positive."
25d2f683 1279 (:opstring "toggled read only status in"
92be491c 1280 :interactive "P"
25d2f683 1281 :modifier-p t)
92be491c 1282 (toggle-read-only arg))
25d2f683 1283
fd225d80 1284(define-ibuffer-op ibuffer-do-delete ()
25d2f683
CW
1285 "Kill marked buffers as with `kill-this-buffer'."
1286 (:opstring "killed"
1287 :active-opstring "kill"
1288 :dangerous t
1289 :complex t
1290 :modifier-p t)
1291 (if (kill-buffer buf)
1292 'kill
1293 nil))
1294
fd225d80 1295(define-ibuffer-op ibuffer-do-kill-on-deletion-marks ()
25d2f683
CW
1296 "Kill buffers marked for deletion as with `kill-this-buffer'."
1297 (:opstring "killed"
1298 :active-opstring "kill"
1299 :dangerous t
1300 :complex t
1301 :mark :deletion
1302 :modifier-p t)
1303 (if (kill-buffer buf)
1304 'kill
1305 nil))
1306
1307(defun ibuffer-unmark-all (mark)
1308 "Unmark all buffers with mark MARK."
1309 (interactive "cRemove marks (RET means all):")
1310 (if (= (ibuffer-count-marked-lines t) 0)
1311 (message "No buffers marked; use 'm' to mark a buffer")
1312 (cond
1313 ((char-equal mark ibuffer-marked-char)
1314 (ibuffer-map-marked-lines
57c9cc3e 1315 #'(lambda (buf mark)
972b8f82 1316 (ibuffer-set-mark-1 ?\s)
25d2f683
CW
1317 t)))
1318 ((char-equal mark ibuffer-deletion-char)
1319 (ibuffer-map-deletion-lines
57c9cc3e 1320 #'(lambda (buf mark)
972b8f82 1321 (ibuffer-set-mark-1 ?\s)
25d2f683
CW
1322 t)))
1323 (t
1324 (ibuffer-map-lines
57c9cc3e 1325 #'(lambda (buf mark)
972b8f82
JB
1326 (when (not (char-equal mark ?\s))
1327 (ibuffer-set-mark-1 ?\s))
25d2f683
CW
1328 t)))))
1329 (ibuffer-redisplay t))
1330
b5cd37ea 1331(defun ibuffer-toggle-marks (&optional group)
25d2f683
CW
1332 "Toggle which buffers are marked.
1333In other words, unmarked buffers become marked, and marked buffers
cba63a2d
CW
1334become unmarked.
1335If point is on a group name, then this function operates on that
1336group."
25d2f683 1337 (interactive)
cba63a2d
CW
1338 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name)
1339 (setq group it))
25d2f683
CW
1340 (let ((count
1341 (ibuffer-map-lines
57c9cc3e 1342 #'(lambda (buf mark)
25d2f683 1343 (cond ((eq mark ibuffer-marked-char)
972b8f82 1344 (ibuffer-set-mark-1 ?\s)
25d2f683 1345 nil)
972b8f82 1346 ((eq mark ?\s)
25d2f683
CW
1347 (ibuffer-set-mark-1 ibuffer-marked-char)
1348 t)
1349 (t
b5cd37ea
CW
1350 nil)))
1351 nil group)))
25d2f683
CW
1352 (message "%s buffers marked" count))
1353 (ibuffer-redisplay t))
1354
1355(defun ibuffer-mark-forward (arg)
cba63a2d
CW
1356 "Mark the buffer on this line, and move forward ARG lines.
1357If point is on a group name, this function operates on that group."
25d2f683
CW
1358 (interactive "P")
1359 (ibuffer-mark-interactive arg ibuffer-marked-char 1))
1360
1361(defun ibuffer-unmark-forward (arg)
cba63a2d
CW
1362 "Unmark the buffer on this line, and move forward ARG lines.
1363If point is on a group name, this function operates on that group."
25d2f683 1364 (interactive "P")
972b8f82 1365 (ibuffer-mark-interactive arg ?\s 1))
25d2f683
CW
1366
1367(defun ibuffer-unmark-backward (arg)
cba63a2d
CW
1368 "Unmark the buffer on this line, and move backward ARG lines.
1369If point is on a group name, this function operates on that group."
25d2f683 1370 (interactive "P")
972b8f82 1371 (ibuffer-mark-interactive arg ?\s -1))
25d2f683
CW
1372
1373(defun ibuffer-mark-interactive (arg mark movement)
87a6a53a 1374 (ibuffer-assert-ibuffer-mode)
34a4faa0 1375 (or arg (setq arg 1))
cba63a2d
CW
1376 (ibuffer-forward-line 0)
1377 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name)
1378 (progn
1379 (require 'ibuf-ext)
1380 (ibuffer-mark-on-buffer #'identity mark it))
4e4a724c 1381 (ibuffer-forward-line 0 t)
cba63a2d
CW
1382 (let ((inhibit-read-only t))
1383 (while (> arg 0)
1384 (ibuffer-set-mark mark)
1385 (ibuffer-forward-line movement t)
1386 (setq arg (1- arg))))))
25d2f683
CW
1387
1388(defun ibuffer-set-mark (mark)
87a6a53a 1389 (ibuffer-assert-ibuffer-mode)
25d2f683
CW
1390 (let ((inhibit-read-only t))
1391 (ibuffer-set-mark-1 mark)
1392 (setq ibuffer-did-modification t)
559ac4c1
CW
1393 (ibuffer-redisplay-current)
1394 (beginning-of-line)))
25d2f683
CW
1395
1396(defun ibuffer-set-mark-1 (mark)
1397 (let ((beg (line-beginning-position))
1398 (end (line-end-position)))
1399 (put-text-property beg end 'ibuffer-properties
1400 (list (ibuffer-current-buffer)
1401 mark))))
1402
1403(defun ibuffer-mark-for-delete (arg)
cba63a2d
CW
1404 "Mark the buffers on ARG lines forward for deletion.
1405If point is on a group name, this function operates on that group."
25d2f683
CW
1406 (interactive "P")
1407 (ibuffer-mark-interactive arg ibuffer-deletion-char 1))
1408
1409(defun ibuffer-mark-for-delete-backwards (arg)
cba63a2d
CW
1410 "Mark the buffers on ARG lines backward for deletion.
1411If point is on a group name, this function operates on that group."
25d2f683
CW
1412 (interactive "P")
1413 (ibuffer-mark-interactive arg ibuffer-deletion-char -1))
1414
1415(defun ibuffer-current-buffer (&optional must-be-live)
1416 (let ((buf (car (get-text-property (line-beginning-position)
1417 'ibuffer-properties))))
b5cd37ea
CW
1418 (when must-be-live
1419 (if (bufferp buf)
1420 (unless (buffer-live-p buf)
1388485d 1421 (error "Buffer %s has been killed; %s" buf (substitute-command-keys "use `\\[ibuffer-update]' to update")))
b5cd37ea 1422 (error "No buffer on this line")))
25d2f683 1423 buf))
523304ed
CW
1424
1425(defun ibuffer-active-formats-name ()
1426 (if (boundp 'ibuffer-filter-format-alist)
1427 (let ((ret nil))
1428 (dolist (filter ibuffer-filtering-qualifiers ret)
1429 (let ((val (assq (car filter) ibuffer-filter-format-alist)))
1430 (when val
1431 (setq ret (car filter)))))
1432 (if ret
1433 ret
1434 :ibuffer-formats))
1435 :ibuffer-formats))
1436
1437(defun ibuffer-current-formats (uncompiledp)
1438 (let* ((name (ibuffer-active-formats-name)))
1439 (ibuffer-check-formats)
1440 (if (eq name :ibuffer-formats)
1441 (if uncompiledp
1442 ibuffer-formats
1443 ibuffer-compiled-formats)
1444 (cadr (assq name
1445 (if uncompiledp
1446 ibuffer-filter-format-alist
1447 ibuffer-compiled-filter-formats))))))
71296446 1448
523304ed 1449(defun ibuffer-current-format (&optional uncompiledp)
25d2f683
CW
1450 (or ibuffer-current-format
1451 (setq ibuffer-current-format 0))
4e4a724c 1452 (nth ibuffer-current-format (ibuffer-current-formats uncompiledp)))
25d2f683
CW
1453
1454(defun ibuffer-expand-format-entry (form)
1455 (if (or (consp form)
1456 (symbolp form))
4e4a724c
JPW
1457 (let ((sym (intern (concat "ibuffer-make-column-"
1458 (symbol-name (if (consp form)
1459 (car form)
1460 form))))))
1461 (unless (or (fboundp sym)
1462 (assq sym ibuffer-inline-columns))
1463 (error "Unknown column %s in ibuffer-formats" form))
1464 (let (min max align elide)
1465 (if (consp form)
1466 (setq min (or (nth 1 form) 0)
1467 max (or (nth 2 form) -1)
1468 align (or (nth 3 form) :left)
1469 elide (or (nth 4 form) nil))
1470 (setq min 0
1471 max -1
1472 align :left
1473 elide nil))
1474 (list sym min max align elide)))
25d2f683 1475 form))
71296446 1476
25d2f683 1477(defun ibuffer-compile-make-eliding-form (strvar elide from-end-p)
545aad2f 1478 (let ((ellipsis (propertize ibuffer-eliding-string 'font-lock-face 'bold)))
63f0a166 1479 (if (or elide (with-no-warnings ibuffer-elide-long-columns))
25d2f683
CW
1480 `(if (> strlen 5)
1481 ,(if from-end-p
1482 `(concat ,ellipsis
1483 (substring ,strvar
1484 (length ibuffer-eliding-string)))
1485 `(concat
1486 (substring ,strvar 0 (- strlen ,(length ellipsis)))
1487 ,ellipsis))
1488 ,strvar)
1489 strvar)))
1490
1491(defun ibuffer-compile-make-substring-form (strvar maxvar from-end-p)
1492 (if from-end-p
1493 `(substring str
1494 (- strlen ,maxvar))
1495 `(substring ,strvar 0 ,maxvar)))
1496
1497(defun ibuffer-compile-make-format-form (strvar widthform alignment)
972b8f82
JB
1498 (let* ((left `(make-string tmp2 ?\s))
1499 (right `(make-string (- tmp1 tmp2) ?\s)))
25d2f683
CW
1500 `(progn
1501 (setq tmp1 ,widthform
1502 tmp2 (/ tmp1 2))
1503 ,(case alignment
1504 (:right `(concat ,left ,right ,strvar))
1505 (:center `(concat ,left ,strvar ,right))
1506 (:left `(concat ,strvar ,left ,right))
1507 (t (error "Invalid alignment %s" alignment))))))
1508
1509(defun ibuffer-compile-format (format)
1510 (let ((result nil)
cb059426
CW
1511 ;; We use these variables to keep track of which variables
1512 ;; inside the generated function we need to bind, since
1513 ;; binding variables in Emacs takes time.
1514 str-used tmp1-used tmp2-used global-strlen-used)
25d2f683
CW
1515 (dolist (form format)
1516 (push
cb059426
CW
1517 ;; Generate a form based on a particular format entry, like
1518 ;; " ", mark, or (mode 16 16 :right).
25d2f683 1519 (if (stringp form)
cb059426 1520 ;; It's a string; all we need to do is insert it.
25d2f683
CW
1521 `(insert ,form)
1522 (let* ((form (ibuffer-expand-format-entry form))
1523 (sym (nth 0 form))
1524 (min (nth 1 form))
1525 (max (nth 2 form))
1526 (align (nth 3 form))
1527 (elide (nth 4 form)))
1528 (let* ((from-end-p (when (minusp min)
1529 (setq min (- min))
1530 t))
1531 (letbindings nil)
1532 (outforms nil)
1533 minform
1534 maxform
1535 min-used max-used strlen-used)
1536 (when (or (not (integerp min)) (>= min 0))
cb059426
CW
1537 ;; This is a complex case; they want it limited to a
1538 ;; minimum size.
25d2f683
CW
1539 (setq min-used t)
1540 (setq str-used t strlen-used t global-strlen-used t
1541 tmp1-used t tmp2-used t)
cb059426 1542 ;; Generate code to limit the string to a minimum size.
25d2f683
CW
1543 (setq minform `(progn
1544 (setq str
1545 ,(ibuffer-compile-make-format-form
1546 'str
1547 `(- ,(if (integerp min)
1548 min
1549 'min)
1550 strlen)
1551 align)))))
1552 (when (or (not (integerp max)) (> max 0))
1553 (setq str-used t max-used t)
cb059426 1554 ;; Generate code to limit the string to a maximum size.
25d2f683
CW
1555 (setq maxform `(progn
1556 (setq str
1557 ,(ibuffer-compile-make-substring-form
1558 'str
1559 (if (integerp max)
1560 max
1561 'max)
1562 from-end-p))
1563 (setq strlen (length str))
1564 (setq str
1565 ,(ibuffer-compile-make-eliding-form 'str
1566 elide
1567 from-end-p)))))
cb059426
CW
1568 ;; Now, put these forms together with the rest of the code.
1569 (let ((callform
1570 ;; Is this an "inline" column? This means we have
1571 ;; to get the code from the
1572 ;; `ibuffer-inline-columns' alist and insert it
1573 ;; into our generated code. Otherwise, we just
1574 ;; generate a call to the column function.
1575 (ibuffer-aif (assq sym ibuffer-inline-columns)
4e4a724c
JPW
1576 (nth 1 it)
1577 `(,sym buffer mark)))
cb059426
CW
1578 ;; You're not expected to understand this. Hell, I
1579 ;; don't even understand it, and I wrote it five
1580 ;; minutes ago.
1581 (insertgenfn (ibuffer-aif (get sym 'ibuffer-column-summarizer)
4e4a724c
JPW
1582 ;; I really, really wish Emacs Lisp had closures.
1583 (lambda (arg sym)
1584 `(insert
1585 (let ((ret ,arg))
1586 (put ',sym 'ibuffer-column-summary
1587 (cons ret (get ',sym 'ibuffer-column-summary)))
1588 ret)))
545aad2f
CW
1589 (lambda (arg sym)
1590 `(insert ,arg))))
25d2f683
CW
1591 (mincompform `(< strlen ,(if (integerp min)
1592 min
1593 'min)))
1594 (maxcompform `(> strlen ,(if (integerp max)
1595 max
1596 'max))))
4e4a724c
JPW
1597 (if (or min-used max-used)
1598 ;; The complex case, where we have to limit the
1599 ;; form to a maximum or minimum size.
1600 (progn
1601 (when (and min-used (not (integerp min)))
1602 (push `(min ,min) letbindings))
1603 (when (and max-used (not (integerp max)))
1604 (push `(max ,max) letbindings))
1605 (push
1606 (if (and min-used max-used)
1607 `(if ,mincompform
1608 ,minform
1609 (if ,maxcompform
1610 ,maxform))
1611 (if min-used
1612 `(when ,mincompform
1613 ,minform)
1614 `(when ,maxcompform
1615 ,maxform)))
1616 outforms)
1617 (push (append
1618 `(setq str ,callform)
1619 (when strlen-used
1620 `(strlen (length str))))
1621 outforms)
1622 (setq outforms
1623 (append outforms (list (funcall insertgenfn 'str sym)))))
1624 ;; The simple case; just insert the string.
1625 (push (funcall insertgenfn callform sym) outforms))
1626 ;; Finally, return a `let' form which binds the
1627 ;; variables in `letbindings', and contains all the
1628 ;; code in `outforms'.
1629 `(let ,letbindings
1630 ,@outforms)))))
25d2f683
CW
1631 result))
1632 (setq result
cb059426 1633 ;; We don't want to unconditionally load the byte-compiler.
25d2f683
CW
1634 (funcall (if (or ibuffer-always-compile-formats
1635 (featurep 'bytecomp))
1636 #'byte-compile
1637 #'identity)
cb059426
CW
1638 ;; Here, we actually create a lambda form which
1639 ;; inserts all the generated forms for each entry
1640 ;; in the format string.
25d2f683 1641 (nconc (list 'lambda '(buffer mark))
d99b259b 1642 `((let ,(append (when str-used
25d2f683
CW
1643 '(str))
1644 (when global-strlen-used
1645 '(strlen))
1646 (when tmp1-used
1647 '(tmp1))
1648 (when tmp2-used
1649 '(tmp2)))
1650 ,@(nreverse result))))))))
1651
25d2f683
CW
1652(defun ibuffer-recompile-formats ()
1653 "Recompile `ibuffer-formats'."
1654 (interactive)
1655 (setq ibuffer-compiled-formats
4e4a724c 1656 (mapcar #'ibuffer-compile-format ibuffer-formats))
523304ed
CW
1657 (when (boundp 'ibuffer-filter-format-alist)
1658 (setq ibuffer-compiled-filter-formats
1659 (mapcar #'(lambda (entry)
1660 (cons (car entry)
1661 (mapcar #'(lambda (formats)
1662 (mapcar #'ibuffer-compile-format formats))
1663 (cdr entry))))
1664 ibuffer-filter-format-alist))))
25d2f683 1665
cb059426
CW
1666(defun ibuffer-clear-summary-columns (format)
1667 (dolist (form format)
1668 (ibuffer-awhen (and (consp form)
1669 (get (car form) 'ibuffer-column-summarizer))
1670 (put (car form) 'ibuffer-column-summary nil))))
71296446 1671
25d2f683 1672(defun ibuffer-check-formats ()
523304ed
CW
1673 (when (null ibuffer-formats)
1674 (error "No formats!"))
b5cd37ea
CW
1675 (let ((ext-loaded (featurep 'ibuf-ext)))
1676 (when (or (null ibuffer-compiled-formats)
1677 (null ibuffer-cached-formats)
1678 (not (eq ibuffer-cached-formats ibuffer-formats))
1679 (null ibuffer-cached-eliding-string)
1680 (not (equal ibuffer-cached-eliding-string ibuffer-eliding-string))
1681 (eql 0 ibuffer-cached-elide-long-columns)
1682 (not (eql ibuffer-cached-elide-long-columns
63f0a166 1683 (with-no-warnings ibuffer-elide-long-columns)))
b5cd37ea
CW
1684 (and ext-loaded
1685 (not (eq ibuffer-cached-filter-formats
1686 ibuffer-filter-format-alist))
1687 (and ibuffer-filter-format-alist
1688 (null ibuffer-compiled-filter-formats))))
1689 (message "Formats have changed, recompiling...")
1690 (ibuffer-recompile-formats)
1691 (setq ibuffer-cached-formats ibuffer-formats
1692 ibuffer-cached-eliding-string ibuffer-eliding-string
63f0a166 1693 ibuffer-cached-elide-long-columns (with-no-warnings ibuffer-elide-long-columns))
b5cd37ea
CW
1694 (when ext-loaded
1695 (setq ibuffer-cached-filter-formats ibuffer-filter-format-alist))
1696 (message "Formats have changed, recompiling...done"))))
25d2f683
CW
1697
1698(defvar ibuffer-inline-columns nil)
1699
1700(define-ibuffer-column mark (:name " " :inline t)
1701 (string mark))
1702
1703(define-ibuffer-column read-only (:name "R" :inline t)
1704 (if buffer-read-only
34a4faa0 1705 (string ibuffer-read-only-char)
25d2f683
CW
1706 " "))
1707
1708(define-ibuffer-column modified (:name "M" :inline t)
1709 (if (buffer-modified-p)
1710 (string ibuffer-modified-char)
1711 " "))
1712
34a4faa0
JPW
1713(define-ibuffer-column name
1714 (:inline t
f0b31589 1715 :header-mouse-map ibuffer-name-header-map
34a4faa0
JPW
1716 :props
1717 ('mouse-face 'highlight 'keymap ibuffer-name-map
1718 'ibuffer-name-column t
1719 'help-echo '(if tooltip-mode
1720 "mouse-1: mark this buffer\nmouse-2: select this buffer\nmouse-3: operate on this buffer"
1721 "mouse-1: mark buffer mouse-2: select buffer mouse-3: operate"))
1722 :summarizer
1723 (lambda (strings)
1724 (let ((bufs (length strings)))
1725 (cond ((zerop bufs) "No buffers")
1726 ((= 1 bufs) "1 buffer")
1727 (t (format "%s buffers" bufs))))))
545aad2f 1728 (propertize (buffer-name) 'font-lock-face (ibuffer-buffer-name-face buffer mark)))
71296446 1729
34a4faa0
JPW
1730(define-ibuffer-column size
1731 (:inline t
f0b31589 1732 :header-mouse-map ibuffer-size-header-map
34a4faa0
JPW
1733 :summarizer
1734 (lambda (column-strings)
1735 (let ((total 0))
1736 (dolist (string column-strings)
1737 (setq total
1738 ;; like, ewww ...
7ad938e7 1739 (+ (float (string-to-number string))
34a4faa0
JPW
1740 total)))
1741 (format "%.0f" total))))
25d2f683
CW
1742 (format "%s" (buffer-size)))
1743
7ad938e7
JPW
1744(define-ibuffer-column mode
1745 (:inline t
f0b31589 1746 :header-mouse-map ibuffer-mode-header-map
7ad938e7
JPW
1747 :props
1748 ('mouse-face 'highlight
1749 'keymap ibuffer-mode-name-map
1750 'help-echo "mouse-2: filter by this mode"))
23eabff6 1751 (format-mode-line mode-name nil nil (current-buffer)))
25d2f683 1752
34a4faa0
JPW
1753(define-ibuffer-column process
1754 (:summarizer
1755 (lambda (strings)
1756 (let ((total (length (delete "" strings))))
1757 (cond ((zerop total) "No processes")
1758 ((= 1 total) "1 process")
1759 (t (format "%d processes" total))))))
96777edb
CW
1760 (ibuffer-aif (get-buffer-process buffer)
1761 (format "(%s %s)" it (process-status it))
34a4faa0
JPW
1762 ""))
1763
1764(define-ibuffer-column filename
1765 (:summarizer
1766 (lambda (strings)
1767 (let ((total (length (delete "" strings))))
1768 (cond ((zerop total) "No files")
1769 ((= 1 total) "1 file")
1770 (t (format "%d files" total))))))
25d2f683
CW
1771 (let ((directory-abbrev-alist ibuffer-directory-abbrev-alist))
1772 (abbreviate-file-name
9d458edc 1773 (or (ibuffer-buffer-file-name) ""))))
25d2f683 1774
34a4faa0
JPW
1775(define-ibuffer-column filename-and-process
1776 (:name "Filename/Process"
d5794180 1777 :header-mouse-map ibuffer-filename/process-header-map
34a4faa0
JPW
1778 :summarizer
1779 (lambda (strings)
1780 (setq strings (delete "" strings))
1781 (let ((procs 0)
1782 (files 0))
1783 (dolist (string strings)
1784 (if (string-match "\\(\?:\\`(\[\[:ascii:\]\]\+)\\)" string)
1785 (progn (setq procs (1+ procs))
1786 (if (< (match-end 0) (length string))
1787 (setq files (1+ files))))
1788 (setq files (1+ files))))
1789 (concat (cond ((zerop files) "No files")
1790 ((= 1 files) "1 file")
1791 (t (format "%d files" files)))
1792 ", "
1793 (cond ((zerop procs) "no processes")
1794 ((= 1 procs) "1 process")
1795 (t (format "%d processes" procs)))))))
fd225d80 1796 (let ((proc (get-buffer-process buffer))
63e0bf5e 1797 (filename (ibuffer-make-column-filename buffer mark)))
fd225d80 1798 (if proc
34a4faa0 1799 (concat (propertize (format "(%s %s)" proc (process-status proc))
545aad2f 1800 'font-lock-face 'italic)
34a4faa0
JPW
1801 (if (> (length filename) 0)
1802 (format " %s" filename)
1803 ""))
fd225d80
CW
1804 filename)))
1805
25d2f683 1806(defun ibuffer-format-column (str width alignment)
972b8f82
JB
1807 (let ((left (make-string (/ width 2) ?\s))
1808 (right (make-string (- width (/ width 2)) ?\s)))
25d2f683
CW
1809 (case alignment
1810 (:right (concat left right str))
1811 (:center (concat left str right))
1812 (t (concat str left right)))))
1813
545aad2f 1814(defun ibuffer-buffer-name-face (buf mark)
fd225d80 1815 (cond ((char-equal mark ibuffer-marked-char)
545aad2f 1816 ibuffer-marked-face)
fd225d80 1817 ((char-equal mark ibuffer-deletion-char)
545aad2f 1818 ibuffer-deletion-face)
fd225d80
CW
1819 (t
1820 (let ((level -1)
fd225d80
CW
1821 result)
1822 (dolist (e ibuffer-fontification-alist result)
1823 (when (and (> (car e) level)
1824 (with-current-buffer buf
545aad2f 1825 (eval (nth 1 e))))
fd225d80 1826 (setq level (car e)
545aad2f 1827 result (nth 2 e))))))))
25d2f683
CW
1828
1829(defun ibuffer-insert-buffer-line (buffer mark format)
1830 "Insert a line describing BUFFER and MARK using FORMAT."
87a6a53a 1831 (ibuffer-assert-ibuffer-mode)
25d2f683 1832 (let ((beg (point)))
25d2f683 1833 (funcall format buffer mark)
cb059426
CW
1834 (put-text-property beg (point) 'ibuffer-properties (list buffer mark)))
1835 (insert "\n"))
25d2f683 1836
cb059426 1837;; This function knows a bit too much of the internals. It would be
b5cd37ea 1838;; nice if it was all abstracted away.
25d2f683 1839(defun ibuffer-redisplay-current ()
87a6a53a 1840 (ibuffer-assert-ibuffer-mode)
25d2f683
CW
1841 (when (eobp)
1842 (forward-line -1))
1843 (beginning-of-line)
cb059426
CW
1844 (let ((curformat (mapcar #'ibuffer-expand-format-entry
1845 (ibuffer-current-format t))))
1846 (ibuffer-clear-summary-columns curformat)
1847 (let ((buf (ibuffer-current-buffer)))
1848 (when buf
1849 (let ((mark (ibuffer-current-mark)))
ed233dd8
CW
1850 (save-excursion
1851 (delete-region (point) (1+ (line-end-position)))
1852 (ibuffer-insert-buffer-line
1853 buf mark
1854 (ibuffer-current-format)))
cb059426
CW
1855 (when ibuffer-shrink-to-minimum-size
1856 (ibuffer-shrink-to-fit)))))))
71296446 1857
25d2f683
CW
1858(defun ibuffer-map-on-mark (mark func)
1859 (ibuffer-map-lines
57c9cc3e 1860 #'(lambda (buf mk)
25d2f683 1861 (if (char-equal mark mk)
57c9cc3e 1862 (funcall func buf mark)
25d2f683
CW
1863 nil))))
1864
b5cd37ea
CW
1865(defun ibuffer-map-lines (function &optional nomodify group)
1866 "Call FUNCTION for each buffer.
4837b516 1867Set the ibuffer modification flag unless NOMODIFY is non-nil.
25d2f683 1868
b5cd37ea
CW
1869If optional argument GROUP is non-nil, then only call FUNCTION on
1870buffers in filtering group GROUP.
1871
4e4a724c
JPW
1872FUNCTION is called with two arguments:
1873the buffer object itself and the current mark symbol."
87a6a53a 1874 (ibuffer-assert-ibuffer-mode)
b5cd37ea
CW
1875 (ibuffer-forward-line 0)
1876 (let* ((orig-target-line (1+ (count-lines (save-excursion
1877 (goto-char (point-min))
1878 (ibuffer-forward-line 0)
1879 (point))
1880 (point))))
1881 (target-line-offset orig-target-line)
1882 (ibuffer-map-lines-total 0)
1883 (ibuffer-map-lines-count 0))
25d2f683 1884 (unwind-protect
57c9cc3e
CW
1885 (progn
1886 (setq buffer-read-only nil)
1887 (goto-char (point-min))
4e4a724c 1888 (ibuffer-forward-line 0 t)
57c9cc3e 1889 (while (and (not (eobp))
b5cd37ea
CW
1890 (not (get-text-property (point) 'ibuffer-summary))
1891 (progn
1892 (ibuffer-forward-line 0 t)
1893 (and (not (eobp))
1894 (not (get-text-property (point) 'ibuffer-summary)))))
57c9cc3e
CW
1895 (let ((result
1896 (if (buffer-live-p (ibuffer-current-buffer))
b5cd37ea
CW
1897 (when (or (null group)
1898 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group)
1899 (equal group it)))
1900 (save-excursion
1901 (funcall function
1902 (ibuffer-current-buffer)
1903 (ibuffer-current-mark))))
57c9cc3e
CW
1904 ;; Kill the line if the buffer is dead
1905 'kill)))
1906 ;; A given mapping function should return:
1907 ;; `nil' if it chose not to affect the buffer
1908 ;; `kill' means the remove line from the buffer list
1909 ;; `t' otherwise
1910 (incf ibuffer-map-lines-total)
1911 (cond ((null result)
1912 (forward-line 1))
1913 ((eq result 'kill)
1914 (delete-region (line-beginning-position)
1915 (1+ (line-end-position)))
1916 (incf ibuffer-map-lines-count)
1917 (when (< ibuffer-map-lines-total
4e4a724c 1918 orig-target-line)
b5cd37ea 1919 (decf target-line-offset)))
57c9cc3e
CW
1920 (t
1921 (incf ibuffer-map-lines-count)
1922 (forward-line 1)))))
1923 ibuffer-map-lines-count)
25d2f683
CW
1924 (progn
1925 (setq buffer-read-only t)
1926 (unless nomodify
1927 (set-buffer-modified-p nil))
57c9cc3e
CW
1928 (goto-char (point-min))
1929 (ibuffer-forward-line 0)
b5cd37ea 1930 (ibuffer-forward-line (1- target-line-offset))))))
25d2f683
CW
1931
1932(defun ibuffer-get-marked-buffers ()
1933 "Return a list of buffer objects currently marked."
1934 (delq nil
1935 (mapcar #'(lambda (e)
1936 (when (eq (cdr e) ibuffer-marked-char)
1937 (car e)))
1938 (ibuffer-current-state-list))))
1939
d246cabf
CW
1940(defun ibuffer-current-state-list (&optional pos)
1941 "Return a list like (BUF . MARK) of all buffers in an ibuffer.
1942If POS is non-nil, return a list like (BUF MARK POINT), where POINT is
1943the value of point at the beginning of the line for that buffer."
25d2f683
CW
1944 (let ((ibuffer-current-state-list-tmp '()))
1945 ;; ah, if only we had closures. I bet this will mysteriously
1946 ;; break later. Don't blame me.
d246cabf
CW
1947 (if pos
1948 (ibuffer-map-lines-nomodify
1949 #'(lambda (buf mark)
1950 (when (buffer-live-p buf)
1951 (push (list buf mark (point)) ibuffer-current-state-list-tmp))))
1952 (ibuffer-map-lines-nomodify
1953 #'(lambda (buf mark)
1954 (when (buffer-live-p buf)
1955 (push (cons buf mark) ibuffer-current-state-list-tmp)))))
25d2f683
CW
1956 (nreverse ibuffer-current-state-list-tmp)))
1957
851476d4 1958(defun ibuffer-current-buffers-with-marks (curbufs)
25d2f683
CW
1959 "Return a list like (BUF . MARK) of all open buffers."
1960 (let ((bufs (ibuffer-current-state-list)))
1961 (mapcar #'(lambda (buf) (let ((e (assq buf bufs)))
1962 (if e
1963 e
972b8f82 1964 (cons buf ?\s))))
851476d4 1965 curbufs)))
25d2f683
CW
1966
1967(defun ibuffer-buf-matches-predicates (buf predicates)
1968 (let ((hit nil)
1969 (name (buffer-name buf)))
1970 (dolist (pred predicates)
1971 (when (if (stringp pred)
1972 (string-match pred name)
1973 (funcall pred buf))
1974 (setq hit t)))
1975 hit))
71296446 1976
25d2f683
CW
1977(defun ibuffer-filter-buffers (ibuffer-buf last bmarklist all)
1978 (let ((ext-loaded (featurep 'ibuf-ext)))
1979 (delq nil
b5cd37ea
CW
1980 (mapcar
1981 ;; element should be like (BUFFER . MARK)
1982 #'(lambda (e)
1983 (let* ((buf (car e)))
1984 (when
1985 ;; This takes precedence over anything else
1986 (or (and ibuffer-always-show-last-buffer
4e4a724c
JPW
1987 (eq last buf))
1988 (funcall (if ext-loaded
1989 #'ibuffer-ext-visible-p
1990 #'ibuffer-visible-p)
1991 buf all ibuffer-buf))
b5cd37ea
CW
1992 e)))
1993 bmarklist))))
25d2f683
CW
1994
1995(defun ibuffer-visible-p (buf all &optional ibuffer-buf)
1996 (and (or all
1997 (not
1998 (ibuffer-buf-matches-predicates buf ibuffer-maybe-show-predicates)))
1999 (or ibuffer-view-ibuffer
4e4a724c 2000 (and ibuffer-buf
25d2f683
CW
2001 (not (eq ibuffer-buf buf))))))
2002
2003;; This function is a special case; it's not defined by
6081889e 2004;; `define-ibuffer-sorter'.
25d2f683
CW
2005(defun ibuffer-do-sort-by-recency ()
2006 "Sort the buffers by last view time."
2007 (interactive)
2008 (setq ibuffer-sorting-mode 'recency)
e7820654
JPW
2009 (when (eq ibuffer-last-sorting-mode 'recency)
2010 (setq ibuffer-sorting-reversep (not ibuffer-sorting-reversep)))
2011 (ibuffer-update nil t)
2012 (setq ibuffer-last-sorting-mode 'recency))
25d2f683
CW
2013
2014(defun ibuffer-update-format ()
2015 (when (null ibuffer-current-format)
2016 (setq ibuffer-current-format 0))
2017 (when (null ibuffer-formats)
2018 (error "Ibuffer error: no formats!")))
2019
2020(defun ibuffer-switch-format ()
2021 "Switch the current display format."
2022 (interactive)
87a6a53a 2023 (ibuffer-assert-ibuffer-mode)
25d2f683
CW
2024 (unless (consp ibuffer-formats)
2025 (error "Ibuffer error: No formats!"))
2026 (setq ibuffer-current-format
80a06d64 2027 (if (>= ibuffer-current-format (1- (length (ibuffer-current-formats nil))))
25d2f683
CW
2028 0
2029 (1+ ibuffer-current-format)))
2030 (ibuffer-update-format)
2031 (ibuffer-redisplay t))
2032
cb059426 2033(defun ibuffer-update-title-and-summary (format)
87a6a53a 2034 (ibuffer-assert-ibuffer-mode)
25d2f683
CW
2035 ;; Don't do funky font-lock stuff here
2036 (let ((after-change-functions nil))
2037 (if (get-text-property (point-min) 'ibuffer-title)
2038 (delete-region (point-min)
2039 (next-single-property-change
2040 (point-min) 'ibuffer-title)))
2041 (goto-char (point-min))
fd225d80 2042 (add-text-properties
25d2f683
CW
2043 (point)
2044 (progn
2045 (let ((opos (point)))
2046 ;; Insert the title names.
cb059426 2047 (dolist (element format)
25d2f683
CW
2048 (insert
2049 (if (stringp element)
2050 element
2051 (let ((sym (car element))
2052 (min (cadr element))
2053 ;; (max (caddr element))
2054 (align (cadddr element)))
4e4a724c 2055 ;; Ignore a negative min when we're inserting the title
25d2f683
CW
2056 (when (minusp min)
2057 (setq min (- min)))
2058 (let* ((name (or (get sym 'ibuffer-column-name)
2059 (error "Unknown column %s in ibuffer-formats" sym)))
f0b31589
DN
2060 (len (length name))
2061 (hmap (get sym 'header-mouse-map))
2062 (strname (if (< len min)
2063 (ibuffer-format-column name
2064 (- min len)
2065 align)
2066 name)))
2067 (when hmap
2068 (setq
2ead9289 2069 strname
f0b31589
DN
2070 (propertize strname 'mouse-face 'highlight 'keymap hmap)))
2071 strname)))))
fd225d80 2072 (add-text-properties opos (point) `(ibuffer-title-header t))
25d2f683
CW
2073 (insert "\n")
2074 ;; Add the underlines
2075 (let ((str (save-excursion
2076 (forward-line -1)
2077 (beginning-of-line)
2078 (buffer-substring (point) (line-end-position)))))
2079 (apply #'insert (mapcar
2080 #'(lambda (c)
972b8f82 2081 (if (not (or (char-equal c ?\s)
25d2f683
CW
2082 (char-equal c ?\n)))
2083 ?-
972b8f82 2084 ?\s))
25d2f683
CW
2085 str)))
2086 (insert "\n"))
2087 (point))
545aad2f 2088 `(ibuffer-title t font-lock-face ,ibuffer-title-face))
cb059426
CW
2089 ;; Now, insert the summary columns.
2090 (goto-char (point-max))
2091 (if (get-text-property (1- (point-max)) 'ibuffer-summary)
2092 (delete-region (previous-single-property-change
2093 (point-max) 'ibuffer-summary)
2094 (point-max)))
0740098c
JPW
2095 (if ibuffer-display-summary
2096 (add-text-properties
2097 (point)
2098 (progn
2099 (insert "\n")
2100 (dolist (element format)
2101 (insert
2102 (if (stringp element)
972b8f82 2103 (make-string (length element) ?\s)
0740098c
JPW
2104 (let ((sym (car element)))
2105 (let ((min (cadr element))
2106 ;; (max (caddr element))
2107 (align (cadddr element)))
2108 ;; Ignore a negative min when we're inserting the title
2109 (when (minusp min)
2110 (setq min (- min)))
2111 (let* ((summary (if (get sym 'ibuffer-column-summarizer)
2112 (funcall (get sym 'ibuffer-column-summarizer)
2113 (get sym 'ibuffer-column-summary))
2114 (make-string (length (get sym 'ibuffer-column-name))
972b8f82 2115 ?\s)))
0740098c
JPW
2116 (len (length summary)))
2117 (if (< len min)
2118 (ibuffer-format-column summary
2119 (- min len)
2120 align)
2121 summary)))))))
2122 (point))
2123 `(ibuffer-summary t)))))
25d2f683 2124
25d2f683
CW
2125
2126(defun ibuffer-redisplay (&optional silent)
2127 "Redisplay the current list of buffers.
25d2f683
CW
2128This does not show new buffers; use `ibuffer-update' for that.
2129
7ad5b902 2130If optional arg SILENT is non-nil, do not display progress messages."
25d2f683 2131 (interactive)
57c9cc3e 2132 (ibuffer-forward-line 0)
25d2f683
CW
2133 (unless silent
2134 (message "Redisplaying current buffer list..."))
2135 (let ((blist (ibuffer-current-state-list)))
2136 (when (null blist)
2137 (if (and (featurep 'ibuf-ext)
cba63a2d 2138 (or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups))
25d2f683
CW
2139 (message "No buffers! (note: filtering in effect)")
2140 (error "No buffers!")))
b5cd37ea 2141 (ibuffer-redisplay-engine blist t)
25d2f683 2142 (unless silent
57c9cc3e
CW
2143 (message "Redisplaying current buffer list...done"))
2144 (ibuffer-forward-line 0)))
25d2f683
CW
2145
2146(defun ibuffer-update (arg &optional silent)
2147 "Regenerate the list of all buffers.
957237cb
JPW
2148
2149Prefix arg non-nil means to toggle whether buffers that match
2150`ibuffer-maybe-show-predicates' should be displayed.
25d2f683 2151
7ad5b902 2152If optional arg SILENT is non-nil, do not display progress messages."
25d2f683 2153 (interactive "P")
957237cb
JPW
2154 (if arg
2155 (setq ibuffer-display-maybe-show-predicates
2156 (not ibuffer-display-maybe-show-predicates)))
57c9cc3e 2157 (ibuffer-forward-line 0)
25d2f683
CW
2158 (let* ((bufs (buffer-list))
2159 (blist (ibuffer-filter-buffers
94394914
JPW
2160 (current-buffer)
2161 (if (and
2162 (cadr bufs)
2163 (eq ibuffer-always-show-last-buffer
2164 :nomini)
8e7dbfdb 2165 (minibufferp (cadr bufs)))
da337a28 2166 (caddr bufs)
94394914
JPW
2167 (cadr bufs))
2168 (ibuffer-current-buffers-with-marks bufs)
957237cb 2169 ibuffer-display-maybe-show-predicates)))
25d2f683
CW
2170 (when (null blist)
2171 (if (and (featurep 'ibuf-ext)
2172 ibuffer-filtering-qualifiers)
2173 (message "No buffers! (note: filtering in effect)")
2174 (error "No buffers!")))
2175 (unless silent
2176 (message "Updating buffer list..."))
b5cd37ea 2177 (ibuffer-redisplay-engine blist arg)
25d2f683
CW
2178 (unless silent
2179 (message "Updating buffer list...done")))
2180 (if (eq ibuffer-shrink-to-minimum-size 'onewindow)
2181 (ibuffer-shrink-to-fit t)
2182 (when ibuffer-shrink-to-minimum-size
2183 (ibuffer-shrink-to-fit)))
6d11a78b
SM
2184 (ibuffer-forward-line 0)
2185 ;; I tried to update this automatically from the mode-line-process format,
2186 ;; but changing nil-ness of header-line-format while computing
2187 ;; mode-line-format is asking a bit too much it seems. --Stef
2188 (setq header-line-format
2189 (and ibuffer-use-header-line
2190 ibuffer-filtering-qualifiers
2191 ibuffer-header-line-format)))
25d2f683 2192
b5cd37ea 2193(defun ibuffer-sort-bufferlist (bmarklist)
e19fff38
JB
2194 (unless ibuffer-sorting-functions-alist
2195 ;; make sure the sorting functions are loaded
2196 (require 'ibuf-ext))
b5cd37ea
CW
2197 (let* ((sortdat (assq ibuffer-sorting-mode
2198 ibuffer-sorting-functions-alist))
2199 (func (caddr sortdat)))
2200 (let ((result
2201 ;; actually sort the buffers
2202 (if (and sortdat func)
2203 (sort bmarklist func)
2204 bmarklist)))
2205 ;; perhaps reverse the sorted buffer list
2206 (if ibuffer-sorting-reversep
2207 (nreverse result)
2208 result))))
2209
7fbac645 2210(defun ibuffer-insert-filter-group (name display-name filter-string format bmarklist)
b5cd37ea
CW
2211 (add-text-properties
2212 (point)
2213 (progn
2214 (insert "[ " display-name " ]")
2215 (point))
fd225d80
CW
2216 `(ibuffer-filter-group-name
2217 ,name
545aad2f 2218 font-lock-face ,ibuffer-filter-group-name-face
fd225d80
CW
2219 keymap ,ibuffer-mode-filter-group-map
2220 mouse-face highlight
1cd7affa
JPW
2221 help-echo ,(let ((echo '(if tooltip-mode
2222 "mouse-1: toggle marks in this group\nmouse-2: hide/show this filtering group"
ce3a4c83 2223 "mouse-1: toggle marks mouse-2: hide/show")))
1cd7affa 2224 (if (> (length filter-string) 0)
ce3a4c83
JPW
2225 `(concat ,filter-string
2226 (if tooltip-mode "\n" " ")
2227 ,echo)
1cd7affa 2228 echo))))
b5cd37ea
CW
2229 (insert "\n")
2230 (when bmarklist
2231 (put-text-property
2232 (point)
2233 (progn
2234 (dolist (entry bmarklist)
2235 (ibuffer-insert-buffer-line (car entry) (cdr entry) format))
2236 (point))
2237 'ibuffer-filter-group
2238 name)))
2239
957237cb 2240(defun ibuffer-redisplay-engine (bmarklist &optional ignore)
87a6a53a 2241 (ibuffer-assert-ibuffer-mode)
b5cd37ea
CW
2242 (let* ((--ibuffer-insert-buffers-and-marks-format
2243 (ibuffer-current-format))
2244 (--ibuffer-expanded-format (mapcar #'ibuffer-expand-format-entry
2245 (ibuffer-current-format t)))
2246 (orig (count-lines (point-min) (point)))
2247 ;; Inhibit font-lock caching tricks, since we're modifying the
2248 ;; entire buffer at once
2249 (after-change-functions nil)
2250 (ext-loaded (featurep 'ibuf-ext))
2251 (bgroups (if ext-loaded
2252 (ibuffer-generate-filter-groups bmarklist)
2253 (list (cons "Default" bmarklist)))))
cb059426 2254 (ibuffer-clear-summary-columns --ibuffer-expanded-format)
25d2f683
CW
2255 (unwind-protect
2256 (progn
2257 (setq buffer-read-only nil)
2258 (erase-buffer)
2259 (ibuffer-update-format)
b5cd37ea
CW
2260 (dolist (group (nreverse bgroups))
2261 (let* ((name (car group))
2262 (disabled (and ext-loaded
cba63a2d 2263 (member name ibuffer-hidden-filter-groups)))
b5cd37ea 2264 (bmarklist (cdr group)))
cba63a2d 2265 (unless (and (null bmarklist)
b90a6a12 2266 (not disabled)
cba63a2d
CW
2267 ext-loaded
2268 (null ibuffer-show-empty-filter-groups))
2269 (ibuffer-insert-filter-group
2270 name
2271 (if disabled (concat name " ...") name)
7fbac645
CW
2272 (if ext-loaded
2273 (ibuffer-format-filter-group-data name)
2274 "")
cba63a2d
CW
2275 --ibuffer-insert-buffers-and-marks-format
2276 (if disabled
2277 nil
2278 (ibuffer-sort-bufferlist bmarklist))))))
cb059426 2279 (ibuffer-update-title-and-summary --ibuffer-expanded-format))
25d2f683
CW
2280 (setq buffer-read-only t)
2281 (set-buffer-modified-p ibuffer-did-modification)
2282 (setq ibuffer-did-modification nil)
e600eb79 2283 (goto-char (point-min))
2ead9289 2284 (forward-line orig))))
25d2f683
CW
2285
2286(defun ibuffer-quit ()
2287 "Quit this `ibuffer' session.
4837b516 2288Try to restore the previous window configuration if
4ed1f829 2289`ibuffer-restore-window-config-on-quit' is non-nil."
25d2f683 2290 (interactive)
4ed1f829 2291 (if ibuffer-restore-window-config-on-quit
7ad938e7 2292 (progn
25d2f683
CW
2293 (bury-buffer)
2294 (unless (= (count-windows) 1)
4ed1f829 2295 (set-window-configuration ibuffer-prev-window-config)))
25d2f683
CW
2296 (bury-buffer)))
2297
2298;;;###autoload
2299(defun ibuffer-list-buffers (&optional files-only)
2300 "Display a list of buffers, in another window.
2301If optional argument FILES-ONLY is non-nil, then add a filter for
2302buffers which are visiting a file."
2303 (interactive "P")
2304 (ibuffer t nil (when files-only
2305 '((filename . ".*"))) t))
2306
2307;;;###autoload
2308(defun ibuffer-other-window (&optional files-only)
2309 "Like `ibuffer', but displayed in another window by default.
2310If optional argument FILES-ONLY is non-nil, then add a filter for
2311buffers which are visiting a file."
2312 (interactive "P")
2313 (ibuffer t nil (when files-only
2314 '((filename . ".*")))))
2315
2316;;;###autoload
b5cd37ea 2317(defun ibuffer (&optional other-window-p name qualifiers noselect
fd225d80 2318 shrink filter-groups formats)
972b8f82 2319 "Begin using Ibuffer to edit a list of buffers.
25d2f683
CW
2320Type 'h' after entering ibuffer for more information.
2321
972b8f82
JB
2322All arguments are optional.
2323OTHER-WINDOW-P says to use another window.
2324NAME specifies the name of the buffer (defaults to \"*Ibuffer*\").
2325QUALIFIERS is an initial set of filtering qualifiers to use;
2326 see `ibuffer-filtering-qualifiers'.
2327NOSELECT means don't select the Ibuffer buffer.
2328SHRINK means shrink the buffer to minimal size. The special
2329 value `onewindow' means always use another window.
2330FILTER-GROUPS is an initial set of filtering groups to use;
2331 see `ibuffer-filter-groups'.
2332FORMATS is the value to use for `ibuffer-formats'.
2333 If specified, then the variable `ibuffer-formats' will have
2334 that value locally in this buffer."
25d2f683
CW
2335 (interactive "P")
2336 (when ibuffer-use-other-window
34b8f593 2337 (setq other-window-p t))
4ed1f829 2338 (setq ibuffer-prev-window-config (current-window-configuration))
34a4faa0 2339 (let ((buf (get-buffer-create (or name "*Ibuffer*"))))
25d2f683
CW
2340 (if other-window-p
2341 (funcall (if noselect #'(lambda (buf) (display-buffer buf t)) #'pop-to-buffer) buf)
2342 (funcall (if noselect #'display-buffer #'switch-to-buffer) buf))
2343 (with-current-buffer buf
b5cd37ea
CW
2344 (save-selected-window
2345 ;; We switch to the buffer's window in order to be able
2346 ;; to modify the value of point
fab0d308 2347 (select-window (get-buffer-window buf 0))
34a4faa0
JPW
2348 (or (eq major-mode 'ibuffer-mode)
2349 (ibuffer-mode))
4ed1f829 2350 (setq ibuffer-restore-window-config-on-quit other-window-p)
b5cd37ea
CW
2351 (when shrink
2352 (setq ibuffer-shrink-to-minimum-size shrink))
2353 (when qualifiers
2354 (require 'ibuf-ext)
2355 (setq ibuffer-filtering-qualifiers qualifiers))
2356 (when filter-groups
2357 (require 'ibuf-ext)
cba63a2d 2358 (setq ibuffer-filter-groups filter-groups))
fd225d80
CW
2359 (when formats
2360 (set (make-local-variable 'ibuffer-formats) formats))
b5cd37ea
CW
2361 (ibuffer-update nil)
2362 ;; Skip the group name by default.
2363 (ibuffer-forward-line 0 t)
25d2f683
CW
2364 (unwind-protect
2365 (progn
b5cd37ea 2366 (setq buffer-read-only nil)
7ad5b902 2367 (run-hooks 'ibuffer-hook))
b5cd37ea
CW
2368 (setq buffer-read-only t))
2369 (unless ibuffer-expert
2370 (message "Commands: m, u, t, RET, g, k, S, D, Q; q to quit; h for help"))))))
25d2f683 2371
b23af469 2372(put 'ibuffer-mode 'mode-class 'special)
25d2f683
CW
2373(defun ibuffer-mode ()
2374 "A major mode for viewing a list of buffers.
972b8f82 2375In Ibuffer, you can conveniently perform many operations on the
25d2f683
CW
2376currently open buffers, in addition to filtering your view to a
2377particular subset of them, and sorting by various criteria.
2378
2379Operations on marked buffers:
2380
2381 '\\[ibuffer-do-save]' - Save the marked buffers
2382 '\\[ibuffer-do-view]' - View the marked buffers in this frame.
2383 '\\[ibuffer-do-view-other-frame]' - View the marked buffers in another frame.
2384 '\\[ibuffer-do-revert]' - Revert the marked buffers.
2385 '\\[ibuffer-do-toggle-read-only]' - Toggle read-only state of marked buffers.
2386 '\\[ibuffer-do-delete]' - Kill the marked buffers.
78176075
JL
2387 '\\[ibuffer-do-isearch]' - Do incremental search in the marked buffers.
2388 '\\[ibuffer-do-isearch-regexp]' - Isearch for regexp in the marked buffers.
25d2f683
CW
2389 '\\[ibuffer-do-replace-regexp]' - Replace by regexp in each of the marked
2390 buffers.
2391 '\\[ibuffer-do-query-replace]' - Query replace in each of the marked buffers.
2392 '\\[ibuffer-do-query-replace-regexp]' - As above, with a regular expression.
2393 '\\[ibuffer-do-print]' - Print the marked buffers.
2394 '\\[ibuffer-do-occur]' - List lines in all marked buffers which match
2395 a given regexp (like the function `occur').
2396 '\\[ibuffer-do-shell-command-pipe]' - Pipe the contents of the marked
2397 buffers to a shell command.
2398 '\\[ibuffer-do-shell-command-pipe-replace]' - Replace the contents of the marked
2399 buffers with the output of a shell command.
2400 '\\[ibuffer-do-shell-command-file]' - Run a shell command with the
2401 buffer's file as an argument.
2402 '\\[ibuffer-do-eval]' - Evaluate a form in each of the marked buffers. This
2403 is a very flexible command. For example, if you want to make all
2404 of the marked buffers read only, try using (toggle-read-only 1) as
2405 the input form.
2406 '\\[ibuffer-do-view-and-eval]' - As above, but view each buffer while the form
2407 is evaluated.
2408 '\\[ibuffer-do-kill-lines]' - Remove the marked lines from the *Ibuffer* buffer,
2409 but don't kill the associated buffer.
2410 '\\[ibuffer-do-kill-on-deletion-marks]' - Kill all buffers marked for deletion.
2411
2412Marking commands:
2413
2414 '\\[ibuffer-mark-forward]' - Mark the buffer at point.
2415 '\\[ibuffer-toggle-marks]' - Unmark all currently marked buffers, and mark
2416 all unmarked buffers.
2417 '\\[ibuffer-unmark-forward]' - Unmark the buffer at point.
2418 '\\[ibuffer-unmark-backward]' - Unmark the buffer at point, and move to the
2419 previous line.
2420 '\\[ibuffer-unmark-all]' - Unmark all marked buffers.
2421 '\\[ibuffer-mark-by-mode]' - Mark buffers by major mode.
2422 '\\[ibuffer-mark-unsaved-buffers]' - Mark all \"unsaved\" buffers.
2423 This means that the buffer is modified, and has an associated file.
2424 '\\[ibuffer-mark-modified-buffers]' - Mark all modified buffers,
2425 regardless of whether or not they have an associated file.
2426 '\\[ibuffer-mark-special-buffers]' - Mark all buffers whose name begins and
2427 ends with '*'.
2428 '\\[ibuffer-mark-dissociated-buffers]' - Mark all buffers which have
2429 an associated file, but that file doesn't currently exist.
2430 '\\[ibuffer-mark-read-only-buffers]' - Mark all read-only buffers.
2431 '\\[ibuffer-mark-dired-buffers]' - Mark buffers in `dired' mode.
2432 '\\[ibuffer-mark-help-buffers]' - Mark buffers in `help-mode', `apropos-mode', etc.
2433 '\\[ibuffer-mark-old-buffers]' - Mark buffers older than `ibuffer-old-time'.
2434 '\\[ibuffer-mark-for-delete]' - Mark the buffer at point for deletion.
2435 '\\[ibuffer-mark-by-name-regexp]' - Mark buffers by their name, using a regexp.
2436 '\\[ibuffer-mark-by-mode-regexp]' - Mark buffers by their major mode, using a regexp.
2437 '\\[ibuffer-mark-by-file-name-regexp]' - Mark buffers by their filename, using a regexp.
2438
2439Filtering commands:
2440
2441 '\\[ibuffer-filter-by-mode]' - Add a filter by major mode.
5bc06df9 2442 '\\[ibuffer-filter-by-used-mode]' - Add a filter by major mode now in use.
25d2f683
CW
2443 '\\[ibuffer-filter-by-name]' - Add a filter by buffer name.
2444 '\\[ibuffer-filter-by-content]' - Add a filter by buffer content.
2445 '\\[ibuffer-filter-by-filename]' - Add a filter by filename.
2446 '\\[ibuffer-filter-by-size-gt]' - Add a filter by buffer size.
2447 '\\[ibuffer-filter-by-size-lt]' - Add a filter by buffer size.
2448 '\\[ibuffer-filter-by-predicate]' - Add a filter by an arbitrary Lisp predicate.
2449 '\\[ibuffer-save-filters]' - Save the current filters with a name.
2450 '\\[ibuffer-switch-to-saved-filters]' - Switch to previously saved filters.
2451 '\\[ibuffer-add-saved-filters]' - Add saved filters to current filters.
2452 '\\[ibuffer-or-filter]' - Replace the top two filters with their logical OR.
2453 '\\[ibuffer-pop-filter]' - Remove the top filter.
2454 '\\[ibuffer-negate-filter]' - Invert the logical sense of the top filter.
2455 '\\[ibuffer-decompose-filter]' - Break down the topmost filter.
2456 '\\[ibuffer-filter-disable]' - Remove all filtering currently in effect.
cba63a2d
CW
2457
2458Filter group commands:
2459
2460 '\\[ibuffer-filters-to-filter-group]' - Create filter group from filters.
2461 '\\[ibuffer-pop-filter-group]' - Remove top filter group.
b098e753
CW
2462 '\\[ibuffer-forward-filter-group]' - Move to the next filter group.
2463 '\\[ibuffer-backward-filter-group]' - Move to the previous filter group.
2464 '\\[ibuffer-clear-filter-groups]' - Remove all active filter groups.
2465 '\\[ibuffer-save-filter-groups]' - Save the current groups with a name.
2466 '\\[ibuffer-switch-to-saved-filter-groups]' - Restore previously saved groups.
2467 '\\[ibuffer-delete-saved-filter-groups]' - Delete previously saved groups.
71296446 2468
25d2f683
CW
2469Sorting commands:
2470
2471 '\\[ibuffer-toggle-sorting-mode]' - Rotate between the various sorting modes.
2472 '\\[ibuffer-invert-sorting]' - Reverse the current sorting order.
2473 '\\[ibuffer-do-sort-by-alphabetic]' - Sort the buffers lexicographically.
d5794180 2474 '\\[ibuffer-do-sort-by-filename/process]' - Sort the buffers by the file name.
25d2f683
CW
2475 '\\[ibuffer-do-sort-by-recency]' - Sort the buffers by last viewing time.
2476 '\\[ibuffer-do-sort-by-size]' - Sort the buffers by size.
2477 '\\[ibuffer-do-sort-by-major-mode]' - Sort the buffers by major mode.
2478
2479Other commands:
2480
4c38df30
JPW
2481 '\\[ibuffer-update]' - Regenerate the list of all buffers.
2482 Prefix arg means to toggle whether buffers that match
2483 `ibuffer-maybe-show-predicates' should be displayed.
2484
25d2f683
CW
2485 '\\[ibuffer-switch-format]' - Change the current display format.
2486 '\\[forward-line]' - Move point to the next line.
2487 '\\[previous-line]' - Move point to the previous line.
25d2f683
CW
2488 '\\[ibuffer-quit]' - Bury the Ibuffer buffer.
2489 '\\[describe-mode]' - This help.
2490 '\\[ibuffer-diff-with-file]' - View the differences between this buffer
2491 and its associated file.
2492 '\\[ibuffer-visit-buffer]' - View the buffer on this line.
2493 '\\[ibuffer-visit-buffer-other-window]' - As above, but in another window.
2494 '\\[ibuffer-visit-buffer-other-window-noselect]' - As both above, but don't select
2495 the new window.
2496 '\\[ibuffer-bury-buffer]' - Bury (not kill!) the buffer on this line.
2497
cba63a2d 2498** Information on Filtering:
25d2f683
CW
2499
2500 You can filter your ibuffer view via different critera. Each Ibuffer
2501buffer has its own stack of active filters. For example, suppose you
2502are working on an Emacs Lisp project. You can create an Ibuffer
2503buffer displays buffers in just `emacs-lisp' modes via
2504'\\[ibuffer-filter-by-mode] emacs-lisp-mode RET'. In this case, there
2505is just one entry on the filtering stack.
2506
2507You can also combine filters. The various filtering commands push a
2508new filter onto the stack, and the filters combine to show just
2509buffers which satisfy ALL criteria on the stack. For example, suppose
2510you only want to see buffers in `emacs-lisp' mode, whose names begin
2511with \"gnus\". You can accomplish this via:
2512'\\[ibuffer-filter-by-mode] emacs-lisp-mode RET
2513\\[ibuffer-filter-by-name] ^gnus RET'.
2514
2515Additionally, you can OR the top two filters together with
2516'\\[ibuffer-or-filters]'. To see all buffers in either
2517`emacs-lisp-mode' or `lisp-interaction-mode', type:
2518
2519'\\[ibuffer-filter-by-mode] emacs-lisp-mode RET \\[ibuffer-filter-by-mode] lisp-interaction-mode RET \\[ibuffer-or-filters]'.
2520
2521Filters can also be saved and restored using mnemonic names: see the
2522functions `ibuffer-save-filters' and `ibuffer-switch-to-saved-filters'.
2523
2524To remove the top filter on the stack, use '\\[ibuffer-pop-filter]', and
2525to disable all filtering currently in effect, use
cba63a2d
CW
2526'\\[ibuffer-filter-disable]'.
2527
2528** Filter Groups:
2529
2530Once one has mastered filters, the next logical step up is \"filter
2531groups\". A filter group is basically a named group of buffers which
2532match a filter, which are displayed together in an Ibuffer buffer. To
2533create a filter group, simply use the regular functions to create a
2534filter, and then type '\\[ibuffer-filters-to-filter-group]'.
2535
2536A quick example will make things clearer. Suppose that one wants to
2537group all of one's Emacs Lisp buffers together. To do this, type
2538
2539'\\[ibuffer-filter-by-mode] emacs-lisp-mode RET \\[ibuffer-filters-to-filter-group] RET emacs lisp buffers RET'
2540
2541You may, of course, name the group whatever you want; it doesn't have
2542to be \"emacs lisp buffers\". Filter groups may be composed of any
2543arbitrary combination of filters.
2544
2545Just like filters themselves, filter groups act as a stack. Buffers
2546will not be displayed multiple times if they would be included in
2547multiple filter groups; instead, the first filter group is used. The
2548filter groups are displayed in this order of precedence.
2549
2550You may rearrange filter groups by using the regular
2551'\\[ibuffer-kill-line]' and '\\[ibuffer-yank]' pair. Yanked groups
2552will be inserted before the group at point."
25d2f683
CW
2553 (kill-all-local-variables)
2554 (use-local-map ibuffer-mode-map)
2555 (setq major-mode 'ibuffer-mode)
2556 (setq mode-name "Ibuffer")
23eabff6 2557 ;; Include state info next to the mode name.
e47b4224 2558 (set (make-local-variable 'mode-line-process)
56618a0a
SM
2559 '(" by "
2560 (ibuffer-sorting-mode (:eval (symbol-name ibuffer-sorting-mode))
23eabff6
SM
2561 "view time")
2562 (ibuffer-sorting-reversep " [rev]")
2563 (ibuffer-auto-mode " (Auto)")
2564 ;; Only list the filters if they're not already in the header-line.
2565 (header-line-format
2566 ""
2567 (:eval (if (functionp 'ibuffer-format-qualifier)
2568 (mapconcat 'ibuffer-format-qualifier
2569 ibuffer-filtering-qualifiers ""))))))
6d11a78b
SM
2570 ;; `ibuffer-update' puts this on header-line-format when needed.
2571 (setq ibuffer-header-line-format
2572 ;; Display the part that won't be in the mode-line.
2573 (list* "" mode-name
2574 (mapcar (lambda (elem)
2575 (if (eq (car-safe elem) 'header-line-format)
2576 (nth 2 elem) elem))
2577 mode-line-process)))
23eabff6 2578
25d2f683
CW
2579 (setq buffer-read-only t)
2580 (buffer-disable-undo)
3eda3649 2581 (setq truncate-lines ibuffer-truncate-lines)
25d2f683
CW
2582 ;; This makes things less ugly for Emacs 21 users with a non-nil
2583 ;; `show-trailing-whitespace'.
2584 (setq show-trailing-whitespace nil)
4ba16127
JPW
2585 ;; disable `show-paren-mode' buffer-locally
2586 (if (bound-and-true-p show-paren-mode)
2587 (set (make-local-variable 'show-paren-mode) nil))
25d2f683
CW
2588 (set (make-local-variable 'revert-buffer-function)
2589 #'ibuffer-update)
2590 (set (make-local-variable 'ibuffer-sorting-mode)
2591 ibuffer-default-sorting-mode)
2592 (set (make-local-variable 'ibuffer-sorting-reversep)
2593 ibuffer-default-sorting-reversep)
2594 (set (make-local-variable 'ibuffer-shrink-to-minimum-size)
2595 ibuffer-default-shrink-to-minimum-size)
957237cb
JPW
2596 (set (make-local-variable 'ibuffer-display-maybe-show-predicates)
2597 ibuffer-default-display-maybe-show-predicates)
25d2f683 2598 (set (make-local-variable 'ibuffer-filtering-qualifiers) nil)
cba63a2d
CW
2599 (set (make-local-variable 'ibuffer-filter-groups) nil)
2600 (set (make-local-variable 'ibuffer-filter-group-kill-ring) nil)
2601 (set (make-local-variable 'ibuffer-hidden-filter-groups) nil)
25d2f683
CW
2602 (set (make-local-variable 'ibuffer-compiled-formats) nil)
2603 (set (make-local-variable 'ibuffer-cached-formats) nil)
2604 (set (make-local-variable 'ibuffer-cached-eliding-string) nil)
2605 (set (make-local-variable 'ibuffer-cached-elide-long-columns) nil)
2606 (set (make-local-variable 'ibuffer-current-format) nil)
4ed1f829 2607 (set (make-local-variable 'ibuffer-restore-window-config-on-quit) nil)
25d2f683 2608 (set (make-local-variable 'ibuffer-did-modification) nil)
b5cd37ea
CW
2609 (set (make-local-variable 'ibuffer-tmp-hide-regexps) nil)
2610 (set (make-local-variable 'ibuffer-tmp-show-regexps) nil)
25d2f683
CW
2611 (define-key ibuffer-mode-map [menu-bar edit] 'undefined)
2612 (define-key ibuffer-mode-map [menu-bar operate] (cons "Operate" ibuffer-mode-operate-map))
2613 (ibuffer-update-format)
2614 (when ibuffer-default-directory
2615 (setq default-directory ibuffer-default-directory))
214fee7a 2616 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
23eabff6 2617 (run-mode-hooks 'ibuffer-mode-hook))
25d2f683 2618
45a68029
GM
2619\f
2620;;; Start of automatically extracted autoloads.
2621\f
2622;;;### (autoloads (ibuffer-do-occur ibuffer-mark-dired-buffers ibuffer-mark-read-only-buffers
2623;;;;;; ibuffer-mark-special-buffers ibuffer-mark-old-buffers ibuffer-mark-compressed-file-buffers
2624;;;;;; ibuffer-mark-help-buffers ibuffer-mark-dissociated-buffers
2625;;;;;; ibuffer-mark-unsaved-buffers ibuffer-mark-modified-buffers
2626;;;;;; ibuffer-mark-by-mode ibuffer-mark-by-file-name-regexp ibuffer-mark-by-mode-regexp
2627;;;;;; ibuffer-mark-by-name-regexp ibuffer-copy-filename-as-kill
2628;;;;;; ibuffer-diff-with-file ibuffer-jump-to-buffer ibuffer-do-kill-lines
2629;;;;;; ibuffer-backwards-next-marked ibuffer-forward-next-marked
2630;;;;;; ibuffer-add-to-tmp-show ibuffer-add-to-tmp-hide ibuffer-bs-show
2631;;;;;; ibuffer-invert-sorting ibuffer-toggle-sorting-mode ibuffer-switch-to-saved-filters
2632;;;;;; ibuffer-add-saved-filters ibuffer-delete-saved-filters ibuffer-save-filters
2633;;;;;; ibuffer-or-filter ibuffer-negate-filter ibuffer-exchange-filters
2634;;;;;; ibuffer-decompose-filter ibuffer-pop-filter ibuffer-filter-disable
2635;;;;;; ibuffer-switch-to-saved-filter-groups ibuffer-delete-saved-filter-groups
2636;;;;;; ibuffer-save-filter-groups ibuffer-yank-filter-group ibuffer-yank
2637;;;;;; ibuffer-kill-line ibuffer-kill-filter-group ibuffer-jump-to-filter-group
2638;;;;;; ibuffer-clear-filter-groups ibuffer-decompose-filter-group
2639;;;;;; ibuffer-pop-filter-group ibuffer-set-filter-groups-by-mode
2640;;;;;; ibuffer-filters-to-filter-group ibuffer-included-in-filters-p
2641;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group
2642;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group
2643;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode
d77b5977 2644;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" "4fb4f1a32cf4ecf4669a133a866f4a14")
45a68029
GM
2645;;; Generated autoloads from ibuf-ext.el
2646
2647(autoload 'ibuffer-auto-mode "ibuf-ext" "\
2648Toggle use of Ibuffer's auto-update facility.
2649With numeric ARG, enable auto-update if and only if ARG is positive.
2650
2651\(fn &optional ARG)" t nil)
2652
2653(autoload 'ibuffer-mouse-filter-by-mode "ibuf-ext" "\
2654Enable or disable filtering by the major mode chosen via mouse.
2655
2656\(fn EVENT)" t nil)
2657
2658(autoload 'ibuffer-interactive-filter-by-mode "ibuf-ext" "\
2659Enable or disable filtering by the major mode at point.
2660
2661\(fn EVENT-OR-POINT)" t nil)
2662
2663(autoload 'ibuffer-mouse-toggle-filter-group "ibuf-ext" "\
2664Toggle the display status of the filter group chosen with the mouse.
2665
2666\(fn EVENT)" t nil)
2667
2668(autoload 'ibuffer-toggle-filter-group "ibuf-ext" "\
2669Toggle the display status of the filter group on this line.
2670
2671\(fn)" t nil)
2672
2673(autoload 'ibuffer-forward-filter-group "ibuf-ext" "\
2674Move point forwards by COUNT filtering groups.
2675
2676\(fn &optional COUNT)" t nil)
2677
2678(autoload 'ibuffer-backward-filter-group "ibuf-ext" "\
2679Move point backwards by COUNT filtering groups.
2680
2681\(fn &optional COUNT)" t nil)
2682 (autoload 'ibuffer-do-shell-command-pipe "ibuf-ext")
2683 (autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext")
2684 (autoload 'ibuffer-do-shell-command-file "ibuf-ext")
2685 (autoload 'ibuffer-do-eval "ibuf-ext")
2686 (autoload 'ibuffer-do-view-and-eval "ibuf-ext")
2687 (autoload 'ibuffer-do-rename-uniquely "ibuf-ext")
2688 (autoload 'ibuffer-do-revert "ibuf-ext")
2689 (autoload 'ibuffer-do-isearch "ibuf-ext")
2690 (autoload 'ibuffer-do-isearch-regexp "ibuf-ext")
2691 (autoload 'ibuffer-do-replace-regexp "ibuf-ext")
2692 (autoload 'ibuffer-do-query-replace "ibuf-ext")
2693 (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext")
2694 (autoload 'ibuffer-do-print "ibuf-ext")
2695
2696(autoload 'ibuffer-included-in-filters-p "ibuf-ext" "\
2697Not documented
2698
2699\(fn BUF FILTERS)" nil nil)
2700
2701(autoload 'ibuffer-filters-to-filter-group "ibuf-ext" "\
2702Make the current filters into a filtering group.
2703
2704\(fn NAME)" t nil)
2705
2706(autoload 'ibuffer-set-filter-groups-by-mode "ibuf-ext" "\
2707Set the current filter groups to filter by mode.
2708
2709\(fn)" t nil)
2710
2711(autoload 'ibuffer-pop-filter-group "ibuf-ext" "\
2712Remove the first filter group.
2713
2714\(fn)" t nil)
2715
2716(autoload 'ibuffer-decompose-filter-group "ibuf-ext" "\
2717Decompose the filter group GROUP into active filters.
2718
2719\(fn GROUP)" t nil)
2720
2721(autoload 'ibuffer-clear-filter-groups "ibuf-ext" "\
2722Remove all filter groups.
2723
2724\(fn)" t nil)
2725
2726(autoload 'ibuffer-jump-to-filter-group "ibuf-ext" "\
2727Move point to the filter group whose name is NAME.
2728
2729\(fn NAME)" t nil)
2730
2731(autoload 'ibuffer-kill-filter-group "ibuf-ext" "\
2732Kill the filter group named NAME.
2733The group will be added to `ibuffer-filter-group-kill-ring'.
2734
2735\(fn NAME)" t nil)
2736
2737(autoload 'ibuffer-kill-line "ibuf-ext" "\
2738Kill the filter group at point.
2739See also `ibuffer-kill-filter-group'.
2740
2741\(fn &optional ARG INTERACTIVE-P)" t nil)
2742
2743(autoload 'ibuffer-yank "ibuf-ext" "\
2744Yank the last killed filter group before group at point.
2745
2746\(fn)" t nil)
2747
2748(autoload 'ibuffer-yank-filter-group "ibuf-ext" "\
2749Yank the last killed filter group before group named NAME.
2750
2751\(fn NAME)" t nil)
2752
2753(autoload 'ibuffer-save-filter-groups "ibuf-ext" "\
2754Save all active filter groups GROUPS as NAME.
2755They are added to `ibuffer-saved-filter-groups'. Interactively,
2756prompt for NAME, and use the current filters.
2757
2758\(fn NAME GROUPS)" t nil)
2759
2760(autoload 'ibuffer-delete-saved-filter-groups "ibuf-ext" "\
2761Delete saved filter groups with NAME.
2762They are removed from `ibuffer-saved-filter-groups'.
2763
2764\(fn NAME)" t nil)
2765
2766(autoload 'ibuffer-switch-to-saved-filter-groups "ibuf-ext" "\
2767Set this buffer's filter groups to saved version with NAME.
2768The value from `ibuffer-saved-filter-groups' is used.
2769
2770\(fn NAME)" t nil)
2771
2772(autoload 'ibuffer-filter-disable "ibuf-ext" "\
2773Disable all filters currently in effect in this buffer.
2774
2775\(fn)" t nil)
2776
2777(autoload 'ibuffer-pop-filter "ibuf-ext" "\
2778Remove the top filter in this buffer.
2779
2780\(fn)" t nil)
2781
2782(autoload 'ibuffer-decompose-filter "ibuf-ext" "\
2783Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
2784
2785This means that the topmost filter on the filtering stack, which must
2786be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
2787turned into two separate filters [name: foo] and [mode: bar-mode].
2788
2789\(fn)" t nil)
2790
2791(autoload 'ibuffer-exchange-filters "ibuf-ext" "\
2792Exchange the top two filters on the stack in this buffer.
2793
2794\(fn)" t nil)
2795
2796(autoload 'ibuffer-negate-filter "ibuf-ext" "\
2797Negate the sense of the top filter in the current buffer.
2798
2799\(fn)" t nil)
2800
2801(autoload 'ibuffer-or-filter "ibuf-ext" "\
2802Replace the top two filters in this buffer with their logical OR.
2803If optional argument REVERSE is non-nil, instead break the top OR
2804filter into parts.
2805
2806\(fn &optional REVERSE)" t nil)
2807
2808(autoload 'ibuffer-save-filters "ibuf-ext" "\
2809Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
2810Interactively, prompt for NAME, and use the current filters.
2811
2812\(fn NAME FILTERS)" t nil)
2813
2814(autoload 'ibuffer-delete-saved-filters "ibuf-ext" "\
2815Delete saved filters with NAME from `ibuffer-saved-filters'.
2816
2817\(fn NAME)" t nil)
2818
2819(autoload 'ibuffer-add-saved-filters "ibuf-ext" "\
2820Add saved filters from `ibuffer-saved-filters' to this buffer's filters.
2821
2822\(fn NAME)" t nil)
2823
2824(autoload 'ibuffer-switch-to-saved-filters "ibuf-ext" "\
2825Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'.
2826
2827\(fn NAME)" t nil)
2828 (autoload 'ibuffer-filter-by-mode "ibuf-ext")
2829 (autoload 'ibuffer-filter-by-used-mode "ibuf-ext")
2830 (autoload 'ibuffer-filter-by-name "ibuf-ext")
2831 (autoload 'ibuffer-filter-by-filename "ibuf-ext")
2832 (autoload 'ibuffer-filter-by-size-gt "ibuf-ext")
2833 (autoload 'ibuffer-filter-by-size-lt "ibuf-ext")
2834 (autoload 'ibuffer-filter-by-content "ibuf-ext")
2835 (autoload 'ibuffer-filter-by-predicate "ibuf-ext")
2836
2837(autoload 'ibuffer-toggle-sorting-mode "ibuf-ext" "\
2838Toggle the current sorting mode.
2839Default sorting modes are:
2840 Recency - the last time the buffer was viewed
2841 Name - the name of the buffer
2842 Major Mode - the name of the major mode of the buffer
2843 Size - the size of the buffer
2844
2845\(fn)" t nil)
2846
2847(autoload 'ibuffer-invert-sorting "ibuf-ext" "\
2848Toggle whether or not sorting is in reverse order.
2849
2850\(fn)" t nil)
2851 (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext")
2852 (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext")
2853 (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext")
2854 (autoload 'ibuffer-do-sort-by-size "ibuf-ext")
2855 (autoload 'ibuffer-do-sort-by-filename/process "ibuf-ext")
2856
2857(autoload 'ibuffer-bs-show "ibuf-ext" "\
2858Emulate `bs-show' from the bs.el package.
2859
2860\(fn)" t nil)
2861
2862(autoload 'ibuffer-add-to-tmp-hide "ibuf-ext" "\
2863Add REGEXP to `ibuffer-tmp-hide-regexps'.
2864This means that buffers whose name matches REGEXP will not be shown
2865for this Ibuffer session.
2866
2867\(fn REGEXP)" t nil)
2868
2869(autoload 'ibuffer-add-to-tmp-show "ibuf-ext" "\
2870Add REGEXP to `ibuffer-tmp-show-regexps'.
2871This means that buffers whose name matches REGEXP will always be shown
2872for this Ibuffer session.
2873
2874\(fn REGEXP)" t nil)
2875
2876(autoload 'ibuffer-forward-next-marked "ibuf-ext" "\
2877Move forward by COUNT marked buffers (default 1).
2878
2879If MARK is non-nil, it should be a character denoting the type of mark
2880to move by. The default is `ibuffer-marked-char'.
2881
2882If DIRECTION is non-nil, it should be an integer; negative integers
2883mean move backwards, non-negative integers mean move forwards.
2884
2885\(fn &optional COUNT MARK DIRECTION)" t nil)
2886
2887(autoload 'ibuffer-backwards-next-marked "ibuf-ext" "\
2888Move backwards by COUNT marked buffers (default 1).
2889
2890If MARK is non-nil, it should be a character denoting the type of mark
2891to move by. The default is `ibuffer-marked-char'.
2892
2893\(fn &optional COUNT MARK)" t nil)
2894
2895(autoload 'ibuffer-do-kill-lines "ibuf-ext" "\
2896Hide all of the currently marked lines.
2897
2898\(fn)" t nil)
2899
2900(autoload 'ibuffer-jump-to-buffer "ibuf-ext" "\
2901Move point to the buffer whose name is NAME.
2902
2903If called interactively, prompt for a buffer name and go to the
2904corresponding line in the Ibuffer buffer. If said buffer is in a
2905hidden group filter, open it.
2906
2907If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
2908visible buffers in the completion list. Calling the command with
2909a prefix argument reverses the meaning of that variable.
2910
2911\(fn NAME)" t nil)
2912
2913(autoload 'ibuffer-diff-with-file "ibuf-ext" "\
2914View the differences between marked buffers and their associated files.
2915If no buffers are marked, use buffer at point.
2916This requires the external program \"diff\" to be in your `exec-path'.
2917
2918\(fn)" t nil)
2919
2920(autoload 'ibuffer-copy-filename-as-kill "ibuf-ext" "\
2921Copy filenames of marked buffers into the kill ring.
2922
2923The names are separated by a space.
2924If a buffer has no filename, it is ignored.
2925
2926With no prefix arg, use the filename sans its directory of each marked file.
2927With a zero prefix arg, use the complete filename of each marked file.
2928With \\[universal-argument], use the filename of each marked file relative
2929to `ibuffer-default-directory' if non-nil, otherwise `default-directory'.
2930
2931You can then feed the file name(s) to other commands with \\[yank].
2932
2933\(fn &optional ARG)" t nil)
2934
2935(autoload 'ibuffer-mark-by-name-regexp "ibuf-ext" "\
2936Mark all buffers whose name matches REGEXP.
2937
2938\(fn REGEXP)" t nil)
2939
2940(autoload 'ibuffer-mark-by-mode-regexp "ibuf-ext" "\
2941Mark all buffers whose major mode matches REGEXP.
2942
2943\(fn REGEXP)" t nil)
2944
2945(autoload 'ibuffer-mark-by-file-name-regexp "ibuf-ext" "\
2946Mark all buffers whose file name matches REGEXP.
2947
2948\(fn REGEXP)" t nil)
2949
2950(autoload 'ibuffer-mark-by-mode "ibuf-ext" "\
2951Mark all buffers whose major mode equals MODE.
2952
2953\(fn MODE)" t nil)
2954
2955(autoload 'ibuffer-mark-modified-buffers "ibuf-ext" "\
2956Mark all modified buffers.
2957
2958\(fn)" t nil)
2959
2960(autoload 'ibuffer-mark-unsaved-buffers "ibuf-ext" "\
2961Mark all modified buffers that have an associated file.
2962
2963\(fn)" t nil)
2964
2965(autoload 'ibuffer-mark-dissociated-buffers "ibuf-ext" "\
2966Mark all buffers whose associated file does not exist.
2967
2968\(fn)" t nil)
2969
2970(autoload 'ibuffer-mark-help-buffers "ibuf-ext" "\
2971Mark buffers like *Help*, *Apropos*, *Info*.
2972
2973\(fn)" t nil)
2974
2975(autoload 'ibuffer-mark-compressed-file-buffers "ibuf-ext" "\
2976Mark buffers whose associated file is compressed.
2977
2978\(fn)" t nil)
2979
2980(autoload 'ibuffer-mark-old-buffers "ibuf-ext" "\
2981Mark buffers which have not been viewed in `ibuffer-old-time' hours.
2982
2983\(fn)" t nil)
2984
2985(autoload 'ibuffer-mark-special-buffers "ibuf-ext" "\
2986Mark all buffers whose name begins and ends with '*'.
2987
2988\(fn)" t nil)
2989
2990(autoload 'ibuffer-mark-read-only-buffers "ibuf-ext" "\
2991Mark all read-only buffers.
2992
2993\(fn)" t nil)
2994
2995(autoload 'ibuffer-mark-dired-buffers "ibuf-ext" "\
2996Mark all `dired' buffers.
2997
2998\(fn)" t nil)
2999
3000(autoload 'ibuffer-do-occur "ibuf-ext" "\
3001View lines which match REGEXP in all marked buffers.
3002Optional argument NLINES says how many lines of context to display: it
3003defaults to one.
3004
3005\(fn REGEXP &optional NLINES)" t nil)
3006
3007;;;***
3008\f
3009;;; End of automatically extracted autoloads.
3010
3011
25d2f683
CW
3012(provide 'ibuffer)
3013
4e4a724c
JPW
3014(run-hooks 'ibuffer-load-hook)
3015
25d2f683
CW
3016;; Local Variables:
3017;; coding: iso-8859-1
3018;; End:
3019
23eabff6 3020;; arch-tag: 72581688-0603-4954-b8cf-837c700f62e8
25d2f683 3021;;; ibuffer.el ends here