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