*** 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
544 (mapcar (lambda (mode)
545 (cons (format "%s" mode) `((mode . ,mode))))
546 (delete-duplicates
547 (mapcar (lambda (buf) (with-current-buffer buf major-mode))
548 (buffer-list)))))
549 (ibuffer-update nil t))
550
365e1cfb
CW
551;;;###autoload
552(defun ibuffer-pop-filter-group ()
553 "Remove the first filtering group."
554 (interactive)
05276226 555 (when (null ibuffer-filter-groups)
365e1cfb 556 (error "No filtering groups active"))
05276226
CW
557 (pop ibuffer-filter-groups)
558 (ibuffer-update nil t))
559
560;;;###autoload
561(defun ibuffer-clear-filter-groups ()
562 "Remove all filtering groups."
563 (interactive)
564 (setq ibuffer-filter-groups nil)
365e1cfb
CW
565 (ibuffer-update nil t))
566
05276226
CW
567(defun ibuffer-current-filter-groups-with-position ()
568 (save-excursion
569 (goto-char (point-min))
570 (let ((pos nil)
571 (result nil))
572 (while (and (not (eobp))
573 (setq pos (next-single-property-change
574 (point) 'ibuffer-filter-group-name)))
575 (goto-char pos)
576 (push (cons (get-text-property (point) 'ibuffer-filter-group-name)
577 pos)
578 result)
579 (goto-char (next-single-property-change
580 pos 'ibuffer-filter-group-name)))
581 (nreverse result))))
582
365e1cfb
CW
583;;;###autoload
584(defun ibuffer-jump-to-filter-group (name)
585 "Move point to the filter group whose name is NAME."
586 (interactive (list nil))
05276226 587 (let ((table (ibuffer-current-filter-groups-with-position)))
365e1cfb
CW
588 (when (interactive-p)
589 (setq name (completing-read "Jump to filter group: " table nil t)))
590 (ibuffer-aif (assoc name table)
591 (goto-char (cdr it))
592 (error "No filter group with name %s" name))))
593
05276226
CW
594;;;###autoload
595(defun ibuffer-kill-filter-group (name)
596 "Delete the filtering group named NAME."
597 (interactive (list nil))
598 (when (interactive-p)
599 (setq name (completing-read "Kill filter group: "
600 ibuffer-filter-groups nil t)))
601 (ibuffer-aif (assoc name ibuffer-filter-groups)
602 (setq ibuffer-filter-groups (ibuffer-delete-alist
603 name ibuffer-filter-groups))
604 (error "No filter group with name \"%s\"" name))
605 (ibuffer-update nil t))
606
607;;;###autoload
608(defun ibuffer-kill-line (&optional arg)
609 (interactive "P")
610 (ibuffer-aif (save-excursion
611 (ibuffer-forward-line 0)
612 (get-text-property (point) 'ibuffer-filter-group-name))
613 (progn
614 (when (equal it "Default")
615 (error "Can't kill default filtering group"))
616 (push (assoc it ibuffer-filter-groups) ibuffer-filter-group-kill-ring)
617 (ibuffer-kill-filter-group it))
618 (funcall (if (interactive-p) #'call-interactively #'funcall)
619 #'kill-line arg)))
620
621;;;###autoload
622(defun ibuffer-yank (&optional arg)
623 (interactive "P")
624 (unless ibuffer-filter-group-kill-ring
625 (error "ibuffer-filter-group-kill-ring is empty"))
626 (save-excursion
627 (ibuffer-forward-line 0)
628 (let* ((last-killed (pop ibuffer-filter-group-kill-ring))
629 (all-groups ibuffer-filter-groups)
630 (cur (or (get-text-property (point) 'ibuffer-filter-group-name)
631 (get-text-property (point) 'ibuffer-filter-group)
632 (last all-groups)))
633 (pos (or (position cur (mapcar #'car all-groups) :test #'equal)
634 (1- (length all-groups)))))
635 (cond ((= pos 0)
636 (push last-killed ibuffer-filter-groups))
637 ((= pos (1- (length all-groups)))
fece59b8
CW
638 (setq ibuffer-filter-groups
639 (nconc ibuffer-filter-groups (list last-killed))))
05276226
CW
640 (t
641 (let ((cell (nthcdr pos ibuffer-filter-groups)))
642 (setf (cdr cell) (cons (car cell) (cdr cell)))
643 (setf (car cell) last-killed))))))
644 (ibuffer-update nil t))
645
646;;;###autoload
647(defun ibuffer-save-filter-groups (name groups)
648 "Save all active filter groups GROUPS as NAME.
649They are added to `ibuffer-saved-filter-groups'. Interactively,
650prompt for NAME, and use the current filters."
651 (interactive
652 (if (null ibuffer-filter-groups)
653 (error "No filter groups active")
654 (list
655 (read-from-minibuffer "Save current filter groups as: ")
656 ibuffer-filter-groups)))
657 (ibuffer-aif (assoc name ibuffer-saved-filter-groups)
658 (setcdr it groups)
fece59b8 659 (push (cons name groups) ibuffer-saved-filter-groups))
05276226
CW
660 (ibuffer-maybe-save-stuff)
661 (ibuffer-update-mode-name))
662
663;;;###autoload
664(defun ibuffer-delete-saved-filter-groups (name)
665 "Delete saved filter groups with NAME.
666They are removed from `ibuffer-saved-filter-groups'."
667 (interactive
668 (list
669 (if (null ibuffer-saved-filter-groups)
670 (error "No saved filters")
671 (completing-read "Delete saved filters: "
672 ibuffer-saved-filter-groups nil t))))
673 (setq ibuffer-saved-filter-groups
674 (ibuffer-delete-alist name ibuffer-saved-filter-groups))
675 (ibuffer-maybe-save-stuff)
676 (ibuffer-update nil t))
677
678;;;###autoload
679(defun ibuffer-switch-to-saved-filter-groups (name)
680 "Set this buffer's filter groups to saved version with NAME.
681The value from `ibuffer-saved-filters' is used.
682If prefix argument ADD is non-nil, then add the saved filters instead
683of replacing the current filters."
684 (interactive
685 (list
686 (if (null ibuffer-saved-filter-groups)
687 (error "No saved filters")
688 (completing-read "Switch to saved filter group: "
689 ibuffer-saved-filter-groups nil t))))
fece59b8 690 (setq ibuffer-filter-groups (cdr (assoc name ibuffer-saved-filter-groups)))
05276226
CW
691 (ibuffer-update nil t))
692
25d2f683
CW
693;;;###autoload
694(defun ibuffer-filter-disable ()
695 "Disable all filters currently in effect in this buffer."
696 (interactive)
697 (setq ibuffer-filtering-qualifiers nil)
698 (ibuffer-update nil t))
699
700;;;###autoload
701(defun ibuffer-pop-filter ()
702 "Remove the top filter in this buffer."
703 (interactive)
704 (when (null ibuffer-filtering-qualifiers)
705 (error "No filters in effect"))
706 (pop ibuffer-filtering-qualifiers)
707 (ibuffer-update nil t))
708
709(defun ibuffer-push-filter (qualifier)
710 "Add QUALIFIER to `ibuffer-filtering-qualifiers'."
711 (push qualifier ibuffer-filtering-qualifiers))
712
713;;;###autoload
714(defun ibuffer-decompose-filter ()
715 "Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
716
717This means that the topmost filter on the filtering stack, which must
718be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
719turned into two separate filters [name: foo] and [mode: bar-mode]."
720 (interactive)
721 (when (null ibuffer-filtering-qualifiers)
722 (error "No filters in effect"))
723 (let ((lim (pop ibuffer-filtering-qualifiers)))
724 (case (car lim)
725 (or
726 (setq ibuffer-filtering-qualifiers (append
727 (cdr lim)
728 ibuffer-filtering-qualifiers)))
729 (saved
730 (let ((data
731 (assoc (cdr lim)
732 ibuffer-saved-filters)))
733 (unless data
734 (ibuffer-filter-disable)
735 (error "Unknown saved filter %s" (cdr lim)))
736 (setq ibuffer-filtering-qualifiers (append
737 (cadr data)
738 ibuffer-filtering-qualifiers))))
739 (not
740 (push (cdr lim)
741 ibuffer-filtering-qualifiers))
742 (t
743 (error "Filter type %s is not compound" (car lim)))))
744 (ibuffer-update nil t))
745
746;;;###autoload
747(defun ibuffer-exchange-filters ()
748 "Exchange the top two filters on the stack in this buffer."
749 (interactive)
750 (when (< (length ibuffer-filtering-qualifiers)
751 2)
752 (error "Need two filters to exchange"))
753 (let ((first (pop ibuffer-filtering-qualifiers))
754 (second (pop ibuffer-filtering-qualifiers)))
755 (push first ibuffer-filtering-qualifiers)
756 (push second ibuffer-filtering-qualifiers))
757 (ibuffer-update nil t))
758
759;;;###autoload
760(defun ibuffer-negate-filter ()
761 "Negate the sense of the top filter in the current buffer."
762 (interactive)
763 (when (null ibuffer-filtering-qualifiers)
764 (error "No filters in effect"))
765 (let ((lim (pop ibuffer-filtering-qualifiers)))
766 (push (if (eq (car lim) 'not)
767 (cdr lim)
768 (cons 'not lim))
769 ibuffer-filtering-qualifiers))
770 (ibuffer-update nil t))
771
772;;;###autoload
773(defun ibuffer-or-filter (&optional reverse)
774 "Replace the top two filters in this buffer with their logical OR.
775If optional argument REVERSE is non-nil, instead break the top OR
776filter into parts."
777 (interactive "P")
778 (if reverse
779 (progn
780 (when (or (null ibuffer-filtering-qualifiers)
781 (not (eq 'or (caar ibuffer-filtering-qualifiers))))
782 (error "Top filter is not an OR"))
783 (let ((lim (pop ibuffer-filtering-qualifiers)))
784 (setq ibuffer-filtering-qualifiers (nconc (cdr lim) ibuffer-filtering-qualifiers))))
785 (when (< (length ibuffer-filtering-qualifiers) 2)
786 (error "Need two filters to OR"))
787 ;; If the second filter is an OR, just add to it.
788 (let ((first (pop ibuffer-filtering-qualifiers))
789 (second (pop ibuffer-filtering-qualifiers)))
790 (if (eq 'or (car second))
791 (push (nconc (list 'or first) (cdr second)) ibuffer-filtering-qualifiers)
792 (push (list 'or first second)
793 ibuffer-filtering-qualifiers))))
794 (ibuffer-update nil t))
795
05276226 796(defun ibuffer-maybe-save-stuff ()
25d2f683
CW
797 (when ibuffer-save-with-custom
798 (if (fboundp 'customize-save-variable)
799 (progn
800 (customize-save-variable 'ibuffer-saved-filters
05276226
CW
801 ibuffer-saved-filters)
802 (customize-save-variable 'ibuffer-saved-filter-groups
803 ibuffer-saved-filter-groups))
25d2f683
CW
804 (message "Not saved permanently: Customize not available"))))
805
806;;;###autoload
807(defun ibuffer-save-filters (name filters)
808 "Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
809Interactively, prompt for NAME, and use the current filters."
810 (interactive
811 (if (null ibuffer-filtering-qualifiers)
812 (error "No filters currently in effect")
813 (list
814 (read-from-minibuffer "Save current filters as: ")
815 ibuffer-filtering-qualifiers)))
816 (ibuffer-aif (assoc name ibuffer-saved-filters)
817 (setcdr it filters)
365e1cfb 818 (push (list name filters) ibuffer-saved-filters))
05276226 819 (ibuffer-maybe-save-stuff)
25d2f683
CW
820 (ibuffer-update-mode-name))
821
822;;;###autoload
823(defun ibuffer-delete-saved-filters (name)
824 "Delete saved filters with NAME from `ibuffer-saved-filters'."
825 (interactive
826 (list
827 (if (null ibuffer-saved-filters)
828 (error "No saved filters")
829 (completing-read "Delete saved filters: "
830 ibuffer-saved-filters nil t))))
831 (setq ibuffer-saved-filters
832 (ibuffer-delete-alist name ibuffer-saved-filters))
05276226 833 (ibuffer-maybe-save-stuff)
25d2f683
CW
834 (ibuffer-update nil t))
835
836;;;###autoload
837(defun ibuffer-add-saved-filters (name)
838 "Add saved filters from `ibuffer-saved-filters' to this buffer's filters."
839 (interactive
840 (list
841 (if (null ibuffer-saved-filters)
842 (error "No saved filters")
843 (completing-read "Add saved filters: "
844 ibuffer-saved-filters nil t))))
845 (push (cons 'saved name) ibuffer-filtering-qualifiers)
846 (ibuffer-update nil t))
847
848;;;###autoload
849(defun ibuffer-switch-to-saved-filters (name)
850 "Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'.
851If prefix argument ADD is non-nil, then add the saved filters instead
852of replacing the current filters."
853 (interactive
854 (list
855 (if (null ibuffer-saved-filters)
856 (error "No saved filters")
857 (completing-read "Switch to saved filters: "
858 ibuffer-saved-filters nil t))))
859 (setq ibuffer-filtering-qualifiers (list (cons 'saved name)))
860 (ibuffer-update nil t))
861
862(defun ibuffer-format-qualifier (qualifier)
863 (if (eq (car-safe qualifier) 'not)
864 (concat " [NOT" (ibuffer-format-qualifier-1 (cdr qualifier)) "]")
865 (ibuffer-format-qualifier-1 qualifier)))
866
867(defun ibuffer-format-qualifier-1 (qualifier)
868 (case (car qualifier)
869 (saved
870 (concat " [filter: " (cdr qualifier) "]"))
871 (or
872 (concat " [OR" (mapconcat #'ibuffer-format-qualifier
873 (cdr qualifier) "") "]"))
874 (t
875 (let ((type (assq (car qualifier) ibuffer-filtering-alist)))
876 (unless qualifier
877 (error "Ibuffer: bad qualifier %s" qualifier))
878 (concat " [" (cadr type) ": " (format "%s]" (cdr qualifier)))))))
879
880;;; Extra operation definitions
881
365e1cfb 882;;;###autoload (autoload 'ibuffer-filter-by-mode "ibuf-ext.el")
25d2f683
CW
883(define-ibuffer-filter mode
884 "Toggle current view to buffers with major mode QUALIFIER."
885 (:description "major mode"
886 :reader
887 (intern
888 (completing-read "Filter by major mode: " obarray
889 #'(lambda (e)
890 (string-match "-mode$"
891 (symbol-name e)))
892 t
893 (let ((buf (ibuffer-current-buffer)))
894 (if (and buf (buffer-live-p buf))
895 (with-current-buffer buf
896 (symbol-name major-mode))
897 "")))))
898 (eq qualifier (with-current-buffer buf major-mode)))
899
365e1cfb 900;;;###autoload (autoload 'ibuffer-filter-by-name "ibuf-ext.el")
25d2f683
CW
901(define-ibuffer-filter name
902 "Toggle current view to buffers with name matching QUALIFIER."
903 (:description "buffer name"
365e1cfb 904 :reader (read-from-minibuffer "Filter by name (regexp): "))
25d2f683
CW
905 (string-match qualifier (buffer-name buf)))
906
365e1cfb 907;;;###autoload (autoload 'ibuffer-filter-by-filename "ibuf-ext.el")
25d2f683
CW
908(define-ibuffer-filter filename
909 "Toggle current view to buffers with filename matching QUALIFIER."
910 (:description "filename"
365e1cfb 911 :reader (read-from-minibuffer "Filter by filename (regexp): "))
25d2f683
CW
912 (ibuffer-awhen (buffer-file-name buf)
913 (string-match qualifier it)))
914
365e1cfb 915;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext.el")
25d2f683
CW
916(define-ibuffer-filter size-gt
917 "Toggle current view to buffers with size greater than QUALIFIER."
918 (:description "size greater than"
919 :reader
920 (string-to-number (read-from-minibuffer "Filter by size greater than: ")))
921 (> (with-current-buffer buf (buffer-size))
922 qualifier))
923
365e1cfb 924;;;###autoload (autoload 'ibuffer-filter-by-size-lt "ibuf-ext.el")
25d2f683
CW
925(define-ibuffer-filter size-lt
926 "Toggle current view to buffers with size less than QUALIFIER."
927 (:description "size less than"
928 :reader
929 (string-to-number (read-from-minibuffer "Filter by size less than: ")))
930 (< (with-current-buffer buf (buffer-size))
931 qualifier))
365e1cfb
CW
932
933;;;###autoload (autoload 'ibuffer-filter-by-content "ibuf-ext.el")
25d2f683
CW
934(define-ibuffer-filter content
935 "Toggle current view to buffers whose contents match QUALIFIER."
936 (:description "content"
365e1cfb 937 :reader (read-from-minibuffer "Filter by content (regexp): "))
25d2f683
CW
938 (with-current-buffer buf
939 (save-excursion
940 (goto-char (point-min))
941 (re-search-forward qualifier nil t))))
942
365e1cfb 943;;;###autoload (autoload 'ibuffer-filter-by-predicate "ibuf-ext.el")
25d2f683
CW
944(define-ibuffer-filter predicate
945 "Toggle current view to buffers for which QUALIFIER returns non-nil."
946 (:description "predicate"
365e1cfb 947 :reader (read-minibuffer "Filter by predicate (form): "))
25d2f683
CW
948 (with-current-buffer buf
949 (eval qualifier)))
950
951;;; Sorting
952
953;;;###autoload
954(defun ibuffer-toggle-sorting-mode ()
955 "Toggle the current sorting mode.
13e14c51 956Default sorting modes are:
25d2f683
CW
957 Recency - the last time the buffer was viewed
958 Name - the name of the buffer
959 Major Mode - the name of the major mode of the buffer
960 Size - the size of the buffer"
961 (interactive)
13e14c51
CW
962 (let ((modes (mapcar 'car ibuffer-sorting-functions-alist)))
963 (add-to-list 'modes 'recency)
964 (setq modes (sort modes 'string-lessp))
1915493b 965 (let ((next (or (car-safe (cdr-safe (memq ibuffer-sorting-mode modes)))
13e14c51
CW
966 (car modes))))
967 (setq ibuffer-sorting-mode next)
968 (message "Sorting by %s" next)))
25d2f683
CW
969 (ibuffer-redisplay t))
970
971;;;###autoload
972(defun ibuffer-invert-sorting ()
973 "Toggle whether or not sorting is in reverse order."
974 (interactive)
975 (setq ibuffer-sorting-reversep (not ibuffer-sorting-reversep))
976 (message "Sorting order %s"
977 (if ibuffer-sorting-reversep
978 "reversed"
979 "normal"))
980 (ibuffer-redisplay t))
981
365e1cfb 982;;;###autoload (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext.el")
25d2f683
CW
983(define-ibuffer-sorter major-mode
984 "Sort the buffers by major modes.
985Ordering is lexicographic."
986 (:description "major mode")
987 (string-lessp (downcase
988 (symbol-name (with-current-buffer
989 (car a)
990 major-mode)))
991 (downcase
992 (symbol-name (with-current-buffer
993 (car b)
994 major-mode)))))
995
365e1cfb 996;;;###autoload (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext.el")
10cf9a43
CW
997(define-ibuffer-sorter mode-name
998 "Sort the buffers by their mode name.
999Ordering is lexicographic."
0fcbf8d6 1000 (:description "major mode name")
10cf9a43 1001 (string-lessp (downcase
1915493b
CW
1002 (with-current-buffer
1003 (car a)
1004 mode-name))
10cf9a43 1005 (downcase
1915493b
CW
1006 (with-current-buffer
1007 (car b)
1008 mode-name))))
10cf9a43 1009
365e1cfb 1010;;;###autoload (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext.el")
25d2f683
CW
1011(define-ibuffer-sorter alphabetic
1012 "Sort the buffers by their names.
1013Ordering is lexicographic."
1014 (:description "buffer name")
1015 (string-lessp
1016 (buffer-name (car a))
1017 (buffer-name (car b))))
1018
365e1cfb 1019;;;###autoload (autoload 'ibuffer-do-sort-by-size "ibuf-ext.el")
25d2f683
CW
1020(define-ibuffer-sorter size
1021 "Sort the buffers by their size."
1022 (:description "size")
1023 (< (with-current-buffer (car a)
1024 (buffer-size))
1025 (with-current-buffer (car b)
1026 (buffer-size))))
1027
1028;;; Functions to emulate bs.el
1029
1030;;;###autoload
1031(defun ibuffer-bs-show ()
1032 "Emulate `bs-show' from the bs.el package."
1033 (interactive)
1034 (ibuffer t "*Ibuffer-bs*" '((filename . ".*")) nil t)
1035 (define-key (current-local-map) "a" 'ibuffer-bs-toggle-all))
1036
1037(defun ibuffer-bs-toggle-all ()
1038 "Emulate `bs-toggle-show-all' from the bs.el package."
1039 (interactive)
1040 (if ibuffer-filtering-qualifiers
1041 (ibuffer-pop-filter)
1042 (progn (ibuffer-push-filter '(filename . ".*"))
1043 (ibuffer-update nil t))))
1044
1045;;; Handy functions
1046
1047;;;###autoload
1048(defun ibuffer-add-to-tmp-hide (regexp)
1049 "Add REGEXP to `ibuffer-tmp-hide-regexps'.
1050This means that buffers whose name matches REGEXP will not be shown
1051for this ibuffer session."
1052 (interactive
1053 (list
1054 (read-from-minibuffer "Never show buffers matching: "
1055 (regexp-quote (buffer-name (ibuffer-current-buffer t))))))
1056 (push regexp ibuffer-tmp-hide-regexps))
1057
1058;;;###autoload
1059(defun ibuffer-add-to-tmp-show (regexp)
1060 "Add REGEXP to `ibuffer-tmp-show-regexps'.
1061This means that buffers whose name matches REGEXP will always be shown
1062for this ibuffer session."
1063 (interactive
1064 (list
1065 (read-from-minibuffer "Always show buffers matching: "
1066 (regexp-quote (buffer-name (ibuffer-current-buffer t))))))
1067 (push regexp ibuffer-tmp-show-regexps))
1068
1069;;;###autoload
1070(defun ibuffer-forward-next-marked (&optional count mark direction)
1071 "Move forward by COUNT marked buffers (default 1).
1072
1073If MARK is non-nil, it should be a character denoting the type of mark
1074to move by. The default is `ibuffer-marked-char'.
1075
1076If DIRECTION is non-nil, it should be an integer; negative integers
1077mean move backwards, non-negative integers mean move forwards."
1078 (interactive "P")
1079 (unless count
1080 (setq count 1))
1081 (unless mark
1082 (setq mark ibuffer-marked-char))
1083 (unless direction
1084 (setq direction 1))
1085 ;; Skip the title
1086 (ibuffer-forward-line 0)
1087 (let ((opos (point))
1088 curmark)
1089 (ibuffer-forward-line direction)
1090 (while (not (or (= (point) opos)
1091 (eq (setq curmark (ibuffer-current-mark))
1092 mark)))
1093 (ibuffer-forward-line direction))
1094 (when (and (= (point) opos)
1095 (not (eq (ibuffer-current-mark) mark)))
1096 (error "No buffers with mark %c" mark))))
1097
1098;;;###autoload
1099(defun ibuffer-backwards-next-marked (&optional count mark)
1100 "Move backwards by COUNT marked buffers (default 1).
1101
1102If MARK is non-nil, it should be a character denoting the type of mark
1103to move by. The default is `ibuffer-marked-char'."
1104 (interactive "P")
1105 (ibuffer-forward-next-marked count mark -1))
1106
1107;;;###autoload
1108(defun ibuffer-do-kill-lines ()
1109 "Hide all of the currently marked lines."
1110 (interactive)
1111 (if (= (ibuffer-count-marked-lines) 0)
1112 (message "No buffers marked; use 'm' to mark a buffer")
1113 (let ((count
1114 (ibuffer-map-marked-lines
bde57911 1115 #'(lambda (buf mark)
25d2f683
CW
1116 'kill))))
1117 (message "Killed %s lines" count))))
1118
1119;;;###autoload
1120(defun ibuffer-jump-to-buffer (name)
1121 "Move point to the buffer whose name is NAME."
1122 (interactive (list nil))
1123 (let ((table (mapcar #'(lambda (x)
1124 (cons (buffer-name (car x))
1125 (caddr x)))
1126 (ibuffer-current-state-list t))))
1127 (when (null table)
1128 (error "No buffers!"))
1129 (when (interactive-p)
1130 (setq name (completing-read "Jump to buffer: " table nil t)))
1131 (ibuffer-aif (assoc name table)
1132 (goto-char (cdr it))
1133 (error "No buffer with name %s" name))))
1134
1135;;;###autoload
1136(defun ibuffer-diff-with-file ()
1137 "View the differences between this buffer and its associated file.
1138This requires the external program \"diff\" to be in your `exec-path'."
1139 (interactive)
1140 (let* ((buf (ibuffer-current-buffer))
1141 (buf-filename (with-current-buffer buf
1142 buffer-file-name)))
1143 (unless (buffer-live-p buf)
1144 (error "Buffer %s has been killed" buf))
1145 (unless buf-filename
1146 (error "Buffer %s has no associated file" buf))
1147 (let ((diff-buf (get-buffer-create "*Ibuffer-diff*")))
1148 (with-current-buffer diff-buf
1149 (setq buffer-read-only nil)
1150 (erase-buffer))
1151 (let ((tempfile (make-temp-file "ibuffer-diff-")))
1152 (unwind-protect
1153 (progn
1154 (with-current-buffer buf
1155 (write-region (point-min) (point-max) tempfile nil 'nomessage))
1156 (if (zerop
1157 (apply #'call-process "diff" nil diff-buf nil
1158 (append
1159 (when (and (boundp 'ediff-custom-diff-options)
1160 (stringp ediff-custom-diff-options))
1161 (list ediff-custom-diff-options))
1162 (list buf-filename tempfile))))
1163 (message "No differences found")
1164 (progn
1165 (with-current-buffer diff-buf
1166 (goto-char (point-min))
1167 (if (fboundp 'diff-mode)
1168 (diff-mode)
1169 (fundamental-mode)))
1170 (display-buffer diff-buf))))
1171 (when (file-exists-p tempfile)
1172 (delete-file tempfile)))))
1173 nil))
1174
1175;;;###autoload
1176(defun ibuffer-copy-filename-as-kill (&optional arg)
1177 "Copy filenames of marked buffers into the kill ring.
1178The names are separated by a space.
1179If a buffer has no filename, it is ignored.
1180With a zero prefix arg, use the complete pathname of each marked file.
1181
1182You can then feed the file name(s) to other commands with C-y.
1183
1184 [ This docstring shamelessly stolen from the
1185 `dired-copy-filename-as-kill' in \"dired-x\". ]"
1186 ;; Add to docstring later:
1187 ;; With C-u, use the relative pathname of each marked file.
1188 (interactive "P")
1189 (if (= (ibuffer-count-marked-lines) 0)
1190 (message "No buffers marked; use 'm' to mark a buffer")
1191 (let ((ibuffer-copy-filename-as-kill-result "")
1192 (type (cond ((eql arg 0)
1193 'full)
1194 ;; ((eql arg 4)
1195 ;; 'relative)
1196 (t
1197 'name))))
1198 (ibuffer-map-marked-lines
bde57911 1199 #'(lambda (buf mark)
25d2f683
CW
1200 (setq ibuffer-copy-filename-as-kill-result
1201 (concat ibuffer-copy-filename-as-kill-result
1202 (let ((name (buffer-file-name buf)))
1203 (if name
1204 (case type
1205 (full
1206 name)
1207 (t
1208 (file-name-nondirectory name)))
1209 ""))
1210 " "))))
1211 (push ibuffer-copy-filename-as-kill-result kill-ring))))
1212
05276226 1213(defun ibuffer-mark-on-buffer (func &optional ibuffer-mark-on-buffer-mark group)
25d2f683
CW
1214 (let ((count
1215 (ibuffer-map-lines
bde57911 1216 #'(lambda (buf mark)
25d2f683 1217 (when (funcall func buf)
05276226
CW
1218 (ibuffer-set-mark-1 (or ibuffer-mark-on-buffer-mark
1219 ibuffer-marked-char))
1220 t))
1221 nil
1222 group)))
25d2f683
CW
1223 (ibuffer-redisplay t)
1224 (message "Marked %s buffers" count)))
1225
1226;;;###autoload
1227(defun ibuffer-mark-by-name-regexp (regexp)
1228 "Mark all buffers whose name matches REGEXP."
1229 (interactive "sMark by name (regexp): ")
1230 (ibuffer-mark-on-buffer
1231 #'(lambda (buf)
1232 (string-match regexp (buffer-name buf)))))
1233
1234;;;###autoload
1235(defun ibuffer-mark-by-mode-regexp (regexp)
1236 "Mark all buffers whose major mode matches REGEXP."
1237 (interactive "sMark by major mode (regexp): ")
1238 (ibuffer-mark-on-buffer
1239 #'(lambda (buf)
1240 (with-current-buffer buf
1241 (string-match regexp mode-name)))))
1242
1243;;;###autoload
1244(defun ibuffer-mark-by-file-name-regexp (regexp)
1245 "Mark all buffers whose file name matches REGEXP."
1246 (interactive "sMark by file name (regexp): ")
1247 (ibuffer-mark-on-buffer
1248 #'(lambda (buf)
1249 (let ((name (or (buffer-file-name buf)
1250 (with-current-buffer buf
1251 (and
1252 (boundp 'dired-directory)
1253 (stringp dired-directory)
1254 dired-directory)))))
1255 (when name
1256 (string-match regexp name))))))
1257
1258;;;###autoload
1259(defun ibuffer-mark-by-mode (mode)
1260 "Mark all buffers whose major mode equals MODE."
1261 (interactive
1262 (list (intern (completing-read "Mark by major mode: " obarray
1263 #'(lambda (e)
1264 ;; kind of a hack...
1265 (and (fboundp e)
1266 (string-match "-mode$"
1267 (symbol-name e))))
1268 t
1269 (let ((buf (ibuffer-current-buffer)))
1270 (if (and buf (buffer-live-p buf))
1271 (with-current-buffer buf
1272 (cons (symbol-name major-mode)
1273 0))
1274 ""))))))
1275 (ibuffer-mark-on-buffer
1276 #'(lambda (buf)
1277 (with-current-buffer buf
1278 (eq major-mode mode)))))
1279
1280;;;###autoload
1281(defun ibuffer-mark-modified-buffers ()
1282 "Mark all modified buffers."
1283 (interactive)
1284 (ibuffer-mark-on-buffer
1285 #'(lambda (buf) (buffer-modified-p buf))))
1286
1287;;;###autoload
1288(defun ibuffer-mark-unsaved-buffers ()
1289 "Mark all modified buffers that have an associated file."
1290 (interactive)
1291 (ibuffer-mark-on-buffer
1292 #'(lambda (buf) (and (with-current-buffer buf buffer-file-name)
1293 (buffer-modified-p buf)))))
1294
1295;;;###autoload
1296(defun ibuffer-mark-dissociated-buffers ()
1297 "Mark all buffers whose associated file does not exist."
1298 (interactive)
1299 (ibuffer-mark-on-buffer
1300 #'(lambda (buf)
1301 (with-current-buffer buf
1302 (or
1303 (and buffer-file-name
1304 (not (file-exists-p buffer-file-name)))
1305 (and (eq major-mode 'dired-mode)
1306 (boundp 'dired-directory)
1307 (stringp dired-directory)
1308 (not (file-exists-p (file-name-directory dired-directory)))))))))
1309
1310;;;###autoload
1311(defun ibuffer-mark-help-buffers ()
1312 "Mark buffers like *Help*, *Apropos*, *Info*."
1313 (interactive)
1314 (ibuffer-mark-on-buffer
1315 #'(lambda (buf)
1316 (with-current-buffer buf
0fcbf8d6 1317 (memq major-mode ibuffer-help-buffer-modes)))))
25d2f683
CW
1318
1319;;;###autoload
1320(defun ibuffer-mark-old-buffers ()
1321 "Mark buffers which have not been viewed in `ibuffer-old-time' days."
1322 (interactive)
1323 (ibuffer-mark-on-buffer
1324 #'(lambda (buf)
1325 (with-current-buffer buf
1326 ;; hacked from midnight.el
1327 (when buffer-display-time
1328 (let* ((tm (current-time))
1329 (now (+ (* (float (ash 1 16)) (car tm))
1330 (float (cadr tm)) (* 0.0000001 (caddr tm))))
1331 (then (+ (* (float (ash 1 16))
1332 (car buffer-display-time))
1333 (float (cadr buffer-display-time))
1334 (* 0.0000001 (caddr buffer-display-time)))))
2c1bb3d3 1335 (> (- now then) (* 60 60 ibuffer-old-time))))))))
25d2f683
CW
1336
1337;;;###autoload
1338(defun ibuffer-mark-special-buffers ()
1339 "Mark all buffers whose name begins and ends with '*'."
1340 (interactive)
1341 (ibuffer-mark-on-buffer
1342 #'(lambda (buf) (string-match "^\\*.+\\*$"
1343 (buffer-name buf)))))
1344
1345;;;###autoload
1346(defun ibuffer-mark-read-only-buffers ()
1347 "Mark all read-only buffers."
1348 (interactive)
1349 (ibuffer-mark-on-buffer
1350 #'(lambda (buf)
1351 (with-current-buffer buf
1352 buffer-read-only))))
1353
1354;;;###autoload
1355(defun ibuffer-mark-dired-buffers ()
1356 "Mark all `dired' buffers."
1357 (interactive)
1358 (ibuffer-mark-on-buffer
1359 #'(lambda (buf)
1360 (with-current-buffer buf
1361 (eq major-mode 'dired-mode)))))
1362
25d2f683
CW
1363;;;###autoload
1364(defun ibuffer-do-occur (regexp &optional nlines)
1365 "View lines which match REGEXP in all marked buffers.
1366Optional argument NLINES says how many lines of context to display: it
1367defaults to one."
365e1cfb 1368 (interactive (occur-read-primary-args))
25d2f683
CW
1369 (if (or (not (integerp nlines))
1370 (< nlines 0))
1371 (setq nlines 1))
1372 (when (zerop (ibuffer-count-marked-lines))
10cf9a43 1373 (ibuffer-set-mark ibuffer-marked-char))
25d2f683
CW
1374 (let ((ibuffer-do-occur-bufs nil))
1375 ;; Accumulate a list of marked buffers
1376 (ibuffer-map-marked-lines
bde57911 1377 #'(lambda (buf mark)
25d2f683 1378 (push buf ibuffer-do-occur-bufs)))
c06bd65e 1379 (occur-1 regexp nlines ibuffer-do-occur-bufs)))
25d2f683
CW
1380
1381(provide 'ibuf-ext)
1382
1383;;; ibuf-ext.el ends here