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