1 ;;; ibuf-ext.el --- extensions for ibuffer
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Colin Walters <walters@verbum.org>
7 ;; Maintainer: John Paul Wallington <jpw@gnu.org>
9 ;; Keywords: buffer, convenience
11 ;; This file is part of GNU Emacs.
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 3, or (at
16 ;; your option) any later version.
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 ;; General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with this program ; see the file COPYING. If not, write to
25 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
30 ;; These functions should be automatically loaded when called, but you
31 ;; can explicity (require 'ibuf-ext) in your ~/.emacs to have them
43 (defun ibuffer-delete-alist (key alist
)
44 "Delete all entries in ALIST that have a key equal to KEY."
46 (while (setq entry
(assoc key alist
))
47 (setq alist
(delete entry alist
)))
51 (defun ibuffer-remove-duplicates (list)
52 "Return a copy of LIST with duplicate elements removed."
56 (or (member (car tail
) new
)
57 (setq new
(cons (car tail
) new
)))
58 (setq tail
(cdr tail
)))
61 (defun ibuffer-split-list (ibuffer-split-list-fn ibuffer-split-list-elts
)
64 (dolist (ibuffer-split-list-elt ibuffer-split-list-elts
)
65 (if (funcall ibuffer-split-list-fn ibuffer-split-list-elt
)
66 (push ibuffer-split-list-elt hip-crowd
)
67 (push ibuffer-split-list-elt lamers
)))
68 ;; Too bad Emacs Lisp doesn't have multiple values.
69 (list (nreverse hip-crowd
) (nreverse lamers
))))
71 (defcustom ibuffer-never-show-predicates nil
72 "A list of predicates (a regexp or function) for buffers not to display.
73 If a regexp, then it will be matched against the buffer's name.
74 If a function, it will be called with the buffer as an argument, and
75 should return non-nil if this buffer should not be shown."
76 :type
'(repeat (choice regexp function
))
80 (defcustom ibuffer-always-show-predicates nil
81 "A list of predicates (a regexp or function) for buffers to always display.
82 If a regexp, then it will be matched against the buffer's name.
83 If a function, it will be called with the buffer as an argument, and
84 should return non-nil if this buffer should be shown.
85 Note that buffers matching one of these predicates will be shown
86 regardless of any active filters in this buffer."
87 :type
'(repeat (choice regexp function
))
90 (defvar ibuffer-tmp-hide-regexps nil
91 "A list of regexps which should match buffer names to not show.")
93 (defvar ibuffer-tmp-show-regexps nil
94 "A list of regexps which should match buffer names to always show.")
96 (defvar ibuffer-auto-mode nil
97 "If non-nil, Ibuffer auto-mode should be enabled for this buffer.
98 Do not set this variable directly! Use the function
99 `ibuffer-auto-mode' instead.")
101 (defvar ibuffer-auto-buffers-changed nil
)
103 (defcustom ibuffer-saved-filters
'(("gnus"
104 ((or (mode . message-mode
)
106 (mode . gnus-group-mode
)
107 (mode . gnus-summary-mode
)
108 (mode . gnus-article-mode
))))
110 ((or (mode . emacs-lisp-mode
)
115 (mode . lisp-mode
)))))
117 "An alist of filter qualifiers to switch between.
119 This variable should look like ((\"STRING\" QUALIFIERS)
120 (\"STRING\" QUALIFIERS) ...), where
121 QUALIFIERS is a list of the same form as
122 `ibuffer-filtering-qualifiers'.
123 See also the variables `ibuffer-filtering-qualifiers',
124 `ibuffer-filtering-alist', and the functions
125 `ibuffer-switch-to-saved-filters', `ibuffer-save-filters'."
129 (defvar ibuffer-filtering-qualifiers nil
130 "A list like (SYMBOL . QUALIFIER) which filters the current buffer list.
131 See also `ibuffer-filtering-alist'.")
133 ;; This is now frobbed by `define-ibuffer-filter'.
134 (defvar ibuffer-filtering-alist nil
135 "An alist of (SYMBOL DESCRIPTION FUNCTION) which describes a filter.
137 You most likely do not want to modify this variable directly; see
138 `define-ibuffer-filter'.
140 SYMBOL is the symbolic name of the filter. DESCRIPTION is used when
141 displaying information to the user. FUNCTION is given a buffer and
142 the value of the qualifier, and returns non-nil if and only if the
143 buffer should be displayed.")
145 (defcustom ibuffer-filter-format-alist nil
146 "An alist which has special formats used when a filter is active.
147 The contents of this variable should look like:
148 ((FILTER (FORMAT FORMAT ...)) (FILTER (FORMAT FORMAT ...)) ...)
150 For example, suppose that when you add a filter for buffers whose
151 major mode is `emacs-lisp-mode', you only want to see the mark and the
152 name of the buffer. You could accomplish that by adding:
153 (mode ((mark \" \" name)))
155 :type
'(repeat (list :tag
"Association" (symbol :tag
"Filter")
156 (list :tag
"Formats" (repeat (sexp :tag
"Format")))))
159 (defvar ibuffer-cached-filter-formats nil
)
160 (defvar ibuffer-compiled-filter-formats nil
)
162 (defvar ibuffer-filter-groups nil
163 "A list like ((\"NAME\" ((SYMBOL . QUALIFIER) ...) ...) which groups buffers.
164 The SYMBOL should be one from `ibuffer-filtering-alist'.
165 The QUALIFIER should be the same as QUALIFIER in
166 `ibuffer-filtering-qualifiers'.")
168 (defcustom ibuffer-show-empty-filter-groups t
169 "If non-nil, then show the names of filter groups which are empty."
173 (defcustom ibuffer-saved-filter-groups nil
174 "An alist of filtering groups to switch between.
176 This variable should look like ((\"STRING\" QUALIFIERS)
177 (\"STRING\" QUALIFIERS) ...), where
178 QUALIFIERS is a list of the same form as
179 `ibuffer-filtering-qualifiers'.
181 See also the variables `ibuffer-filter-groups',
182 `ibuffer-filtering-qualifiers', `ibuffer-filtering-alist', and the
183 functions `ibuffer-switch-to-saved-filter-groups',
184 `ibuffer-save-filter-groups'."
188 (defvar ibuffer-hidden-filter-groups nil
189 "A list of filtering groups which are currently hidden.")
191 (defvar ibuffer-filter-group-kill-ring nil
)
193 (defcustom ibuffer-old-time
72
194 "The number of hours before a buffer is considered \"old\"."
195 :type
'(choice (const :tag
"72 hours (3 days)" 72)
196 (const :tag
"48 hours (2 days)" 48)
197 (const :tag
"24 hours (1 day)" 24)
198 (integer :tag
"hours"))
201 (defcustom ibuffer-save-with-custom t
202 "If non-nil, then use Custom to save interactively changed variables.
203 Currently, this only applies to `ibuffer-saved-filters' and
204 `ibuffer-saved-filter-groups'."
208 (defun ibuffer-ext-visible-p (buf all
&optional ibuffer-buf
)
210 (ibuffer-buf-matches-predicates buf ibuffer-tmp-show-regexps
)
213 (ibuffer-buf-matches-predicates buf ibuffer-tmp-hide-regexps
)
214 (ibuffer-buf-matches-predicates buf ibuffer-never-show-predicates
)))
217 (ibuffer-buf-matches-predicates buf ibuffer-maybe-show-predicates
)))
218 (or ibuffer-view-ibuffer
220 (not (eq ibuffer-buf buf
))))
222 (ibuffer-included-in-filters-p buf ibuffer-filtering-qualifiers
)
223 (ibuffer-buf-matches-predicates buf ibuffer-always-show-predicates
)))))
225 (defun ibuffer-auto-update-changed ()
226 (when (frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed
)
227 (dolist (buf (buffer-list))
229 (with-current-buffer buf
230 (when (and ibuffer-auto-mode
231 (derived-mode-p 'ibuffer-mode
))
232 (ibuffer-update nil t
)))))))
235 (defun ibuffer-auto-mode (&optional arg
)
236 "Toggle use of Ibuffer's auto-update facility.
237 With numeric ARG, enable auto-update if and only if ARG is positive."
239 (unless (derived-mode-p 'ibuffer-mode
)
240 (error "This buffer is not in Ibuffer mode"))
241 (set (make-local-variable 'ibuffer-auto-mode
)
244 (not ibuffer-auto-mode
)))
245 (frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed
) ; Initialize state vector
246 (add-hook 'post-command-hook
'ibuffer-auto-update-changed
))
249 (defun ibuffer-mouse-filter-by-mode (event)
250 "Enable or disable filtering by the major mode chosen via mouse."
252 (ibuffer-interactive-filter-by-mode event
))
255 (defun ibuffer-interactive-filter-by-mode (event-or-point)
256 "Enable or disable filtering by the major mode at point."
258 (if (eventp event-or-point
)
259 (posn-set-point (event-end event-or-point
))
260 (goto-char event-or-point
))
261 (let ((buf (ibuffer-current-buffer)))
262 (if (assq 'mode ibuffer-filtering-qualifiers
)
263 (setq ibuffer-filtering-qualifiers
264 (ibuffer-delete-alist 'mode ibuffer-filtering-qualifiers
))
265 (ibuffer-push-filter (cons 'mode
266 (with-current-buffer buf
268 (ibuffer-update nil t
))
271 (defun ibuffer-mouse-toggle-filter-group (event)
272 "Toggle the display status of the filter group chosen with the mouse."
274 (ibuffer-toggle-filter-group-1 (save-excursion
275 (mouse-set-point event
)
279 (defun ibuffer-toggle-filter-group ()
280 "Toggle the display status of the filter group on this line."
282 (ibuffer-toggle-filter-group-1 (point)))
284 (defun ibuffer-toggle-filter-group-1 (posn)
285 (let ((name (get-text-property posn
'ibuffer-filter-group-name
)))
286 (unless (stringp name
)
287 (error "No filtering group name present"))
288 (if (member name ibuffer-hidden-filter-groups
)
289 (setq ibuffer-hidden-filter-groups
290 (delete name ibuffer-hidden-filter-groups
))
291 (push name ibuffer-hidden-filter-groups
))
292 (ibuffer-update nil t
)))
295 (defun ibuffer-forward-filter-group (&optional count
)
296 "Move point forwards by COUNT filtering groups."
301 (when (get-text-property (point) 'ibuffer-filter-group-name
)
302 (goto-char (next-single-property-change
303 (point) 'ibuffer-filter-group-name
305 (goto-char (next-single-property-change
306 (point) 'ibuffer-filter-group-name
308 (ibuffer-forward-filter-group (1- count
)))
309 (ibuffer-forward-line 0))
312 (defun ibuffer-backward-filter-group (&optional count
)
313 "Move point backwards by COUNT filtering groups."
318 (when (get-text-property (point) 'ibuffer-filter-group-name
)
319 (goto-char (previous-single-property-change
320 (point) 'ibuffer-filter-group-name
322 (goto-char (previous-single-property-change
323 (point) 'ibuffer-filter-group-name
325 (ibuffer-backward-filter-group (1- count
)))
326 (when (= (point) (point-min))
327 (goto-char (point-max))
328 (ibuffer-backward-filter-group 1))
329 (ibuffer-forward-line 0))
331 ;;;###autoload (autoload 'ibuffer-do-shell-command-pipe "ibuf-ext")
332 (define-ibuffer-op shell-command-pipe
(command)
333 "Pipe the contents of each marked buffer to shell command COMMAND."
334 (:interactive
"sPipe to shell command: "
335 :opstring
"Shell command executed on"
337 (shell-command-on-region
338 (point-min) (point-max) command
339 (get-buffer-create "* ibuffer-shell-output*")))
341 ;;;###autoload (autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext")
342 (define-ibuffer-op shell-command-pipe-replace
(command)
343 "Replace the contents of marked buffers with output of pipe to COMMAND."
344 (:interactive
"sPipe to shell command (replace): "
345 :opstring
"Buffer contents replaced in"
346 :active-opstring
"replace buffer contents in"
349 (with-current-buffer buf
350 (shell-command-on-region (point-min) (point-max)
353 ;;;###autoload (autoload 'ibuffer-do-shell-command-file "ibuf-ext")
354 (define-ibuffer-op shell-command-file
(command)
355 "Run shell command COMMAND separately on files of marked buffers."
356 (:interactive
"sShell command on buffer's file: "
357 :opstring
"Shell command executed on"
359 (shell-command (concat command
" "
360 (shell-quote-argument
364 (substring (buffer-name) 0 (min 10 (length (buffer-name))))))))))
366 ;;;###autoload (autoload 'ibuffer-do-eval "ibuf-ext")
367 (define-ibuffer-op eval
(form)
368 "Evaluate FORM in each of the buffers.
369 Does not display the buffer during evaluation. See
370 `ibuffer-do-view-and-eval' for that."
373 (read-from-minibuffer
374 "Eval in buffers (form): "
375 nil read-expression-map t
'read-expression-history
))
376 :opstring
"evaluated in"
380 ;;;###autoload (autoload 'ibuffer-do-view-and-eval "ibuf-ext")
381 (define-ibuffer-op view-and-eval
(form)
382 "Evaluate FORM while displaying each of the marked buffers.
383 To evaluate a form without viewing the buffer, see `ibuffer-do-eval'."
386 (read-from-minibuffer
387 "Eval viewing in buffers (form): "
388 nil read-expression-map t
'read-expression-history
))
389 :opstring
"evaluated in"
392 (let ((ibuffer-buf (current-buffer)))
395 (switch-to-buffer buf
)
397 (switch-to-buffer ibuffer-buf
))))
399 ;;;###autoload (autoload 'ibuffer-do-rename-uniquely "ibuf-ext")
400 (define-ibuffer-op rename-uniquely
()
401 "Rename marked buffers as with `rename-uniquely'."
406 ;;;###autoload (autoload 'ibuffer-do-revert "ibuf-ext")
407 (define-ibuffer-op revert
()
408 "Revert marked buffers as with `revert-buffer'."
411 :active-opstring
"revert"
415 ;;;###autoload (autoload 'ibuffer-do-replace-regexp "ibuf-ext")
416 (define-ibuffer-op replace-regexp
(from-str to-str
)
417 "Perform a `replace-regexp' in marked buffers."
419 (let* ((from-str (read-from-minibuffer "Replace regexp: "))
420 (to-str (read-from-minibuffer (concat "Replace " from-str
422 (list from-str to-str
))
423 :opstring
"replaced in"
426 (save-window-excursion
427 (switch-to-buffer buf
)
429 (goto-char (point-min))
430 (let ((case-fold-search ibuffer-case-fold-search
))
431 (while (re-search-forward from-str nil t
)
432 (replace-match to-str
))))
435 ;;;###autoload (autoload 'ibuffer-do-query-replace "ibuf-ext")
436 (define-ibuffer-op query-replace
(&rest args
)
437 "Perform a `query-replace' in marked buffers."
439 (query-replace-read-args "Query replace" t t
)
440 :opstring
"replaced in"
443 (save-window-excursion
444 (switch-to-buffer buf
)
446 (let ((case-fold-search ibuffer-case-fold-search
))
447 (goto-char (point-min))
448 (apply #'query-replace args
)))
451 ;;;###autoload (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext")
452 (define-ibuffer-op query-replace-regexp
(&rest args
)
453 "Perform a `query-replace-regexp' in marked buffers."
455 (query-replace-read-args "Query replace regexp" t t
)
456 :opstring
"replaced in"
459 (save-window-excursion
460 (switch-to-buffer buf
)
462 (let ((case-fold-search ibuffer-case-fold-search
))
463 (goto-char (point-min))
464 (apply #'query-replace-regexp args
)))
467 ;;;###autoload (autoload 'ibuffer-do-print "ibuf-ext")
468 (define-ibuffer-op print
()
469 "Print marked buffers as with `print-buffer'."
475 (defun ibuffer-included-in-filters-p (buf filters
)
477 (memq nil
;; a filter will return nil if it failed
479 ;; filter should be like (TYPE . QUALIFIER), or
480 ;; (or (TYPE . QUALIFIER) (TYPE . QUALIFIER) ...)
482 (ibuffer-included-in-filter-p buf qual
))
485 (defun ibuffer-included-in-filter-p (buf filter
)
486 (if (eq (car filter
) 'not
)
487 (not (ibuffer-included-in-filter-p-1 buf
(cdr filter
)))
488 (ibuffer-included-in-filter-p-1 buf filter
)))
490 (defun ibuffer-included-in-filter-p-1 (buf filter
)
495 (memq t
(mapcar #'(lambda (x)
496 (ibuffer-included-in-filter-p buf x
))
501 ibuffer-saved-filters
)))
503 (ibuffer-filter-disable)
504 (error "Unknown saved filter %s" (cdr filter
)))
505 (ibuffer-included-in-filters-p buf
(cadr data
))))
507 (let ((filterdat (assq (car filter
)
508 ibuffer-filtering-alist
)))
509 ;; filterdat should be like (TYPE DESCRIPTION FUNC)
510 ;; just a sanity check
512 (ibuffer-filter-disable)
513 (error "Undefined filter %s" (car filter
)))
516 (funcall (caddr filterdat
)
518 (cdr filter
))))))))))
520 (defun ibuffer-generate-filter-groups (bmarklist &optional noempty nodefault
)
521 (let ((filter-group-alist (if nodefault
522 ibuffer-filter-groups
523 (append ibuffer-filter-groups
524 (list (cons "Default" nil
))))))
525 ;; (dolist (hidden ibuffer-hidden-filter-groups)
526 ;; (setq filter-group-alist (ibuffer-delete-alist
527 ;; hidden filter-group-alist)))
528 (let ((vec (make-vector (length filter-group-alist
) nil
))
530 (dolist (filtergroup filter-group-alist
)
531 (let ((filterset (cdr filtergroup
)))
532 (multiple-value-bind (hip-crowd lamers
)
533 (ibuffer-split-list (lambda (bufmark)
534 (ibuffer-included-in-filters-p (car bufmark
)
537 (aset vec i hip-crowd
)
539 (setq bmarklist lamers
))))
542 (let ((bufs (aref vec j
)))
543 (unless (and noempty
(null bufs
))
544 (push (cons (car (nth j filter-group-alist
))
549 (defun ibuffer-filters-to-filter-group (name)
550 "Make the current filters into a filtering group."
551 (interactive "sName for filtering group: ")
552 (when (null ibuffer-filtering-qualifiers
)
553 (error "No filters in effect"))
554 (push (cons name ibuffer-filtering-qualifiers
) ibuffer-filter-groups
)
555 (ibuffer-filter-disable))
558 (defun ibuffer-set-filter-groups-by-mode ()
559 "Set the current filter groups to filter by mode."
561 (setq ibuffer-filter-groups
562 (mapcar (lambda (mode)
563 (cons (format "%s" mode
) `((mode .
,mode
))))
565 (ibuffer-remove-duplicates
566 (mapcar (lambda (buf)
567 (with-current-buffer buf major-mode
))
569 (if ibuffer-view-ibuffer
571 (delq 'ibuffer-mode modes
)))))
572 (ibuffer-update nil t
))
575 (defun ibuffer-pop-filter-group ()
576 "Remove the first filter group."
578 (when (null ibuffer-filter-groups
)
579 (error "No filter groups active"))
580 (setq ibuffer-hidden-filter-groups
581 (delete (pop ibuffer-filter-groups
)
582 ibuffer-hidden-filter-groups
))
583 (ibuffer-update nil t
))
585 (defun ibuffer-read-filter-group-name (msg &optional nodefault noerror
)
586 (when (and (not noerror
) (null ibuffer-filter-groups
))
587 (error "No filter groups active"))
588 ;; `ibuffer-generate-filter-groups' returns all non-hidden filter
589 ;; groups, possibly excluding empty groups or Default.
590 ;; We add `ibuffer-hidden-filter-groups' to the list, excluding
591 ;; Default if necessary.
592 (completing-read msg
(nconc
593 (ibuffer-generate-filter-groups
594 (ibuffer-current-state-list)
595 (not ibuffer-show-empty-filter-groups
)
598 (remove "Default" ibuffer-hidden-filter-groups
)
599 ibuffer-hidden-filter-groups
))
603 (defun ibuffer-decompose-filter-group (group)
604 "Decompose the filter group GROUP into active filters."
606 (list (ibuffer-read-filter-group-name "Decompose filter group: " t
)))
607 (let ((data (cdr (assoc group ibuffer-filter-groups
))))
608 (setq ibuffer-filter-groups
(ibuffer-delete-alist
609 group ibuffer-filter-groups
)
610 ibuffer-filtering-qualifiers data
))
611 (ibuffer-update nil t
))
614 (defun ibuffer-clear-filter-groups ()
615 "Remove all filter groups."
617 (setq ibuffer-filter-groups nil
618 ibuffer-hidden-filter-groups nil
)
619 (ibuffer-update nil t
))
621 (defun ibuffer-current-filter-groups-with-position ()
623 (goto-char (point-min))
626 (while (and (not (eobp))
627 (setq pos
(next-single-property-change
628 (point) 'ibuffer-filter-group-name
)))
630 (push (cons (get-text-property (point) 'ibuffer-filter-group-name
)
633 (goto-char (next-single-property-change
634 pos
'ibuffer-filter-group-name
)))
638 (defun ibuffer-jump-to-filter-group (name)
639 "Move point to the filter group whose name is NAME."
641 (list (ibuffer-read-filter-group-name "Jump to filter group: ")))
642 (ibuffer-aif (assoc name
(ibuffer-current-filter-groups-with-position))
644 (error "No filter group with name %s" name
)))
647 (defun ibuffer-kill-filter-group (name)
648 "Kill the filter group named NAME.
649 The group will be added to `ibuffer-filter-group-kill-ring'."
650 (interactive (list (ibuffer-read-filter-group-name "Kill filter group: " t
)))
651 (when (equal name
"Default")
652 (error "Can't kill default filter group"))
653 (ibuffer-aif (assoc name ibuffer-filter-groups
)
655 (push (copy-tree it
) ibuffer-filter-group-kill-ring
)
656 (setq ibuffer-filter-groups
(ibuffer-delete-alist
657 name ibuffer-filter-groups
))
658 (setq ibuffer-hidden-filter-groups
659 (delete name ibuffer-hidden-filter-groups
)))
660 (error "No filter group with name \"%s\"" name
))
661 (ibuffer-update nil t
))
664 (defun ibuffer-kill-line (&optional arg interactive-p
)
665 "Kill the filter group at point.
666 See also `ibuffer-kill-filter-group'."
668 (ibuffer-aif (save-excursion
669 (ibuffer-forward-line 0)
670 (get-text-property (point) 'ibuffer-filter-group-name
))
672 (ibuffer-kill-filter-group it
))
673 (funcall (if interactive-p
#'call-interactively
#'funcall
)
676 (defun ibuffer-insert-filter-group-before (newgroup group
)
678 (pos (let ((groups (mapcar #'car ibuffer-filter-groups
))
681 (if (equal (car groups
) group
)
685 (setq groups
(cdr groups
))))
688 (setq ibuffer-filter-groups
689 (nconc ibuffer-filter-groups
(list newgroup
))))
691 (push newgroup ibuffer-filter-groups
))
693 (let ((cell (nthcdr pos ibuffer-filter-groups
)))
694 (setf (cdr cell
) (cons (car cell
) (cdr cell
)))
695 (setf (car cell
) newgroup
))))))
698 (defun ibuffer-yank ()
699 "Yank the last killed filter group before group at point."
701 (ibuffer-yank-filter-group
702 (or (get-text-property (point) 'ibuffer-filter-group-name
)
703 (get-text-property (point) 'ibuffer-filter-group
)
704 (error "No filter group at point"))))
707 (defun ibuffer-yank-filter-group (name)
708 "Yank the last killed filter group before group named NAME."
709 (interactive (list (ibuffer-read-filter-group-name
710 "Yank filter group before group: ")))
711 (unless ibuffer-filter-group-kill-ring
712 (error "The Ibuffer filter group kill-ring is empty"))
714 (ibuffer-forward-line 0)
715 (ibuffer-insert-filter-group-before (pop ibuffer-filter-group-kill-ring
)
717 (ibuffer-update nil t
))
720 (defun ibuffer-save-filter-groups (name groups
)
721 "Save all active filter groups GROUPS as NAME.
722 They are added to `ibuffer-saved-filter-groups'. Interactively,
723 prompt for NAME, and use the current filters."
725 (if (null ibuffer-filter-groups
)
726 (error "No filter groups active")
728 (read-from-minibuffer "Save current filter groups as: ")
729 ibuffer-filter-groups
)))
730 (ibuffer-aif (assoc name ibuffer-saved-filter-groups
)
732 (push (cons name groups
) ibuffer-saved-filter-groups
))
733 (ibuffer-maybe-save-stuff))
736 (defun ibuffer-delete-saved-filter-groups (name)
737 "Delete saved filter groups with NAME.
738 They are removed from `ibuffer-saved-filter-groups'."
741 (if (null ibuffer-saved-filter-groups
)
742 (error "No saved filter groups")
743 (completing-read "Delete saved filter group: "
744 ibuffer-saved-filter-groups nil t
))))
745 (setq ibuffer-saved-filter-groups
746 (ibuffer-delete-alist name ibuffer-saved-filter-groups
))
747 (ibuffer-maybe-save-stuff)
748 (ibuffer-update nil t
))
751 (defun ibuffer-switch-to-saved-filter-groups (name)
752 "Set this buffer's filter groups to saved version with NAME.
753 The value from `ibuffer-saved-filter-groups' is used."
756 (if (null ibuffer-saved-filter-groups
)
757 (error "No saved filters")
758 (completing-read "Switch to saved filter group: "
759 ibuffer-saved-filter-groups nil t
))))
760 (setq ibuffer-filter-groups
(cdr (assoc name ibuffer-saved-filter-groups
))
761 ibuffer-hidden-filter-groups nil
)
762 (ibuffer-update nil t
))
765 (defun ibuffer-filter-disable ()
766 "Disable all filters currently in effect in this buffer."
768 (setq ibuffer-filtering-qualifiers nil
)
769 (let ((buf (ibuffer-current-buffer)))
770 (ibuffer-update nil t
)
772 (ibuffer-jump-to-buffer (buffer-name buf
)))))
775 (defun ibuffer-pop-filter ()
776 "Remove the top filter in this buffer."
778 (when (null ibuffer-filtering-qualifiers
)
779 (error "No filters in effect"))
780 (pop ibuffer-filtering-qualifiers
)
781 (let ((buf (ibuffer-current-buffer)))
782 (ibuffer-update nil t
)
784 (ibuffer-jump-to-buffer (buffer-name buf
)))))
786 (defun ibuffer-push-filter (qualifier)
787 "Add QUALIFIER to `ibuffer-filtering-qualifiers'."
788 (push qualifier ibuffer-filtering-qualifiers
))
791 (defun ibuffer-decompose-filter ()
792 "Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
794 This means that the topmost filter on the filtering stack, which must
795 be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
796 turned into two separate filters [name: foo] and [mode: bar-mode]."
798 (when (null ibuffer-filtering-qualifiers
)
799 (error "No filters in effect"))
800 (let ((lim (pop ibuffer-filtering-qualifiers
)))
803 (setq ibuffer-filtering-qualifiers
(append
805 ibuffer-filtering-qualifiers
)))
809 ibuffer-saved-filters
)))
811 (ibuffer-filter-disable)
812 (error "Unknown saved filter %s" (cdr lim
)))
813 (setq ibuffer-filtering-qualifiers
(append
815 ibuffer-filtering-qualifiers
))))
818 ibuffer-filtering-qualifiers
))
820 (error "Filter type %s is not compound" (car lim
)))))
821 (ibuffer-update nil t
))
824 (defun ibuffer-exchange-filters ()
825 "Exchange the top two filters on the stack in this buffer."
827 (when (< (length ibuffer-filtering-qualifiers
)
829 (error "Need two filters to exchange"))
830 (let ((first (pop ibuffer-filtering-qualifiers
))
831 (second (pop ibuffer-filtering-qualifiers
)))
832 (push first ibuffer-filtering-qualifiers
)
833 (push second ibuffer-filtering-qualifiers
))
834 (ibuffer-update nil t
))
837 (defun ibuffer-negate-filter ()
838 "Negate the sense of the top filter in the current buffer."
840 (when (null ibuffer-filtering-qualifiers
)
841 (error "No filters in effect"))
842 (let ((lim (pop ibuffer-filtering-qualifiers
)))
843 (push (if (eq (car lim
) 'not
)
846 ibuffer-filtering-qualifiers
))
847 (ibuffer-update nil t
))
850 (defun ibuffer-or-filter (&optional reverse
)
851 "Replace the top two filters in this buffer with their logical OR.
852 If optional argument REVERSE is non-nil, instead break the top OR
857 (when (or (null ibuffer-filtering-qualifiers
)
858 (not (eq 'or
(caar ibuffer-filtering-qualifiers
))))
859 (error "Top filter is not an OR"))
860 (let ((lim (pop ibuffer-filtering-qualifiers
)))
861 (setq ibuffer-filtering-qualifiers
862 (nconc (cdr lim
) ibuffer-filtering-qualifiers
))))
863 (when (< (length ibuffer-filtering-qualifiers
) 2)
864 (error "Need two filters to OR"))
865 ;; If the second filter is an OR, just add to it.
866 (let ((first (pop ibuffer-filtering-qualifiers
))
867 (second (pop ibuffer-filtering-qualifiers
)))
868 (if (eq 'or
(car second
))
869 (push (nconc (list 'or first
) (cdr second
))
870 ibuffer-filtering-qualifiers
)
871 (push (list 'or first second
)
872 ibuffer-filtering-qualifiers
))))
873 (ibuffer-update nil t
))
875 (defun ibuffer-maybe-save-stuff ()
876 (when ibuffer-save-with-custom
877 (if (fboundp 'customize-save-variable
)
879 (customize-save-variable 'ibuffer-saved-filters
880 ibuffer-saved-filters
)
881 (customize-save-variable 'ibuffer-saved-filter-groups
882 ibuffer-saved-filter-groups
))
883 (message "Not saved permanently: Customize not available"))))
886 (defun ibuffer-save-filters (name filters
)
887 "Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
888 Interactively, prompt for NAME, and use the current filters."
890 (if (null ibuffer-filtering-qualifiers
)
891 (error "No filters currently in effect")
893 (read-from-minibuffer "Save current filters as: ")
894 ibuffer-filtering-qualifiers
)))
895 (ibuffer-aif (assoc name ibuffer-saved-filters
)
897 (push (list name filters
) ibuffer-saved-filters
))
898 (ibuffer-maybe-save-stuff))
901 (defun ibuffer-delete-saved-filters (name)
902 "Delete saved filters with NAME from `ibuffer-saved-filters'."
905 (if (null ibuffer-saved-filters
)
906 (error "No saved filters")
907 (completing-read "Delete saved filters: "
908 ibuffer-saved-filters nil t
))))
909 (setq ibuffer-saved-filters
910 (ibuffer-delete-alist name ibuffer-saved-filters
))
911 (ibuffer-maybe-save-stuff)
912 (ibuffer-update nil t
))
915 (defun ibuffer-add-saved-filters (name)
916 "Add saved filters from `ibuffer-saved-filters' to this buffer's filters."
919 (if (null ibuffer-saved-filters
)
920 (error "No saved filters")
921 (completing-read "Add saved filters: "
922 ibuffer-saved-filters nil t
))))
923 (push (cons 'saved name
) ibuffer-filtering-qualifiers
)
924 (ibuffer-update nil t
))
927 (defun ibuffer-switch-to-saved-filters (name)
928 "Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'."
931 (if (null ibuffer-saved-filters
)
932 (error "No saved filters")
933 (completing-read "Switch to saved filters: "
934 ibuffer-saved-filters nil t
))))
935 (setq ibuffer-filtering-qualifiers
(list (cons 'saved name
)))
936 (ibuffer-update nil t
))
938 (defun ibuffer-format-filter-group-data (filter)
939 (if (equal filter
"Default")
941 (concat "Filter:" (mapconcat #'ibuffer-format-qualifier
942 (cdr (assq filter ibuffer-filter-groups
))
945 (defun ibuffer-format-qualifier (qualifier)
946 (if (eq (car-safe qualifier
) 'not
)
947 (concat " [NOT" (ibuffer-format-qualifier-1 (cdr qualifier
)) "]")
948 (ibuffer-format-qualifier-1 qualifier
)))
950 (defun ibuffer-format-qualifier-1 (qualifier)
951 (case (car qualifier
)
953 (concat " [filter: " (cdr qualifier
) "]"))
955 (concat " [OR" (mapconcat #'ibuffer-format-qualifier
956 (cdr qualifier
) "") "]"))
958 (let ((type (assq (car qualifier
) ibuffer-filtering-alist
)))
960 (error "Ibuffer: bad qualifier %s" qualifier
))
961 (concat " [" (cadr type
) ": " (format "%s]" (cdr qualifier
)))))))
964 (defun ibuffer-list-buffer-modes ()
965 "Create an alist of buffer modes currently in use.
966 The list returned will be of the form (\"MODE-NAME\" . MODE-SYMBOL)."
967 (let ((bufs (buffer-list))
978 `(,(symbol-name this-mode
) .
983 ;;; Extra operation definitions
985 ;;;###autoload (autoload 'ibuffer-filter-by-mode "ibuf-ext")
986 (define-ibuffer-filter mode
987 "Toggle current view to buffers with major mode QUALIFIER."
988 (:description
"major mode"
991 (completing-read "Filter by major mode: " obarray
993 (string-match "-mode$"
996 (let ((buf (ibuffer-current-buffer)))
997 (if (and buf
(buffer-live-p buf
))
998 (with-current-buffer buf
999 (symbol-name major-mode
))
1001 (eq qualifier
(with-current-buffer buf major-mode
)))
1003 ;;;###autoload (autoload 'ibuffer-filter-by-used-mode "ibuf-ext")
1004 (define-ibuffer-filter used-mode
1005 "Toggle current view to buffers with major mode QUALIFIER.
1006 Called interactively, this function allows selection of modes
1007 currently used by buffers."
1008 (:description
"major mode in use"
1011 (completing-read "Filter by major mode: "
1012 (ibuffer-list-buffer-modes)
1015 (let ((buf (ibuffer-current-buffer)))
1016 (if (and buf
(buffer-live-p buf
))
1017 (with-current-buffer buf
1018 (symbol-name major-mode
))
1020 (eq qualifier
(with-current-buffer buf major-mode
)))
1022 ;;;###autoload (autoload 'ibuffer-filter-by-name "ibuf-ext")
1023 (define-ibuffer-filter name
1024 "Toggle current view to buffers with name matching QUALIFIER."
1025 (:description
"buffer name"
1026 :reader
(read-from-minibuffer "Filter by name (regexp): "))
1027 (string-match qualifier
(buffer-name buf
)))
1029 ;;;###autoload (autoload 'ibuffer-filter-by-filename "ibuf-ext")
1030 (define-ibuffer-filter filename
1031 "Toggle current view to buffers with filename matching QUALIFIER."
1032 (:description
"filename"
1033 :reader
(read-from-minibuffer "Filter by filename (regexp): "))
1034 (ibuffer-awhen (with-current-buffer buf
1035 (or buffer-file-name
1036 (and (boundp 'dired-directory
)
1038 (if (stringp dired-directory
)
1040 (car dired-directory
))))
1042 (expand-file-name dired-dir
))))))
1043 (string-match qualifier it
)))
1045 ;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext")
1046 (define-ibuffer-filter size-gt
1047 "Toggle current view to buffers with size greater than QUALIFIER."
1048 (:description
"size greater than"
1050 (string-to-number (read-from-minibuffer "Filter by size greater than: ")))
1051 (> (with-current-buffer buf
(buffer-size))
1054 ;;;###autoload (autoload 'ibuffer-filter-by-size-lt "ibuf-ext")
1055 (define-ibuffer-filter size-lt
1056 "Toggle current view to buffers with size less than QUALIFIER."
1057 (:description
"size less than"
1059 (string-to-number (read-from-minibuffer "Filter by size less than: ")))
1060 (< (with-current-buffer buf
(buffer-size))
1063 ;;;###autoload (autoload 'ibuffer-filter-by-content "ibuf-ext")
1064 (define-ibuffer-filter content
1065 "Toggle current view to buffers whose contents match QUALIFIER."
1066 (:description
"content"
1067 :reader
(read-from-minibuffer "Filter by content (regexp): "))
1068 (with-current-buffer buf
1070 (goto-char (point-min))
1071 (re-search-forward qualifier nil t
))))
1073 ;;;###autoload (autoload 'ibuffer-filter-by-predicate "ibuf-ext")
1074 (define-ibuffer-filter predicate
1075 "Toggle current view to buffers for which QUALIFIER returns non-nil."
1076 (:description
"predicate"
1077 :reader
(read-minibuffer "Filter by predicate (form): "))
1078 (with-current-buffer buf
1084 (defun ibuffer-toggle-sorting-mode ()
1085 "Toggle the current sorting mode.
1086 Default sorting modes are:
1087 Recency - the last time the buffer was viewed
1088 Name - the name of the buffer
1089 Major Mode - the name of the major mode of the buffer
1090 Size - the size of the buffer"
1092 (let ((modes (mapcar 'car ibuffer-sorting-functions-alist
)))
1093 (add-to-list 'modes
'recency
)
1094 (setq modes
(sort modes
'string-lessp
))
1095 (let ((next (or (car-safe (cdr-safe (memq ibuffer-sorting-mode modes
)))
1097 (setq ibuffer-sorting-mode next
)
1098 (message "Sorting by %s" next
)))
1099 (ibuffer-redisplay t
))
1102 (defun ibuffer-invert-sorting ()
1103 "Toggle whether or not sorting is in reverse order."
1105 (setq ibuffer-sorting-reversep
(not ibuffer-sorting-reversep
))
1106 (message "Sorting order %s"
1107 (if ibuffer-sorting-reversep
1110 (ibuffer-redisplay t
))
1112 ;;;###autoload (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext")
1113 (define-ibuffer-sorter major-mode
1114 "Sort the buffers by major modes.
1115 Ordering is lexicographic."
1116 (:description
"major mode")
1117 (string-lessp (downcase
1118 (symbol-name (with-current-buffer
1122 (symbol-name (with-current-buffer
1126 ;;;###autoload (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext")
1127 (define-ibuffer-sorter mode-name
1128 "Sort the buffers by their mode name.
1129 Ordering is lexicographic."
1130 (:description
"major mode name")
1131 (string-lessp (downcase
1132 (with-current-buffer
1134 (format-mode-line mode-name
)))
1136 (with-current-buffer
1138 (format-mode-line mode-name
)))))
1140 ;;;###autoload (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext")
1141 (define-ibuffer-sorter alphabetic
1142 "Sort the buffers by their names.
1143 Ordering is lexicographic."
1144 (:description
"buffer name")
1146 (buffer-name (car a
))
1147 (buffer-name (car b
))))
1149 ;;;###autoload (autoload 'ibuffer-do-sort-by-size "ibuf-ext")
1150 (define-ibuffer-sorter size
1151 "Sort the buffers by their size."
1152 (:description
"size")
1153 (< (with-current-buffer (car a
)
1155 (with-current-buffer (car b
)
1158 ;;;###autoload (autoload 'ibuffer-do-sort-by-filename/process "ibuf-ext")
1159 (define-ibuffer-sorter filename
/process
1160 "Sort the buffers by their file name/process name."
1161 (:description
"file name")
1163 ;; FIXME: For now just compare the file name and the process name
1164 ;; (if it exists). Is there a better way to do this?
1165 (or (buffer-file-name (car a
))
1166 (let ((pr-a (get-buffer-process (car a
))))
1167 (and (processp pr-a
) (process-name pr-a
))))
1168 (or (buffer-file-name (car b
))
1169 (let ((pr-b (get-buffer-process (car b
))))
1170 (and (processp pr-b
) (process-name pr-b
))))))
1172 ;;; Functions to emulate bs.el
1175 (defun ibuffer-bs-show ()
1176 "Emulate `bs-show' from the bs.el package."
1178 (ibuffer t
"*Ibuffer-bs*" '((filename .
".*")) nil t
)
1179 (define-key (current-local-map) "a" 'ibuffer-bs-toggle-all
))
1181 (defun ibuffer-bs-toggle-all ()
1182 "Emulate `bs-toggle-show-all' from the bs.el package."
1184 (if ibuffer-filtering-qualifiers
1185 (ibuffer-pop-filter)
1186 (progn (ibuffer-push-filter '(filename .
".*"))
1187 (ibuffer-update nil t
))))
1192 (defun ibuffer-add-to-tmp-hide (regexp)
1193 "Add REGEXP to `ibuffer-tmp-hide-regexps'.
1194 This means that buffers whose name matches REGEXP will not be shown
1195 for this Ibuffer session."
1198 (read-from-minibuffer "Never show buffers matching: "
1199 (regexp-quote (buffer-name (ibuffer-current-buffer t
))))))
1200 (push regexp ibuffer-tmp-hide-regexps
))
1203 (defun ibuffer-add-to-tmp-show (regexp)
1204 "Add REGEXP to `ibuffer-tmp-show-regexps'.
1205 This means that buffers whose name matches REGEXP will always be shown
1206 for this Ibuffer session."
1209 (read-from-minibuffer "Always show buffers matching: "
1210 (regexp-quote (buffer-name (ibuffer-current-buffer t
))))))
1211 (push regexp ibuffer-tmp-show-regexps
))
1214 (defun ibuffer-forward-next-marked (&optional count mark direction
)
1215 "Move forward by COUNT marked buffers (default 1).
1217 If MARK is non-nil, it should be a character denoting the type of mark
1218 to move by. The default is `ibuffer-marked-char'.
1220 If DIRECTION is non-nil, it should be an integer; negative integers
1221 mean move backwards, non-negative integers mean move forwards."
1226 (setq mark ibuffer-marked-char
))
1230 (ibuffer-forward-line 0)
1231 (let ((opos (point))
1233 (ibuffer-forward-line direction
)
1234 (while (not (or (= (point) opos
)
1235 (eq (setq curmark
(ibuffer-current-mark))
1237 (ibuffer-forward-line direction
))
1238 (when (and (= (point) opos
)
1239 (not (eq (ibuffer-current-mark) mark
)))
1240 (error "No buffers with mark %c" mark
))))
1243 (defun ibuffer-backwards-next-marked (&optional count mark
)
1244 "Move backwards by COUNT marked buffers (default 1).
1246 If MARK is non-nil, it should be a character denoting the type of mark
1247 to move by. The default is `ibuffer-marked-char'."
1249 (ibuffer-forward-next-marked count mark -
1))
1252 (defun ibuffer-do-kill-lines ()
1253 "Hide all of the currently marked lines."
1255 (if (= (ibuffer-count-marked-lines) 0)
1256 (message "No buffers marked; use 'm' to mark a buffer")
1258 (ibuffer-map-marked-lines
1259 #'(lambda (buf mark
)
1261 (message "Killed %s lines" count
))))
1264 (defun ibuffer-jump-to-buffer (name)
1265 "Move point to the buffer whose name is NAME.
1267 If called interactively, prompt for a buffer name and go to the
1268 corresponding line in the Ibuffer buffer. If said buffer is in a
1269 hidden group filter, open it.
1271 If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
1272 visible buffers in the completion list. Calling the command with
1273 a prefix argument reverses the meaning of that variable."
1275 (let ((only-visible ibuffer-jump-offer-only-visible-buffers
))
1276 (when current-prefix-arg
1277 (setq only-visible
(not only-visible
)))
1279 (let ((table (mapcar #'(lambda (x)
1280 (buffer-name (car x
)))
1281 (ibuffer-current-state-list))))
1283 (error "No buffers!"))
1284 (completing-read "Jump to buffer: "
1286 (read-buffer "Jump to buffer: " nil t
)))))
1287 (when (not (string= "" name
))
1289 ;; Blindly search for our buffer: it is very likely that it is
1290 ;; not in a hidden filter group.
1291 (ibuffer-map-lines #'(lambda (buf marks
)
1292 (when (string= (buffer-name buf
) name
)
1293 (setq buf-point
(point))
1298 (not (null ibuffer-hidden-filter-groups
)))
1299 ;; We did not find our buffer. It must be in a hidden filter
1300 ;; group, so go through all hidden filter groups to find it.
1302 (dolist (group ibuffer-hidden-filter-groups
)
1303 (ibuffer-jump-to-filter-group group
)
1304 (ibuffer-toggle-filter-group)
1305 (ibuffer-map-lines #'(lambda (buf marks
)
1306 (when (string= (buffer-name buf
) name
)
1307 (setq buf-point
(point))
1312 (ibuffer-toggle-filter-group)))))
1313 (if (null buf-point
)
1314 ;; Still not found even though we expanded all hidden filter
1315 ;; groups: that must be because it's hidden by predicate:
1316 ;; we won't bother trying to display it.
1317 (error "No buffer with name %s" name
)
1318 (goto-char buf-point
)))))
1321 (defun ibuffer-diff-with-file ()
1322 "View the differences between this buffer and its associated file.
1323 This requires the external program \"diff\" to be in your `exec-path'."
1325 (let ((buf (ibuffer-current-buffer)))
1326 (unless (buffer-live-p buf
)
1327 (error "Buffer %s has been killed" buf
))
1328 (diff-buffer-with-file buf
)))
1331 (defun ibuffer-copy-filename-as-kill (&optional arg
)
1332 "Copy filenames of marked buffers into the kill ring.
1334 The names are separated by a space.
1335 If a buffer has no filename, it is ignored.
1337 With no prefix arg, use the filename sans its directory of each marked file.
1338 With a zero prefix arg, use the complete filename of each marked file.
1339 With \\[universal-argument], use the filename of each marked file relative
1340 to `ibuffer-default-directory' if non-nil, otherwise `default-directory'.
1342 You can then feed the file name(s) to other commands with \\[yank]."
1344 (if (zerop (ibuffer-count-marked-lines))
1345 (message "No buffers marked; use 'm' to mark a buffer")
1346 (let ((ibuffer-copy-filename-as-kill-result "")
1347 (type (cond ((zerop arg
)
1353 (ibuffer-map-marked-lines
1354 #'(lambda (buf mark
)
1355 (setq ibuffer-copy-filename-as-kill-result
1356 (concat ibuffer-copy-filename-as-kill-result
1357 (let ((name (buffer-file-name buf
)))
1364 name
(or ibuffer-default-directory
1365 default-directory
)))
1367 (file-name-nondirectory name
)))
1370 (kill-new ibuffer-copy-filename-as-kill-result
))))
1372 (defun ibuffer-mark-on-buffer (func &optional ibuffer-mark-on-buffer-mark group
)
1375 #'(lambda (buf mark
)
1376 (when (funcall func buf
)
1377 (ibuffer-set-mark-1 (or ibuffer-mark-on-buffer-mark
1378 ibuffer-marked-char
))
1382 (ibuffer-redisplay t
)
1383 (message "Marked %s buffers" count
)))
1386 (defun ibuffer-mark-by-name-regexp (regexp)
1387 "Mark all buffers whose name matches REGEXP."
1388 (interactive "sMark by name (regexp): ")
1389 (ibuffer-mark-on-buffer
1391 (string-match regexp
(buffer-name buf
)))))
1394 (defun ibuffer-mark-by-mode-regexp (regexp)
1395 "Mark all buffers whose major mode matches REGEXP."
1396 (interactive "sMark by major mode (regexp): ")
1397 (ibuffer-mark-on-buffer
1399 (with-current-buffer buf
1400 (string-match regexp
(format-mode-line mode-name nil nil buf
))))))
1403 (defun ibuffer-mark-by-file-name-regexp (regexp)
1404 "Mark all buffers whose file name matches REGEXP."
1405 (interactive "sMark by file name (regexp): ")
1406 (ibuffer-mark-on-buffer
1408 (let ((name (or (buffer-file-name buf
)
1409 (with-current-buffer buf
1411 (boundp 'dired-directory
)
1412 (stringp dired-directory
)
1413 dired-directory
)))))
1415 (string-match regexp name
))))))
1418 (defun ibuffer-mark-by-mode (mode)
1419 "Mark all buffers whose major mode equals MODE."
1421 (list (intern (completing-read "Mark by major mode: " obarray
1423 ;; kind of a hack...
1425 (string-match "-mode$"
1428 (let ((buf (ibuffer-current-buffer)))
1429 (if (and buf
(buffer-live-p buf
))
1430 (with-current-buffer buf
1431 (cons (symbol-name major-mode
)
1434 (ibuffer-mark-on-buffer
1436 (with-current-buffer buf
1437 (eq major-mode mode
)))))
1440 (defun ibuffer-mark-modified-buffers ()
1441 "Mark all modified buffers."
1443 (ibuffer-mark-on-buffer
1444 #'(lambda (buf) (buffer-modified-p buf
))))
1447 (defun ibuffer-mark-unsaved-buffers ()
1448 "Mark all modified buffers that have an associated file."
1450 (ibuffer-mark-on-buffer
1451 #'(lambda (buf) (and (with-current-buffer buf buffer-file-name
)
1452 (buffer-modified-p buf
)))))
1455 (defun ibuffer-mark-dissociated-buffers ()
1456 "Mark all buffers whose associated file does not exist."
1458 (ibuffer-mark-on-buffer
1460 (with-current-buffer buf
1462 (and buffer-file-name
1463 (not (file-exists-p buffer-file-name
)))
1464 (and (eq major-mode
'dired-mode
)
1465 (boundp 'dired-directory
)
1466 (stringp dired-directory
)
1467 (not (file-exists-p (file-name-directory dired-directory
)))))))))
1470 (defun ibuffer-mark-help-buffers ()
1471 "Mark buffers like *Help*, *Apropos*, *Info*."
1473 (ibuffer-mark-on-buffer
1475 (with-current-buffer buf
1476 (memq major-mode ibuffer-help-buffer-modes
)))))
1479 (defun ibuffer-mark-compressed-file-buffers ()
1480 "Mark buffers whose associated file is compressed."
1482 (ibuffer-mark-on-buffer
1484 (with-current-buffer buf
1485 (and buffer-file-name
1486 (string-match ibuffer-compressed-file-name-regexp
1487 buffer-file-name
))))))
1490 (defun ibuffer-mark-old-buffers ()
1491 "Mark buffers which have not been viewed in `ibuffer-old-time' hours."
1493 (ibuffer-mark-on-buffer
1495 (with-current-buffer buf
1496 ;; hacked from midnight.el
1497 (when buffer-display-time
1498 (let* ((tm (current-time))
1499 (now (+ (* (float (ash 1 16)) (car tm
))
1500 (float (cadr tm
)) (* 0.0000001 (caddr tm
))))
1501 (then (+ (* (float (ash 1 16))
1502 (car buffer-display-time
))
1503 (float (cadr buffer-display-time
))
1504 (* 0.0000001 (caddr buffer-display-time
)))))
1505 (> (- now then
) (* 60 60 ibuffer-old-time
))))))))
1508 (defun ibuffer-mark-special-buffers ()
1509 "Mark all buffers whose name begins and ends with '*'."
1511 (ibuffer-mark-on-buffer
1512 #'(lambda (buf) (string-match "^\\*.+\\*$"
1513 (buffer-name buf
)))))
1516 (defun ibuffer-mark-read-only-buffers ()
1517 "Mark all read-only buffers."
1519 (ibuffer-mark-on-buffer
1521 (with-current-buffer buf
1522 buffer-read-only
))))
1525 (defun ibuffer-mark-dired-buffers ()
1526 "Mark all `dired' buffers."
1528 (ibuffer-mark-on-buffer
1530 (with-current-buffer buf
1531 (eq major-mode
'dired-mode
)))))
1534 (defun ibuffer-do-occur (regexp &optional nlines
)
1535 "View lines which match REGEXP in all marked buffers.
1536 Optional argument NLINES says how many lines of context to display: it
1538 (interactive (occur-read-primary-args))
1539 (if (or (not (integerp nlines
))
1542 (when (zerop (ibuffer-count-marked-lines))
1543 (ibuffer-set-mark ibuffer-marked-char
))
1544 (let ((ibuffer-do-occur-bufs nil
))
1545 ;; Accumulate a list of marked buffers
1546 (ibuffer-map-marked-lines
1547 #'(lambda (buf mark
)
1548 (push buf ibuffer-do-occur-bufs
)))
1549 (occur-1 regexp nlines ibuffer-do-occur-bufs
)))
1553 ;; arch-tag: 9af21953-deda-4c30-b76d-f81d9128e76d
1554 ;;; ibuf-ext.el ends here