(HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
[bpt/emacs.git] / lisp / ibuf-ext.el
CommitLineData
4e4a724c 1;;; ibuf-ext.el --- extensions for ibuffer
25d2f683 2
0d30b337 3;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
409cc4a3 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
25d2f683
CW
5
6;; Author: Colin Walters <walters@verbum.org>
4e4a724c 7;; Maintainer: John Paul Wallington <jpw@gnu.org>
25d2f683 8;; Created: 2 Dec 2001
25d2f683
CW
9;; Keywords: buffer, convenience
10
365e1cfb 11;; This file is part of GNU Emacs.
25d2f683
CW
12
13;; This program is free software; you can redistribute it and/or
14;; modify it under the terms of the GNU General Public License as
b4aa6026 15;; published by the Free Software Foundation; either version 3, or (at
25d2f683
CW
16;; your option) any later version.
17
18;; This program is distributed in the hope that it will be useful, but
19;; WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21;; General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with this program ; see the file COPYING. If not, write to
086add15
LK
25;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26;; Boston, MA 02110-1301, USA.
25d2f683
CW
27
28;;; Commentary:
29
30;; These functions should be automatically loaded when called, but you
31;; can explicity (require 'ibuf-ext) in your ~/.emacs to have them
32;; preloaded.
33
34;;; Code:
35
36(require 'ibuffer)
37
38(eval-when-compile
25d2f683
CW
39 (require 'ibuf-macs)
40 (require 'cl))
41
42;;; Utility functions
43(defun ibuffer-delete-alist (key alist)
44 "Delete all entries in ALIST that have a key equal to KEY."
45 (let (entry)
46 (while (setq entry (assoc key alist))
47 (setq alist (delete entry alist)))
48 alist))
49
4ba16127
JPW
50;; borrowed from Gnus
51(defun ibuffer-remove-duplicates (list)
52 "Return a copy of LIST with duplicate elements removed."
53 (let ((new nil)
54 (tail list))
55 (while tail
56 (or (member (car tail) new)
57 (setq new (cons (car tail) new)))
58 (setq tail (cdr tail)))
59 (nreverse new)))
60
365e1cfb
CW
61(defun ibuffer-split-list (ibuffer-split-list-fn ibuffer-split-list-elts)
62 (let ((hip-crowd nil)
63 (lamers nil))
64 (dolist (ibuffer-split-list-elt ibuffer-split-list-elts)
4e4a724c 65 (if (funcall ibuffer-split-list-fn ibuffer-split-list-elt)
365e1cfb
CW
66 (push ibuffer-split-list-elt hip-crowd)
67 (push ibuffer-split-list-elt lamers)))
68 ;; Too bad Emacs Lisp doesn't have multiple values.
69 (list (nreverse hip-crowd) (nreverse lamers))))
70
25d2f683
CW
71(defcustom ibuffer-never-show-predicates nil
72 "A list of predicates (a regexp or function) for buffers not to display.
73If a regexp, then it will be matched against the buffer's name.
74If a function, it will be called with the buffer as an argument, and
75should return non-nil if this buffer should not be shown."
76 :type '(repeat (choice regexp function))
da63ece4 77 :require 'ibuf-ext
25d2f683
CW
78 :group 'ibuffer)
79
80(defcustom ibuffer-always-show-predicates nil
81 "A list of predicates (a regexp or function) for buffers to always display.
82If a regexp, then it will be matched against the buffer's name.
83If a function, it will be called with the buffer as an argument, and
84should return non-nil if this buffer should be shown.
85Note that buffers matching one of these predicates will be shown
86regardless of any active filters in this buffer."
87 :type '(repeat (choice regexp function))
88 :group 'ibuffer)
89
90(defvar ibuffer-tmp-hide-regexps nil
91 "A list of regexps which should match buffer names to not show.")
71296446 92
25d2f683
CW
93(defvar ibuffer-tmp-show-regexps nil
94 "A list of regexps which should match buffer names to always show.")
95
96(defvar ibuffer-auto-mode nil
97 "If non-nil, Ibuffer auto-mode should be enabled for this buffer.
98Do not set this variable directly! Use the function
99`ibuffer-auto-mode' instead.")
100
101(defvar ibuffer-auto-buffers-changed nil)
102
25d2f683
CW
103(defcustom ibuffer-saved-filters '(("gnus"
104 ((or (mode . message-mode)
105 (mode . mail-mode)
106 (mode . gnus-group-mode)
4e4a724c 107 (mode . gnus-summary-mode)
25d2f683
CW
108 (mode . gnus-article-mode))))
109 ("programming"
110 ((or (mode . emacs-lisp-mode)
111 (mode . cperl-mode)
112 (mode . c-mode)
4e4a724c 113 (mode . java-mode)
25d2f683
CW
114 (mode . idl-mode)
115 (mode . lisp-mode)))))
71296446 116
25d2f683
CW
117 "An alist of filter qualifiers to switch between.
118
119This variable should look like ((\"STRING\" QUALIFIERS)
120 (\"STRING\" QUALIFIERS) ...), where
121QUALIFIERS is a list of the same form as
122`ibuffer-filtering-qualifiers'.
123See also the variables `ibuffer-filtering-qualifiers',
124`ibuffer-filtering-alist', and the functions
125`ibuffer-switch-to-saved-filters', `ibuffer-save-filters'."
126 :type '(repeat sexp)
127 :group 'ibuffer)
128
129(defvar ibuffer-filtering-qualifiers nil
130 "A list like (SYMBOL . QUALIFIER) which filters the current buffer list.
131See also `ibuffer-filtering-alist'.")
132
133;; This is now frobbed by `define-ibuffer-filter'.
134(defvar ibuffer-filtering-alist nil
135 "An alist of (SYMBOL DESCRIPTION FUNCTION) which describes a filter.
136
137You most likely do not want to modify this variable directly; see
138`define-ibuffer-filter'.
139
140SYMBOL is the symbolic name of the filter. DESCRIPTION is used when
141displaying information to the user. FUNCTION is given a buffer and
142the value of the qualifier, and returns non-nil if and only if the
143buffer should be displayed.")
144
d98be487
CW
145(defcustom ibuffer-filter-format-alist nil
146 "An alist which has special formats used when a filter is active.
147The contents of this variable should look like:
148 ((FILTER (FORMAT FORMAT ...)) (FILTER (FORMAT FORMAT ...)) ...)
149
150For example, suppose that when you add a filter for buffers whose
151major mode is `emacs-lisp-mode', you only want to see the mark and the
152name of the buffer. You could accomplish that by adding:
153 (mode ((mark \" \" name)))
6d63dcf5
CW
154to this variable."
155 :type '(repeat (list :tag "Association" (symbol :tag "Filter")
156 (list :tag "Formats" (repeat (sexp :tag "Format")))))
157 :group 'ibuffer)
d98be487
CW
158
159(defvar ibuffer-cached-filter-formats nil)
4e4a724c 160(defvar ibuffer-compiled-filter-formats nil)
d98be487 161
05276226 162(defvar ibuffer-filter-groups nil
365e1cfb 163 "A list like ((\"NAME\" ((SYMBOL . QUALIFIER) ...) ...) which groups buffers.
05276226
CW
164The SYMBOL should be one from `ibuffer-filtering-alist'.
165The QUALIFIER should be the same as QUALIFIER in
166`ibuffer-filtering-qualifiers'.")
167
168(defcustom ibuffer-show-empty-filter-groups t
169 "If non-nil, then show the names of filter groups which are empty."
170 :type 'boolean
171 :group 'ibuffer)
172
fece59b8 173(defcustom ibuffer-saved-filter-groups nil
05276226
CW
174 "An alist of filtering groups to switch between.
175
176This variable should look like ((\"STRING\" QUALIFIERS)
177 (\"STRING\" QUALIFIERS) ...), where
178QUALIFIERS is a list of the same form as
179`ibuffer-filtering-qualifiers'.
180
181See also the variables `ibuffer-filter-groups',
182`ibuffer-filtering-qualifiers', `ibuffer-filtering-alist', and the
ecacd8b4
GM
183functions `ibuffer-switch-to-saved-filter-groups',
184`ibuffer-save-filter-groups'."
05276226
CW
185 :type '(repeat sexp)
186 :group 'ibuffer)
365e1cfb 187
05276226 188(defvar ibuffer-hidden-filter-groups nil
365e1cfb
CW
189 "A list of filtering groups which are currently hidden.")
190
05276226
CW
191(defvar ibuffer-filter-group-kill-ring nil)
192
2c1bb3d3
CW
193(defcustom ibuffer-old-time 72
194 "The number of hours before a buffer is considered \"old\"."
195 :type '(choice (const :tag "72 hours (3 days)" 72)
196 (const :tag "48 hours (2 days)" 48)
197 (const :tag "24 hours (1 day)" 24)
198 (integer :tag "hours"))
25d2f683
CW
199 :group 'ibuffer)
200
201(defcustom ibuffer-save-with-custom t
202 "If non-nil, then use Custom to save interactively changed variables.
05276226 203Currently, this only applies to `ibuffer-saved-filters' and
36a579c1 204`ibuffer-saved-filter-groups'."
25d2f683
CW
205 :type 'boolean
206 :group 'ibuffer)
207
208(defun ibuffer-ext-visible-p (buf all &optional ibuffer-buf)
209 (or
210 (ibuffer-buf-matches-predicates buf ibuffer-tmp-show-regexps)
211 (and (not
212 (or
213 (ibuffer-buf-matches-predicates buf ibuffer-tmp-hide-regexps)
214 (ibuffer-buf-matches-predicates buf ibuffer-never-show-predicates)))
215 (or all
216 (not
217 (ibuffer-buf-matches-predicates buf ibuffer-maybe-show-predicates)))
218 (or ibuffer-view-ibuffer
4e4a724c 219 (and ibuffer-buf
25d2f683
CW
220 (not (eq ibuffer-buf buf))))
221 (or
222 (ibuffer-included-in-filters-p buf ibuffer-filtering-qualifiers)
223 (ibuffer-buf-matches-predicates buf ibuffer-always-show-predicates)))))
224
225(defun ibuffer-auto-update-changed ()
f215a1b4 226 (when (frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed)
368851a5
JB
227 (dolist (buf (buffer-list))
228 (ignore-errors
229 (with-current-buffer buf
230 (when (and ibuffer-auto-mode
b5c49962 231 (derived-mode-p 'ibuffer-mode))
368851a5 232 (ibuffer-update nil t)))))))
25d2f683
CW
233
234;;;###autoload
235(defun ibuffer-auto-mode (&optional arg)
236 "Toggle use of Ibuffer's auto-update facility.
237With numeric ARG, enable auto-update if and only if ARG is positive."
238 (interactive)
b5c49962 239 (unless (derived-mode-p 'ibuffer-mode)
25d2f683
CW
240 (error "This buffer is not in Ibuffer mode"))
241 (set (make-local-variable 'ibuffer-auto-mode)
242 (if arg
243 (plusp arg)
244 (not ibuffer-auto-mode)))
368851a5 245 (frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed) ; Initialize state vector
b4e96cdb 246 (add-hook 'post-command-hook 'ibuffer-auto-update-changed))
25d2f683
CW
247
248;;;###autoload
249(defun ibuffer-mouse-filter-by-mode (event)
250 "Enable or disable filtering by the major mode chosen via mouse."
251 (interactive "e")
252 (ibuffer-interactive-filter-by-mode event))
253
254;;;###autoload
255(defun ibuffer-interactive-filter-by-mode (event-or-point)
256 "Enable or disable filtering by the major mode at point."
257 (interactive "d")
258 (if (eventp event-or-point)
1617bc07 259 (posn-set-point (event-end event-or-point))
25d2f683
CW
260 (goto-char event-or-point))
261 (let ((buf (ibuffer-current-buffer)))
262 (if (assq 'mode ibuffer-filtering-qualifiers)
263 (setq ibuffer-filtering-qualifiers
264 (ibuffer-delete-alist 'mode ibuffer-filtering-qualifiers))
4e4a724c 265 (ibuffer-push-filter (cons 'mode
25d2f683
CW
266 (with-current-buffer buf
267 major-mode)))))
268 (ibuffer-update nil t))
269
365e1cfb
CW
270;;;###autoload
271(defun ibuffer-mouse-toggle-filter-group (event)
272 "Toggle the display status of the filter group chosen with the mouse."
273 (interactive "e")
274 (ibuffer-toggle-filter-group-1 (save-excursion
275 (mouse-set-point event)
276 (point))))
277
278;;;###autoload
279(defun ibuffer-toggle-filter-group ()
280 "Toggle the display status of the filter group on this line."
4e4a724c 281 (interactive)
365e1cfb
CW
282 (ibuffer-toggle-filter-group-1 (point)))
283
4e4a724c 284(defun ibuffer-toggle-filter-group-1 (posn)
365e1cfb
CW
285 (let ((name (get-text-property posn 'ibuffer-filter-group-name)))
286 (unless (stringp name)
287 (error "No filtering group name present"))
05276226
CW
288 (if (member name ibuffer-hidden-filter-groups)
289 (setq ibuffer-hidden-filter-groups
290 (delete name ibuffer-hidden-filter-groups))
291 (push name ibuffer-hidden-filter-groups))
365e1cfb
CW
292 (ibuffer-update nil t)))
293
294;;;###autoload
295(defun ibuffer-forward-filter-group (&optional count)
296 "Move point forwards by COUNT filtering groups."
297 (interactive "P")
298 (unless count
299 (setq count 1))
300 (when (> count 0)
301 (when (get-text-property (point) 'ibuffer-filter-group-name)
302 (goto-char (next-single-property-change
303 (point) 'ibuffer-filter-group-name
304 nil (point-max))))
305 (goto-char (next-single-property-change
306 (point) 'ibuffer-filter-group-name
307 nil (point-max)))
308 (ibuffer-forward-filter-group (1- count)))
309 (ibuffer-forward-line 0))
310
311;;;###autoload
312(defun ibuffer-backward-filter-group (&optional count)
313 "Move point backwards by COUNT filtering groups."
314 (interactive "P")
315 (unless count
316 (setq count 1))
317 (when (> count 0)
318 (when (get-text-property (point) 'ibuffer-filter-group-name)
319 (goto-char (previous-single-property-change
320 (point) 'ibuffer-filter-group-name
321 nil (point-min))))
322 (goto-char (previous-single-property-change
323 (point) 'ibuffer-filter-group-name
324 nil (point-min)))
325 (ibuffer-backward-filter-group (1- count)))
326 (when (= (point) (point-min))
327 (goto-char (point-max))
328 (ibuffer-backward-filter-group 1))
329 (ibuffer-forward-line 0))
330
4fe3f297 331;;;###autoload (autoload 'ibuffer-do-shell-command-pipe "ibuf-ext")
25d2f683
CW
332(define-ibuffer-op shell-command-pipe (command)
333 "Pipe the contents of each marked buffer to shell command COMMAND."
334 (:interactive "sPipe to shell command: "
335 :opstring "Shell command executed on"
336 :modifier-p nil)
337 (shell-command-on-region
338 (point-min) (point-max) command
339 (get-buffer-create "* ibuffer-shell-output*")))
340
4fe3f297 341;;;###autoload (autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext")
25d2f683
CW
342(define-ibuffer-op shell-command-pipe-replace (command)
343 "Replace the contents of marked buffers with output of pipe to COMMAND."
344 (:interactive "sPipe to shell command (replace): "
345 :opstring "Buffer contents replaced in"
346 :active-opstring "replace buffer contents in"
347 :dangerous t
348 :modifier-p t)
349 (with-current-buffer buf
350 (shell-command-on-region (point-min) (point-max)
351 command nil t)))
352
4fe3f297 353;;;###autoload (autoload 'ibuffer-do-shell-command-file "ibuf-ext")
25d2f683
CW
354(define-ibuffer-op shell-command-file (command)
355 "Run shell command COMMAND separately on files of marked buffers."
356 (:interactive "sShell command on buffer's file: "
357 :opstring "Shell command executed on"
358 :modifier-p nil)
359 (shell-command (concat command " "
360 (shell-quote-argument
361 (if buffer-file-name
362 buffer-file-name
363 (make-temp-file
364 (substring (buffer-name) 0 (min 10 (length (buffer-name))))))))))
365e1cfb 365
4fe3f297 366;;;###autoload (autoload 'ibuffer-do-eval "ibuf-ext")
25d2f683
CW
367(define-ibuffer-op eval (form)
368 "Evaluate FORM in each of the buffers.
369Does not display the buffer during evaluation. See
370`ibuffer-do-view-and-eval' for that."
a0370ba4
JPW
371 (:interactive
372 (list
373 (read-from-minibuffer
374 "Eval in buffers (form): "
375 nil read-expression-map t 'read-expression-history))
25d2f683
CW
376 :opstring "evaluated in"
377 :modifier-p :maybe)
378 (eval form))
379
4fe3f297 380;;;###autoload (autoload 'ibuffer-do-view-and-eval "ibuf-ext")
25d2f683
CW
381(define-ibuffer-op view-and-eval (form)
382 "Evaluate FORM while displaying each of the marked buffers.
383To evaluate a form without viewing the buffer, see `ibuffer-do-eval'."
a0370ba4
JPW
384 (:interactive
385 (list
386 (read-from-minibuffer
387 "Eval viewing in buffers (form): "
388 nil read-expression-map t 'read-expression-history))
25d2f683
CW
389 :opstring "evaluated in"
390 :complex t
391 :modifier-p :maybe)
392 (let ((ibuffer-buf (current-buffer)))
393 (unwind-protect
394 (progn
395 (switch-to-buffer buf)
396 (eval form))
397 (switch-to-buffer ibuffer-buf))))
398
4fe3f297 399;;;###autoload (autoload 'ibuffer-do-rename-uniquely "ibuf-ext")
25d2f683
CW
400(define-ibuffer-op rename-uniquely ()
401 "Rename marked buffers as with `rename-uniquely'."
402 (:opstring "renamed"
403 :modifier-p t)
404 (rename-uniquely))
405
4fe3f297 406;;;###autoload (autoload 'ibuffer-do-revert "ibuf-ext")
25d2f683
CW
407(define-ibuffer-op revert ()
408 "Revert marked buffers as with `revert-buffer'."
409 (:dangerous t
410 :opstring "reverted"
411 :active-opstring "revert"
412 :modifier-p :maybe)
413 (revert-buffer t t))
414
4fe3f297 415;;;###autoload (autoload 'ibuffer-do-replace-regexp "ibuf-ext")
25d2f683
CW
416(define-ibuffer-op replace-regexp (from-str to-str)
417 "Perform a `replace-regexp' in marked buffers."
418 (:interactive
419 (let* ((from-str (read-from-minibuffer "Replace regexp: "))
420 (to-str (read-from-minibuffer (concat "Replace " from-str
421 " with: "))))
422 (list from-str to-str))
423 :opstring "replaced in"
424 :complex t
425 :modifier-p :maybe)
426 (save-window-excursion
427 (switch-to-buffer buf)
428 (save-excursion
429 (goto-char (point-min))
430 (let ((case-fold-search ibuffer-case-fold-search))
431 (while (re-search-forward from-str nil t)
432 (replace-match to-str))))
433 t))
434
4fe3f297 435;;;###autoload (autoload 'ibuffer-do-query-replace "ibuf-ext")
25d2f683
CW
436(define-ibuffer-op query-replace (&rest args)
437 "Perform a `query-replace' in marked buffers."
438 (:interactive
193f8525 439 (query-replace-read-args "Query replace" t t)
25d2f683
CW
440 :opstring "replaced in"
441 :complex t
442 :modifier-p :maybe)
443 (save-window-excursion
444 (switch-to-buffer buf)
445 (save-excursion
446 (let ((case-fold-search ibuffer-case-fold-search))
447 (goto-char (point-min))
448 (apply #'query-replace args)))
449 t))
450
4fe3f297 451;;;###autoload (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext")
25d2f683
CW
452(define-ibuffer-op query-replace-regexp (&rest args)
453 "Perform a `query-replace-regexp' in marked buffers."
454 (:interactive
193f8525 455 (query-replace-read-args "Query replace regexp" t t)
25d2f683
CW
456 :opstring "replaced in"
457 :complex t
458 :modifier-p :maybe)
459 (save-window-excursion
460 (switch-to-buffer buf)
461 (save-excursion
462 (let ((case-fold-search ibuffer-case-fold-search))
463 (goto-char (point-min))
464 (apply #'query-replace-regexp args)))
465 t))
466
4fe3f297 467;;;###autoload (autoload 'ibuffer-do-print "ibuf-ext")
25d2f683
CW
468(define-ibuffer-op print ()
469 "Print marked buffers as with `print-buffer'."
470 (:opstring "printed"
471 :modifier-p nil)
472 (print-buffer))
473
474;;;###autoload
475(defun ibuffer-included-in-filters-p (buf filters)
476 (not
477 (memq nil ;; a filter will return nil if it failed
478 (mapcar
479 ;; filter should be like (TYPE . QUALIFIER), or
480 ;; (or (TYPE . QUALIFIER) (TYPE . QUALIFIER) ...)
481 #'(lambda (qual)
482 (ibuffer-included-in-filter-p buf qual))
483 filters))))
484
485(defun ibuffer-included-in-filter-p (buf filter)
486 (if (eq (car filter) 'not)
487 (not (ibuffer-included-in-filter-p-1 buf (cdr filter)))
488 (ibuffer-included-in-filter-p-1 buf filter)))
489
490(defun ibuffer-included-in-filter-p-1 (buf filter)
491 (not
492 (not
493 (case (car filter)
494 (or
495 (memq t (mapcar #'(lambda (x)
496 (ibuffer-included-in-filter-p buf x))
497 (cdr filter))))
498 (saved
499 (let ((data
500 (assoc (cdr filter)
501 ibuffer-saved-filters)))
502 (unless data
503 (ibuffer-filter-disable)
504 (error "Unknown saved filter %s" (cdr filter)))
505 (ibuffer-included-in-filters-p buf (cadr data))))
506 (t
507 (let ((filterdat (assq (car filter)
508 ibuffer-filtering-alist)))
509 ;; filterdat should be like (TYPE DESCRIPTION FUNC)
510 ;; just a sanity check
511 (unless filterdat
512 (ibuffer-filter-disable)
513 (error "Undefined filter %s" (car filter)))
514 (not
515 (not
516 (funcall (caddr filterdat)
517 buf
518 (cdr filter))))))))))
519
fde057aa
RF
520(defun ibuffer-generate-filter-groups (bmarklist &optional noempty nodefault)
521 (let ((filter-group-alist (if nodefault
522 ibuffer-filter-groups
523 (append ibuffer-filter-groups
524 (list (cons "Default" nil))))))
05276226
CW
525;; (dolist (hidden ibuffer-hidden-filter-groups)
526;; (setq filter-group-alist (ibuffer-delete-alist
527;; hidden filter-group-alist)))
528 (let ((vec (make-vector (length filter-group-alist) nil))
365e1cfb 529 (i 0))
05276226 530 (dolist (filtergroup filter-group-alist)
365e1cfb
CW
531 (let ((filterset (cdr filtergroup)))
532 (multiple-value-bind (hip-crowd lamers)
533 (ibuffer-split-list (lambda (bufmark)
534 (ibuffer-included-in-filters-p (car bufmark)
535 filterset))
536 bmarklist)
537 (aset vec i hip-crowd)
538 (incf i)
539 (setq bmarklist lamers))))
fde057aa 540 (let (ret)
365e1cfb 541 (dotimes (j i ret)
fde057aa
RF
542 (let ((bufs (aref vec j)))
543 (unless (and noempty (null bufs))
544 (push (cons (car (nth j filter-group-alist))
545 bufs)
546 ret))))))))
365e1cfb
CW
547
548;;;###autoload
549(defun ibuffer-filters-to-filter-group (name)
550 "Make the current filters into a filtering group."
551 (interactive "sName for filtering group: ")
552 (when (null ibuffer-filtering-qualifiers)
553 (error "No filters in effect"))
05276226 554 (push (cons name ibuffer-filtering-qualifiers) ibuffer-filter-groups)
365e1cfb
CW
555 (ibuffer-filter-disable))
556
05276226
CW
557;;;###autoload
558(defun ibuffer-set-filter-groups-by-mode ()
559 "Set the current filter groups to filter by mode."
560 (interactive)
561 (setq ibuffer-filter-groups
b7f6c476
CW
562 (mapcar (lambda (mode)
563 (cons (format "%s" mode) `((mode . ,mode))))
564 (let ((modes
4ba16127 565 (ibuffer-remove-duplicates
20e192c0 566 (mapcar (lambda (buf)
2bf1ab74 567 (with-current-buffer buf major-mode))
b7f6c476
CW
568 (buffer-list)))))
569 (if ibuffer-view-ibuffer
570 modes
571 (delq 'ibuffer-mode modes)))))
05276226
CW
572 (ibuffer-update nil t))
573
365e1cfb
CW
574;;;###autoload
575(defun ibuffer-pop-filter-group ()
f189891b 576 "Remove the first filter group."
365e1cfb 577 (interactive)
05276226 578 (when (null ibuffer-filter-groups)
f189891b 579 (error "No filter groups active"))
b7f6c476
CW
580 (setq ibuffer-hidden-filter-groups
581 (delete (pop ibuffer-filter-groups)
582 ibuffer-hidden-filter-groups))
05276226
CW
583 (ibuffer-update nil t))
584
f189891b
CW
585(defun ibuffer-read-filter-group-name (msg &optional nodefault noerror)
586 (when (and (not noerror) (null ibuffer-filter-groups))
587 (error "No filter groups active"))
fde057aa
RF
588 ;; `ibuffer-generate-filter-groups' returns all non-hidden filter
589 ;; groups, possibly excluding empty groups or Default.
590 ;; We add `ibuffer-hidden-filter-groups' to the list, excluding
591 ;; Default if necessary.
592 (completing-read msg (nconc
593 (ibuffer-generate-filter-groups
594 (ibuffer-current-state-list)
595 (not ibuffer-show-empty-filter-groups)
596 nodefault)
597 (if nodefault
598 (remove "Default" ibuffer-hidden-filter-groups)
599 ibuffer-hidden-filter-groups))
600 nil t))
f189891b
CW
601
602;;;###autoload
603(defun ibuffer-decompose-filter-group (group)
604 "Decompose the filter group GROUP into active filters."
20e192c0 605 (interactive
2bf1ab74 606 (list (ibuffer-read-filter-group-name "Decompose filter group: " t)))
f189891b
CW
607 (let ((data (cdr (assoc group ibuffer-filter-groups))))
608 (setq ibuffer-filter-groups (ibuffer-delete-alist
609 group ibuffer-filter-groups)
610 ibuffer-filtering-qualifiers data))
611 (ibuffer-update nil t))
612
05276226
CW
613;;;###autoload
614(defun ibuffer-clear-filter-groups ()
f189891b 615 "Remove all filter groups."
05276226 616 (interactive)
b7f6c476
CW
617 (setq ibuffer-filter-groups nil
618 ibuffer-hidden-filter-groups nil)
365e1cfb
CW
619 (ibuffer-update nil t))
620
05276226
CW
621(defun ibuffer-current-filter-groups-with-position ()
622 (save-excursion
623 (goto-char (point-min))
624 (let ((pos nil)
625 (result nil))
626 (while (and (not (eobp))
627 (setq pos (next-single-property-change
628 (point) 'ibuffer-filter-group-name)))
629 (goto-char pos)
630 (push (cons (get-text-property (point) 'ibuffer-filter-group-name)
631 pos)
632 result)
633 (goto-char (next-single-property-change
634 pos 'ibuffer-filter-group-name)))
635 (nreverse result))))
636
365e1cfb
CW
637;;;###autoload
638(defun ibuffer-jump-to-filter-group (name)
639 "Move point to the filter group whose name is NAME."
20e192c0 640 (interactive
2bf1ab74 641 (list (ibuffer-read-filter-group-name "Jump to filter group: ")))
f189891b
CW
642 (ibuffer-aif (assoc name (ibuffer-current-filter-groups-with-position))
643 (goto-char (cdr it))
644 (error "No filter group with name %s" name)))
365e1cfb 645
05276226
CW
646;;;###autoload
647(defun ibuffer-kill-filter-group (name)
f189891b 648 "Kill the filter group named NAME.
c56a4f1f 649The group will be added to `ibuffer-filter-group-kill-ring'."
f189891b 650 (interactive (list (ibuffer-read-filter-group-name "Kill filter group: " t)))
c56a4f1f 651 (when (equal name "Default")
f189891b 652 (error "Can't kill default filter group"))
05276226 653 (ibuffer-aif (assoc name ibuffer-filter-groups)
b7f6c476 654 (progn
c56a4f1f 655 (push (copy-tree it) ibuffer-filter-group-kill-ring)
b7f6c476
CW
656 (setq ibuffer-filter-groups (ibuffer-delete-alist
657 name ibuffer-filter-groups))
658 (setq ibuffer-hidden-filter-groups
b6cee494 659 (delete name ibuffer-hidden-filter-groups)))
05276226
CW
660 (error "No filter group with name \"%s\"" name))
661 (ibuffer-update nil t))
662
663;;;###autoload
818f3c45 664(defun ibuffer-kill-line (&optional arg interactive-p)
f189891b 665 "Kill the filter group at point.
c56a4f1f 666See also `ibuffer-kill-filter-group'."
818f3c45 667 (interactive "P\np")
05276226
CW
668 (ibuffer-aif (save-excursion
669 (ibuffer-forward-line 0)
670 (get-text-property (point) 'ibuffer-filter-group-name))
671 (progn
05276226 672 (ibuffer-kill-filter-group it))
818f3c45 673 (funcall (if interactive-p #'call-interactively #'funcall)
05276226
CW
674 #'kill-line arg)))
675
c56a4f1f 676(defun ibuffer-insert-filter-group-before (newgroup group)
4ba16127
JPW
677 (let* ((found nil)
678 (pos (let ((groups (mapcar #'car ibuffer-filter-groups))
679 (res 0))
680 (while groups
681 (if (equal (car groups) group)
682 (setq found t
683 groups nil)
684 (incf res)
685 (setq groups (cdr groups))))
686 res)))
687 (cond ((not found)
2bf1ab74
JPW
688 (setq ibuffer-filter-groups
689 (nconc ibuffer-filter-groups (list newgroup))))
4ba16127
JPW
690 ((zerop pos)
691 (push newgroup ibuffer-filter-groups))
c56a4f1f
CW
692 (t
693 (let ((cell (nthcdr pos ibuffer-filter-groups)))
694 (setf (cdr cell) (cons (car cell) (cdr cell)))
695 (setf (car cell) newgroup))))))
696
05276226 697;;;###autoload
c56a4f1f
CW
698(defun ibuffer-yank ()
699 "Yank the last killed filter group before group at point."
700 (interactive)
701 (ibuffer-yank-filter-group
702 (or (get-text-property (point) 'ibuffer-filter-group-name)
703 (get-text-property (point) 'ibuffer-filter-group)
704 (error "No filter group at point"))))
705
706;;;###autoload
707(defun ibuffer-yank-filter-group (name)
708 "Yank the last killed filter group before group named NAME."
36df86d8
JPW
709 (interactive (list (ibuffer-read-filter-group-name
710 "Yank filter group before group: ")))
711 (unless ibuffer-filter-group-kill-ring
712 (error "The Ibuffer filter group kill-ring is empty"))
05276226
CW
713 (save-excursion
714 (ibuffer-forward-line 0)
c56a4f1f
CW
715 (ibuffer-insert-filter-group-before (pop ibuffer-filter-group-kill-ring)
716 name))
05276226
CW
717 (ibuffer-update nil t))
718
719;;;###autoload
4e4a724c 720(defun ibuffer-save-filter-groups (name groups)
05276226
CW
721 "Save all active filter groups GROUPS as NAME.
722They are added to `ibuffer-saved-filter-groups'. Interactively,
723prompt for NAME, and use the current filters."
724 (interactive
725 (if (null ibuffer-filter-groups)
726 (error "No filter groups active")
727 (list
728 (read-from-minibuffer "Save current filter groups as: ")
729 ibuffer-filter-groups)))
730 (ibuffer-aif (assoc name ibuffer-saved-filter-groups)
731 (setcdr it groups)
fece59b8 732 (push (cons name groups) ibuffer-saved-filter-groups))
05276226
CW
733 (ibuffer-maybe-save-stuff)
734 (ibuffer-update-mode-name))
735
736;;;###autoload
737(defun ibuffer-delete-saved-filter-groups (name)
738 "Delete saved filter groups with NAME.
739They are removed from `ibuffer-saved-filter-groups'."
740 (interactive
741 (list
742 (if (null ibuffer-saved-filter-groups)
b6cee494
CW
743 (error "No saved filter groups")
744 (completing-read "Delete saved filter group: "
05276226
CW
745 ibuffer-saved-filter-groups nil t))))
746 (setq ibuffer-saved-filter-groups
747 (ibuffer-delete-alist name ibuffer-saved-filter-groups))
748 (ibuffer-maybe-save-stuff)
749 (ibuffer-update nil t))
750
751;;;###autoload
752(defun ibuffer-switch-to-saved-filter-groups (name)
753 "Set this buffer's filter groups to saved version with NAME.
20e192c0 754The value from `ibuffer-saved-filter-groups' is used."
05276226
CW
755 (interactive
756 (list
757 (if (null ibuffer-saved-filter-groups)
758 (error "No saved filters")
759 (completing-read "Switch to saved filter group: "
760 ibuffer-saved-filter-groups nil t))))
b7f6c476
CW
761 (setq ibuffer-filter-groups (cdr (assoc name ibuffer-saved-filter-groups))
762 ibuffer-hidden-filter-groups nil)
05276226
CW
763 (ibuffer-update nil t))
764
25d2f683
CW
765;;;###autoload
766(defun ibuffer-filter-disable ()
767 "Disable all filters currently in effect in this buffer."
768 (interactive)
769 (setq ibuffer-filtering-qualifiers nil)
b8210c6e
JPW
770 (let ((buf (ibuffer-current-buffer)))
771 (ibuffer-update nil t)
772 (when buf
773 (ibuffer-jump-to-buffer (buffer-name buf)))))
25d2f683
CW
774
775;;;###autoload
776(defun ibuffer-pop-filter ()
777 "Remove the top filter in this buffer."
778 (interactive)
779 (when (null ibuffer-filtering-qualifiers)
780 (error "No filters in effect"))
781 (pop ibuffer-filtering-qualifiers)
b8210c6e
JPW
782 (let ((buf (ibuffer-current-buffer)))
783 (ibuffer-update nil t)
784 (when buf
785 (ibuffer-jump-to-buffer (buffer-name buf)))))
25d2f683
CW
786
787(defun ibuffer-push-filter (qualifier)
788 "Add QUALIFIER to `ibuffer-filtering-qualifiers'."
789 (push qualifier ibuffer-filtering-qualifiers))
790
791;;;###autoload
792(defun ibuffer-decompose-filter ()
793 "Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
794
795This means that the topmost filter on the filtering stack, which must
796be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
797turned into two separate filters [name: foo] and [mode: bar-mode]."
798 (interactive)
799 (when (null ibuffer-filtering-qualifiers)
4e4a724c 800 (error "No filters in effect"))
25d2f683
CW
801 (let ((lim (pop ibuffer-filtering-qualifiers)))
802 (case (car lim)
803 (or
804 (setq ibuffer-filtering-qualifiers (append
805 (cdr lim)
806 ibuffer-filtering-qualifiers)))
807 (saved
808 (let ((data
809 (assoc (cdr lim)
810 ibuffer-saved-filters)))
811 (unless data
812 (ibuffer-filter-disable)
813 (error "Unknown saved filter %s" (cdr lim)))
814 (setq ibuffer-filtering-qualifiers (append
815 (cadr data)
816 ibuffer-filtering-qualifiers))))
817 (not
818 (push (cdr lim)
819 ibuffer-filtering-qualifiers))
820 (t
821 (error "Filter type %s is not compound" (car lim)))))
822 (ibuffer-update nil t))
823
824;;;###autoload
825(defun ibuffer-exchange-filters ()
826 "Exchange the top two filters on the stack in this buffer."
827 (interactive)
828 (when (< (length ibuffer-filtering-qualifiers)
829 2)
830 (error "Need two filters to exchange"))
831 (let ((first (pop ibuffer-filtering-qualifiers))
832 (second (pop ibuffer-filtering-qualifiers)))
833 (push first ibuffer-filtering-qualifiers)
834 (push second ibuffer-filtering-qualifiers))
835 (ibuffer-update nil t))
836
837;;;###autoload
838(defun ibuffer-negate-filter ()
839 "Negate the sense of the top filter in the current buffer."
840 (interactive)
841 (when (null ibuffer-filtering-qualifiers)
842 (error "No filters in effect"))
843 (let ((lim (pop ibuffer-filtering-qualifiers)))
844 (push (if (eq (car lim) 'not)
845 (cdr lim)
846 (cons 'not lim))
847 ibuffer-filtering-qualifiers))
848 (ibuffer-update nil t))
849
850;;;###autoload
851(defun ibuffer-or-filter (&optional reverse)
852 "Replace the top two filters in this buffer with their logical OR.
853If optional argument REVERSE is non-nil, instead break the top OR
854filter into parts."
855 (interactive "P")
856 (if reverse
857 (progn
858 (when (or (null ibuffer-filtering-qualifiers)
859 (not (eq 'or (caar ibuffer-filtering-qualifiers))))
860 (error "Top filter is not an OR"))
861 (let ((lim (pop ibuffer-filtering-qualifiers)))
20e192c0 862 (setq ibuffer-filtering-qualifiers
2bf1ab74 863 (nconc (cdr lim) ibuffer-filtering-qualifiers))))
25d2f683
CW
864 (when (< (length ibuffer-filtering-qualifiers) 2)
865 (error "Need two filters to OR"))
866 ;; If the second filter is an OR, just add to it.
867 (let ((first (pop ibuffer-filtering-qualifiers))
868 (second (pop ibuffer-filtering-qualifiers)))
869 (if (eq 'or (car second))
2bf1ab74
JPW
870 (push (nconc (list 'or first) (cdr second))
871 ibuffer-filtering-qualifiers)
25d2f683
CW
872 (push (list 'or first second)
873 ibuffer-filtering-qualifiers))))
874 (ibuffer-update nil t))
875
05276226 876(defun ibuffer-maybe-save-stuff ()
25d2f683
CW
877 (when ibuffer-save-with-custom
878 (if (fboundp 'customize-save-variable)
879 (progn
880 (customize-save-variable 'ibuffer-saved-filters
05276226
CW
881 ibuffer-saved-filters)
882 (customize-save-variable 'ibuffer-saved-filter-groups
883 ibuffer-saved-filter-groups))
25d2f683
CW
884 (message "Not saved permanently: Customize not available"))))
885
886;;;###autoload
887(defun ibuffer-save-filters (name filters)
888 "Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
889Interactively, prompt for NAME, and use the current filters."
890 (interactive
891 (if (null ibuffer-filtering-qualifiers)
892 (error "No filters currently in effect")
893 (list
894 (read-from-minibuffer "Save current filters as: ")
895 ibuffer-filtering-qualifiers)))
896 (ibuffer-aif (assoc name ibuffer-saved-filters)
897 (setcdr it filters)
365e1cfb 898 (push (list name filters) ibuffer-saved-filters))
05276226 899 (ibuffer-maybe-save-stuff)
25d2f683
CW
900 (ibuffer-update-mode-name))
901
902;;;###autoload
903(defun ibuffer-delete-saved-filters (name)
904 "Delete saved filters with NAME from `ibuffer-saved-filters'."
905 (interactive
906 (list
907 (if (null ibuffer-saved-filters)
908 (error "No saved filters")
909 (completing-read "Delete saved filters: "
910 ibuffer-saved-filters nil t))))
911 (setq ibuffer-saved-filters
912 (ibuffer-delete-alist name ibuffer-saved-filters))
05276226 913 (ibuffer-maybe-save-stuff)
25d2f683
CW
914 (ibuffer-update nil t))
915
916;;;###autoload
917(defun ibuffer-add-saved-filters (name)
918 "Add saved filters from `ibuffer-saved-filters' to this buffer's filters."
919 (interactive
920 (list
921 (if (null ibuffer-saved-filters)
922 (error "No saved filters")
923 (completing-read "Add saved filters: "
924 ibuffer-saved-filters nil t))))
925 (push (cons 'saved name) ibuffer-filtering-qualifiers)
926 (ibuffer-update nil t))
927
928;;;###autoload
929(defun ibuffer-switch-to-saved-filters (name)
20e192c0 930 "Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'."
25d2f683
CW
931 (interactive
932 (list
933 (if (null ibuffer-saved-filters)
934 (error "No saved filters")
935 (completing-read "Switch to saved filters: "
936 ibuffer-saved-filters nil t))))
937 (setq ibuffer-filtering-qualifiers (list (cons 'saved name)))
938 (ibuffer-update nil t))
c1244745
CW
939
940(defun ibuffer-format-filter-group-data (filter)
941 (if (equal filter "Default")
942 ""
0aa1b02e
JPW
943 (concat "Filter:" (mapconcat #'ibuffer-format-qualifier
944 (cdr (assq filter ibuffer-filter-groups))
945 " "))))
71296446 946
25d2f683
CW
947(defun ibuffer-format-qualifier (qualifier)
948 (if (eq (car-safe qualifier) 'not)
949 (concat " [NOT" (ibuffer-format-qualifier-1 (cdr qualifier)) "]")
950 (ibuffer-format-qualifier-1 qualifier)))
951
952(defun ibuffer-format-qualifier-1 (qualifier)
953 (case (car qualifier)
954 (saved
955 (concat " [filter: " (cdr qualifier) "]"))
956 (or
957 (concat " [OR" (mapconcat #'ibuffer-format-qualifier
958 (cdr qualifier) "") "]"))
959 (t
960 (let ((type (assq (car qualifier) ibuffer-filtering-alist)))
961 (unless qualifier
962 (error "Ibuffer: bad qualifier %s" qualifier))
963 (concat " [" (cadr type) ": " (format "%s]" (cdr qualifier)))))))
71296446 964
0e1701c4
CW
965
966(defun ibuffer-list-buffer-modes ()
967 "Create an alist of buffer modes currently in use.
76f03778 968The list returned will be of the form (\"MODE-NAME\" . MODE-SYMBOL)."
0e1701c4
CW
969 (let ((bufs (buffer-list))
970 (modes)
971 (this-mode))
972 (while bufs
4e4a724c
JPW
973 (setq this-mode
974 (with-current-buffer
0e1701c4
CW
975 (car bufs)
976 major-mode)
977 bufs (cdr bufs))
4e4a724c 978 (add-to-list
0e1701c4 979 'modes
4e4a724c 980 `(,(symbol-name this-mode) .
0e1701c4 981 ,this-mode)))
4e4a724c 982 modes))
0e1701c4
CW
983
984
25d2f683
CW
985;;; Extra operation definitions
986
4fe3f297 987;;;###autoload (autoload 'ibuffer-filter-by-mode "ibuf-ext")
4e4a724c 988(define-ibuffer-filter mode
25d2f683
CW
989 "Toggle current view to buffers with major mode QUALIFIER."
990 (:description "major mode"
991 :reader
992 (intern
993 (completing-read "Filter by major mode: " obarray
994 #'(lambda (e)
995 (string-match "-mode$"
996 (symbol-name e)))
997 t
998 (let ((buf (ibuffer-current-buffer)))
999 (if (and buf (buffer-live-p buf))
1000 (with-current-buffer buf
1001 (symbol-name major-mode))
1002 "")))))
1003 (eq qualifier (with-current-buffer buf major-mode)))
1004
4fe3f297 1005;;;###autoload (autoload 'ibuffer-filter-by-used-mode "ibuf-ext")
4e4a724c 1006(define-ibuffer-filter used-mode
0e1701c4
CW
1007 "Toggle current view to buffers with major mode QUALIFIER.
1008Called interactively, this function allows selection of modes
1009currently used by buffers."
1010 (:description "major mode in use"
1011 :reader
4e4a724c
JPW
1012 (intern
1013 (completing-read "Filter by major mode: "
0e1701c4
CW
1014 (ibuffer-list-buffer-modes)
1015 nil
1016 t
1017 (let ((buf (ibuffer-current-buffer)))
1018 (if (and buf (buffer-live-p buf))
1019 (with-current-buffer buf
1020 (symbol-name major-mode))
1021 "")))))
1022 (eq qualifier (with-current-buffer buf major-mode)))
1023
4fe3f297 1024;;;###autoload (autoload 'ibuffer-filter-by-name "ibuf-ext")
4e4a724c 1025(define-ibuffer-filter name
25d2f683
CW
1026 "Toggle current view to buffers with name matching QUALIFIER."
1027 (:description "buffer name"
365e1cfb 1028 :reader (read-from-minibuffer "Filter by name (regexp): "))
25d2f683
CW
1029 (string-match qualifier (buffer-name buf)))
1030
4fe3f297 1031;;;###autoload (autoload 'ibuffer-filter-by-filename "ibuf-ext")
25d2f683
CW
1032(define-ibuffer-filter filename
1033 "Toggle current view to buffers with filename matching QUALIFIER."
1034 (:description "filename"
365e1cfb 1035 :reader (read-from-minibuffer "Filter by filename (regexp): "))
a386a960
JPW
1036 (ibuffer-awhen (with-current-buffer buf
1037 (or buffer-file-name
1038 (and (boundp 'dired-directory)
1c258d8c
JPW
1039 (let ((dired-dir
1040 (if (stringp dired-directory)
1041 dired-directory
1042 (car dired-directory))))
1043 (and dired-dir
1044 (expand-file-name dired-dir))))))
25d2f683
CW
1045 (string-match qualifier it)))
1046
4fe3f297 1047;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext")
4e4a724c 1048(define-ibuffer-filter size-gt
25d2f683
CW
1049 "Toggle current view to buffers with size greater than QUALIFIER."
1050 (:description "size greater than"
1051 :reader
1052 (string-to-number (read-from-minibuffer "Filter by size greater than: ")))
1053 (> (with-current-buffer buf (buffer-size))
1054 qualifier))
1055
4fe3f297 1056;;;###autoload (autoload 'ibuffer-filter-by-size-lt "ibuf-ext")
4e4a724c 1057(define-ibuffer-filter size-lt
25d2f683
CW
1058 "Toggle current view to buffers with size less than QUALIFIER."
1059 (:description "size less than"
1060 :reader
1061 (string-to-number (read-from-minibuffer "Filter by size less than: ")))
1062 (< (with-current-buffer buf (buffer-size))
1063 qualifier))
365e1cfb 1064
4fe3f297 1065;;;###autoload (autoload 'ibuffer-filter-by-content "ibuf-ext")
25d2f683
CW
1066(define-ibuffer-filter content
1067 "Toggle current view to buffers whose contents match QUALIFIER."
1068 (:description "content"
365e1cfb 1069 :reader (read-from-minibuffer "Filter by content (regexp): "))
25d2f683
CW
1070 (with-current-buffer buf
1071 (save-excursion
1072 (goto-char (point-min))
1073 (re-search-forward qualifier nil t))))
1074
4fe3f297 1075;;;###autoload (autoload 'ibuffer-filter-by-predicate "ibuf-ext")
25d2f683
CW
1076(define-ibuffer-filter predicate
1077 "Toggle current view to buffers for which QUALIFIER returns non-nil."
1078 (:description "predicate"
365e1cfb 1079 :reader (read-minibuffer "Filter by predicate (form): "))
25d2f683
CW
1080 (with-current-buffer buf
1081 (eval qualifier)))
1082
1083;;; Sorting
1084
1085;;;###autoload
1086(defun ibuffer-toggle-sorting-mode ()
1087 "Toggle the current sorting mode.
13e14c51 1088Default sorting modes are:
25d2f683
CW
1089 Recency - the last time the buffer was viewed
1090 Name - the name of the buffer
1091 Major Mode - the name of the major mode of the buffer
1092 Size - the size of the buffer"
1093 (interactive)
13e14c51
CW
1094 (let ((modes (mapcar 'car ibuffer-sorting-functions-alist)))
1095 (add-to-list 'modes 'recency)
1096 (setq modes (sort modes 'string-lessp))
1915493b 1097 (let ((next (or (car-safe (cdr-safe (memq ibuffer-sorting-mode modes)))
13e14c51
CW
1098 (car modes))))
1099 (setq ibuffer-sorting-mode next)
1100 (message "Sorting by %s" next)))
25d2f683
CW
1101 (ibuffer-redisplay t))
1102
1103;;;###autoload
1104(defun ibuffer-invert-sorting ()
1105 "Toggle whether or not sorting is in reverse order."
1106 (interactive)
1107 (setq ibuffer-sorting-reversep (not ibuffer-sorting-reversep))
1108 (message "Sorting order %s"
1109 (if ibuffer-sorting-reversep
1110 "reversed"
1111 "normal"))
1112 (ibuffer-redisplay t))
1113
4fe3f297 1114;;;###autoload (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext")
25d2f683
CW
1115(define-ibuffer-sorter major-mode
1116 "Sort the buffers by major modes.
1117Ordering is lexicographic."
1118 (:description "major mode")
1119 (string-lessp (downcase
1120 (symbol-name (with-current-buffer
1121 (car a)
1122 major-mode)))
1123 (downcase
1124 (symbol-name (with-current-buffer
1125 (car b)
1126 major-mode)))))
1127
4fe3f297 1128;;;###autoload (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext")
10cf9a43
CW
1129(define-ibuffer-sorter mode-name
1130 "Sort the buffers by their mode name.
1131Ordering is lexicographic."
0fcbf8d6 1132 (:description "major mode name")
10cf9a43 1133 (string-lessp (downcase
1915493b
CW
1134 (with-current-buffer
1135 (car a)
9dfee9c2 1136 (format-mode-line mode-name)))
10cf9a43 1137 (downcase
1915493b
CW
1138 (with-current-buffer
1139 (car b)
9dfee9c2 1140 (format-mode-line mode-name)))))
10cf9a43 1141
4fe3f297 1142;;;###autoload (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext")
25d2f683
CW
1143(define-ibuffer-sorter alphabetic
1144 "Sort the buffers by their names.
1145Ordering is lexicographic."
1146 (:description "buffer name")
1147 (string-lessp
1148 (buffer-name (car a))
1149 (buffer-name (car b))))
1150
4fe3f297 1151;;;###autoload (autoload 'ibuffer-do-sort-by-size "ibuf-ext")
25d2f683
CW
1152(define-ibuffer-sorter size
1153 "Sort the buffers by their size."
1154 (:description "size")
1155 (< (with-current-buffer (car a)
1156 (buffer-size))
1157 (with-current-buffer (car b)
1158 (buffer-size))))
1159
1160;;; Functions to emulate bs.el
1161
1162;;;###autoload
1163(defun ibuffer-bs-show ()
1164 "Emulate `bs-show' from the bs.el package."
1165 (interactive)
1166 (ibuffer t "*Ibuffer-bs*" '((filename . ".*")) nil t)
1167 (define-key (current-local-map) "a" 'ibuffer-bs-toggle-all))
1168
1169(defun ibuffer-bs-toggle-all ()
1170 "Emulate `bs-toggle-show-all' from the bs.el package."
1171 (interactive)
1172 (if ibuffer-filtering-qualifiers
1173 (ibuffer-pop-filter)
1174 (progn (ibuffer-push-filter '(filename . ".*"))
1175 (ibuffer-update nil t))))
1176
1177;;; Handy functions
1178
1179;;;###autoload
1180(defun ibuffer-add-to-tmp-hide (regexp)
1181 "Add REGEXP to `ibuffer-tmp-hide-regexps'.
1182This means that buffers whose name matches REGEXP will not be shown
36a579c1 1183for this Ibuffer session."
25d2f683
CW
1184 (interactive
1185 (list
1186 (read-from-minibuffer "Never show buffers matching: "
1187 (regexp-quote (buffer-name (ibuffer-current-buffer t))))))
1188 (push regexp ibuffer-tmp-hide-regexps))
1189
1190;;;###autoload
1191(defun ibuffer-add-to-tmp-show (regexp)
1192 "Add REGEXP to `ibuffer-tmp-show-regexps'.
1193This means that buffers whose name matches REGEXP will always be shown
36a579c1 1194for this Ibuffer session."
25d2f683
CW
1195 (interactive
1196 (list
1197 (read-from-minibuffer "Always show buffers matching: "
1198 (regexp-quote (buffer-name (ibuffer-current-buffer t))))))
1199 (push regexp ibuffer-tmp-show-regexps))
1200
1201;;;###autoload
1202(defun ibuffer-forward-next-marked (&optional count mark direction)
1203 "Move forward by COUNT marked buffers (default 1).
1204
1205If MARK is non-nil, it should be a character denoting the type of mark
1206to move by. The default is `ibuffer-marked-char'.
1207
1208If DIRECTION is non-nil, it should be an integer; negative integers
1209mean move backwards, non-negative integers mean move forwards."
1210 (interactive "P")
1211 (unless count
1212 (setq count 1))
1213 (unless mark
1214 (setq mark ibuffer-marked-char))
1215 (unless direction
1216 (setq direction 1))
1217 ;; Skip the title
1218 (ibuffer-forward-line 0)
1219 (let ((opos (point))
1220 curmark)
1221 (ibuffer-forward-line direction)
1222 (while (not (or (= (point) opos)
1223 (eq (setq curmark (ibuffer-current-mark))
1224 mark)))
1225 (ibuffer-forward-line direction))
1226 (when (and (= (point) opos)
1227 (not (eq (ibuffer-current-mark) mark)))
1228 (error "No buffers with mark %c" mark))))
1229
1230;;;###autoload
1231(defun ibuffer-backwards-next-marked (&optional count mark)
1232 "Move backwards by COUNT marked buffers (default 1).
1233
1234If MARK is non-nil, it should be a character denoting the type of mark
1235to move by. The default is `ibuffer-marked-char'."
1236 (interactive "P")
1237 (ibuffer-forward-next-marked count mark -1))
1238
1239;;;###autoload
1240(defun ibuffer-do-kill-lines ()
1241 "Hide all of the currently marked lines."
1242 (interactive)
1243 (if (= (ibuffer-count-marked-lines) 0)
1244 (message "No buffers marked; use 'm' to mark a buffer")
1245 (let ((count
1246 (ibuffer-map-marked-lines
bde57911 1247 #'(lambda (buf mark)
25d2f683
CW
1248 'kill))))
1249 (message "Killed %s lines" count))))
1250
1251;;;###autoload
1252(defun ibuffer-jump-to-buffer (name)
0bdd7ae4
JPW
1253 "Move point to the buffer whose name is NAME.
1254
1255If called interactively, prompt for a buffer name and go to the
1256corresponding line in the Ibuffer buffer. If said buffer is in a
1257hidden group filter, open it.
1258
1259If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
1260visible buffers in the completion list. Calling the command with
1261a prefix argument reverses the meaning of that variable."
33a584e6
JPW
1262 (interactive (list
1263 (let ((only-visible ibuffer-jump-offer-only-visible-buffers))
1264 (when current-prefix-arg
1265 (setq only-visible (not only-visible)))
1266 (if only-visible
1267 (let ((table (mapcar #'(lambda (x)
1268 (buffer-name (car x)))
1269 (ibuffer-current-state-list))))
1270 (when (null table)
1271 (error "No buffers!"))
1272 (completing-read "Jump to buffer: "
1273 table nil t))
1274 (read-buffer "Jump to buffer: " nil t)))))
1275 (when (not (string= "" name))
1276 (let (buf-point)
1277 ;; Blindly search for our buffer: it is very likely that it is
1278 ;; not in a hidden filter group.
1279 (ibuffer-map-lines #'(lambda (buf marks)
1280 (when (string= (buffer-name buf) name)
1281 (setq buf-point (point))
1282 nil))
1283 t nil)
1284 (when (and
1285 (null buf-point)
1286 (not (null ibuffer-hidden-filter-groups)))
1287 ;; We did not find our buffer. It must be in a hidden filter
1288 ;; group, so go through all hidden filter groups to find it.
1289 (catch 'found
1290 (dolist (group ibuffer-hidden-filter-groups)
1291 (ibuffer-jump-to-filter-group group)
1292 (ibuffer-toggle-filter-group)
1293 (ibuffer-map-lines #'(lambda (buf marks)
1294 (when (string= (buffer-name buf) name)
1295 (setq buf-point (point))
1296 nil))
1297 t group)
1298 (if buf-point
1299 (throw 'found nil)
1300 (ibuffer-toggle-filter-group)))))
1301 (if (null buf-point)
1302 ;; Still not found even though we expanded all hidden filter
1303 ;; groups: that must be because it's hidden by predicate:
1304 ;; we won't bother trying to display it.
1305 (error "No buffer with name %s" name)
1306 (goto-char buf-point)))))
25d2f683
CW
1307
1308;;;###autoload
1309(defun ibuffer-diff-with-file ()
1310 "View the differences between this buffer and its associated file.
1311This requires the external program \"diff\" to be in your `exec-path'."
1312 (interactive)
125c1081 1313 (let ((buf (ibuffer-current-buffer)))
25d2f683
CW
1314 (unless (buffer-live-p buf)
1315 (error "Buffer %s has been killed" buf))
125c1081 1316 (diff-buffer-with-file buf)))
25d2f683
CW
1317
1318;;;###autoload
1319(defun ibuffer-copy-filename-as-kill (&optional arg)
1320 "Copy filenames of marked buffers into the kill ring.
4e4a724c 1321
25d2f683
CW
1322The names are separated by a space.
1323If a buffer has no filename, it is ignored.
25d2f683 1324
4e4a724c
JPW
1325With no prefix arg, use the filename sans its directory of each marked file.
1326With a zero prefix arg, use the complete filename of each marked file.
1327With \\[universal-argument], use the filename of each marked file relative
4837b516 1328to `ibuffer-default-directory' if non-nil, otherwise `default-directory'.
25d2f683 1329
4e4a724c
JPW
1330You can then feed the file name(s) to other commands with \\[yank]."
1331 (interactive "p")
1332 (if (zerop (ibuffer-count-marked-lines))
25d2f683
CW
1333 (message "No buffers marked; use 'm' to mark a buffer")
1334 (let ((ibuffer-copy-filename-as-kill-result "")
4e4a724c 1335 (type (cond ((zerop arg)
25d2f683 1336 'full)
4e4a724c
JPW
1337 ((= arg 4)
1338 'relative)
25d2f683
CW
1339 (t
1340 'name))))
1341 (ibuffer-map-marked-lines
bde57911 1342 #'(lambda (buf mark)
25d2f683
CW
1343 (setq ibuffer-copy-filename-as-kill-result
1344 (concat ibuffer-copy-filename-as-kill-result
1345 (let ((name (buffer-file-name buf)))
1346 (if name
1347 (case type
1348 (full
1349 name)
4e4a724c
JPW
1350 (relative
1351 (file-relative-name
1352 name (or ibuffer-default-directory
1353 default-directory)))
25d2f683
CW
1354 (t
1355 (file-name-nondirectory name)))
1356 ""))
1357 " "))))
4e4a724c 1358 (kill-new ibuffer-copy-filename-as-kill-result))))
25d2f683 1359
05276226 1360(defun ibuffer-mark-on-buffer (func &optional ibuffer-mark-on-buffer-mark group)
25d2f683
CW
1361 (let ((count
1362 (ibuffer-map-lines
bde57911 1363 #'(lambda (buf mark)
25d2f683 1364 (when (funcall func buf)
05276226
CW
1365 (ibuffer-set-mark-1 (or ibuffer-mark-on-buffer-mark
1366 ibuffer-marked-char))
1367 t))
1368 nil
1369 group)))
25d2f683
CW
1370 (ibuffer-redisplay t)
1371 (message "Marked %s buffers" count)))
1372
1373;;;###autoload
1374(defun ibuffer-mark-by-name-regexp (regexp)
1375 "Mark all buffers whose name matches REGEXP."
1376 (interactive "sMark by name (regexp): ")
1377 (ibuffer-mark-on-buffer
1378 #'(lambda (buf)
1379 (string-match regexp (buffer-name buf)))))
1380
1381;;;###autoload
1382(defun ibuffer-mark-by-mode-regexp (regexp)
1383 "Mark all buffers whose major mode matches REGEXP."
1384 (interactive "sMark by major mode (regexp): ")
1385 (ibuffer-mark-on-buffer
1386 #'(lambda (buf)
1387 (with-current-buffer buf
b5c49962 1388 (string-match regexp (format-mode-line mode-name nil nil buf))))))
25d2f683
CW
1389
1390;;;###autoload
1391(defun ibuffer-mark-by-file-name-regexp (regexp)
1392 "Mark all buffers whose file name matches REGEXP."
1393 (interactive "sMark by file name (regexp): ")
1394 (ibuffer-mark-on-buffer
1395 #'(lambda (buf)
1396 (let ((name (or (buffer-file-name buf)
1397 (with-current-buffer buf
1398 (and
1399 (boundp 'dired-directory)
1400 (stringp dired-directory)
1401 dired-directory)))))
1402 (when name
1403 (string-match regexp name))))))
1404
1405;;;###autoload
1406(defun ibuffer-mark-by-mode (mode)
1407 "Mark all buffers whose major mode equals MODE."
1408 (interactive
1409 (list (intern (completing-read "Mark by major mode: " obarray
1410 #'(lambda (e)
1411 ;; kind of a hack...
1412 (and (fboundp e)
1413 (string-match "-mode$"
1414 (symbol-name e))))
1415 t
1416 (let ((buf (ibuffer-current-buffer)))
1417 (if (and buf (buffer-live-p buf))
1418 (with-current-buffer buf
1419 (cons (symbol-name major-mode)
1420 0))
1421 ""))))))
1422 (ibuffer-mark-on-buffer
1423 #'(lambda (buf)
1424 (with-current-buffer buf
1425 (eq major-mode mode)))))
1426
1427;;;###autoload
1428(defun ibuffer-mark-modified-buffers ()
1429 "Mark all modified buffers."
1430 (interactive)
1431 (ibuffer-mark-on-buffer
1432 #'(lambda (buf) (buffer-modified-p buf))))
1433
1434;;;###autoload
1435(defun ibuffer-mark-unsaved-buffers ()
1436 "Mark all modified buffers that have an associated file."
1437 (interactive)
1438 (ibuffer-mark-on-buffer
1439 #'(lambda (buf) (and (with-current-buffer buf buffer-file-name)
1440 (buffer-modified-p buf)))))
1441
1442;;;###autoload
1443(defun ibuffer-mark-dissociated-buffers ()
1444 "Mark all buffers whose associated file does not exist."
1445 (interactive)
1446 (ibuffer-mark-on-buffer
1447 #'(lambda (buf)
1448 (with-current-buffer buf
1449 (or
1450 (and buffer-file-name
1451 (not (file-exists-p buffer-file-name)))
1452 (and (eq major-mode 'dired-mode)
1453 (boundp 'dired-directory)
1454 (stringp dired-directory)
1455 (not (file-exists-p (file-name-directory dired-directory)))))))))
1456
1457;;;###autoload
1458(defun ibuffer-mark-help-buffers ()
1459 "Mark buffers like *Help*, *Apropos*, *Info*."
1460 (interactive)
1461 (ibuffer-mark-on-buffer
1462 #'(lambda (buf)
1463 (with-current-buffer buf
0fcbf8d6 1464 (memq major-mode ibuffer-help-buffer-modes)))))
25d2f683 1465
4b9ae390
JPW
1466;;;###autoload
1467(defun ibuffer-mark-compressed-file-buffers ()
1468 "Mark buffers whose associated file is compressed."
1469 (interactive)
1470 (ibuffer-mark-on-buffer
1471 #'(lambda (buf)
1472 (with-current-buffer buf
1473 (and buffer-file-name
1474 (string-match ibuffer-compressed-file-name-regexp
1475 buffer-file-name))))))
1476
25d2f683
CW
1477;;;###autoload
1478(defun ibuffer-mark-old-buffers ()
67de6223 1479 "Mark buffers which have not been viewed in `ibuffer-old-time' hours."
25d2f683
CW
1480 (interactive)
1481 (ibuffer-mark-on-buffer
1482 #'(lambda (buf)
1483 (with-current-buffer buf
1484 ;; hacked from midnight.el
1485 (when buffer-display-time
1486 (let* ((tm (current-time))
1487 (now (+ (* (float (ash 1 16)) (car tm))
1488 (float (cadr tm)) (* 0.0000001 (caddr tm))))
1489 (then (+ (* (float (ash 1 16))
1490 (car buffer-display-time))
1491 (float (cadr buffer-display-time))
1492 (* 0.0000001 (caddr buffer-display-time)))))
2c1bb3d3 1493 (> (- now then) (* 60 60 ibuffer-old-time))))))))
25d2f683
CW
1494
1495;;;###autoload
1496(defun ibuffer-mark-special-buffers ()
1497 "Mark all buffers whose name begins and ends with '*'."
1498 (interactive)
1499 (ibuffer-mark-on-buffer
1500 #'(lambda (buf) (string-match "^\\*.+\\*$"
1501 (buffer-name buf)))))
1502
1503;;;###autoload
1504(defun ibuffer-mark-read-only-buffers ()
1505 "Mark all read-only buffers."
1506 (interactive)
1507 (ibuffer-mark-on-buffer
1508 #'(lambda (buf)
1509 (with-current-buffer buf
1510 buffer-read-only))))
1511
1512;;;###autoload
1513(defun ibuffer-mark-dired-buffers ()
1514 "Mark all `dired' buffers."
1515 (interactive)
1516 (ibuffer-mark-on-buffer
1517 #'(lambda (buf)
1518 (with-current-buffer buf
1519 (eq major-mode 'dired-mode)))))
1520
25d2f683
CW
1521;;;###autoload
1522(defun ibuffer-do-occur (regexp &optional nlines)
1523 "View lines which match REGEXP in all marked buffers.
1524Optional argument NLINES says how many lines of context to display: it
1525defaults to one."
365e1cfb 1526 (interactive (occur-read-primary-args))
25d2f683
CW
1527 (if (or (not (integerp nlines))
1528 (< nlines 0))
c33cdcc5 1529 (setq nlines 0))
25d2f683 1530 (when (zerop (ibuffer-count-marked-lines))
10cf9a43 1531 (ibuffer-set-mark ibuffer-marked-char))
25d2f683
CW
1532 (let ((ibuffer-do-occur-bufs nil))
1533 ;; Accumulate a list of marked buffers
1534 (ibuffer-map-marked-lines
bde57911 1535 #'(lambda (buf mark)
25d2f683 1536 (push buf ibuffer-do-occur-bufs)))
c06bd65e 1537 (occur-1 regexp nlines ibuffer-do-occur-bufs)))
25d2f683
CW
1538
1539(provide 'ibuf-ext)
1540
b5c49962 1541;; arch-tag: 9af21953-deda-4c30-b76d-f81d9128e76d
25d2f683 1542;;; ibuf-ext.el ends here