Mercurial > emacs
annotate lisp/ibuf-macs.el @ 94837:55eb2a3c59b4
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1153
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sat, 10 May 2008 05:34:55 +0000 |
parents | ee5932bf781d |
children | af4982c7c0f6 |
rev | line source |
---|---|
42702 | 1 ;;; ibuf-macs.el --- macros for ibuffer |
2 | |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, |
79721 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
42702 | 5 |
6 ;; Author: Colin Walters <walters@verbum.org> | |
49410
798119a6859c
* ibuffer.el (ibuffer-window-list): Remove.
John Paul Wallington <jpw@pobox.com>
parents:
47740
diff
changeset
|
7 ;; Maintainer: John Paul Wallington <jpw@gnu.org> |
42702 | 8 ;; Created: 6 Dec 2001 |
9 ;; Keywords: buffer, convenience | |
10 | |
44831
56a3e3132102
(ibuffer-save-marks): Call `ibuffer-redisplay-engine'.
Colin Walters <walters@gnu.org>
parents:
44573
diff
changeset
|
11 ;; This file is part of GNU Emacs. |
42702 | 12 |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
14 ;; it under the terms of the GNU General Public License as published by |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
16 ;; (at your option) any later version. |
42702 | 17 |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
18 ;; GNU Emacs is distributed in the hope that it will be useful, |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
21 ;; GNU General Public License for more details. |
42702 | 22 |
23 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94508
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
42702 | 25 |
45078 | 26 ;;; Commentary: |
27 | |
42702 | 28 ;;; Code: |
29 | |
42770
a7530850a26c
(toplevel): Require `cl' when compiling.
Colin Walters <walters@gnu.org>
parents:
42702
diff
changeset
|
30 (eval-when-compile |
a7530850a26c
(toplevel): Require `cl' when compiling.
Colin Walters <walters@gnu.org>
parents:
42702
diff
changeset
|
31 (require 'cl)) |
a7530850a26c
(toplevel): Require `cl' when compiling.
Colin Walters <walters@gnu.org>
parents:
42702
diff
changeset
|
32 |
42702 | 33 ;; From Paul Graham's "ANSI Common Lisp", adapted for Emacs Lisp here. |
34 (defmacro ibuffer-aif (test true-body &rest false-body) | |
35 "Evaluate TRUE-BODY or FALSE-BODY depending on value of TEST. | |
36 If TEST returns non-nil, bind `it' to the value, and evaluate | |
37 TRUE-BODY. Otherwise, evaluate forms in FALSE-BODY as if in `progn'. | |
38 Compare with `if'." | |
50010
d19b54decc23
(ibuffer-aif): Use `make-symbol' instead of
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
39 (let ((sym (make-symbol "ibuffer-aif-sym"))) |
42702 | 40 `(let ((,sym ,test)) |
41 (if ,sym | |
42 (let ((it ,sym)) | |
43 ,true-body) | |
44 (progn | |
45 ,@false-body))))) | |
46 ;; (put 'ibuffer-aif 'lisp-indent-function 2) | |
47 | |
48 (defmacro ibuffer-awhen (test &rest body) | |
49 "Evaluate BODY if TEST returns non-nil. | |
50 During evaluation of body, bind `it' to the value returned by TEST." | |
51 `(ibuffer-aif ,test | |
52 (progn ,@body) | |
53 nil)) | |
54 ;; (put 'ibuffer-awhen 'lisp-indent-function 1) | |
55 | |
56 (defmacro ibuffer-save-marks (&rest body) | |
57 "Save the marked status of the buffers and execute BODY; restore marks." | |
50010
d19b54decc23
(ibuffer-aif): Use `make-symbol' instead of
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
58 (let ((bufsym (make-symbol "bufsym"))) |
42702 | 59 `(let ((,bufsym (current-buffer)) |
60 (ibuffer-save-marks-tmp-mark-list (ibuffer-current-state-list))) | |
61 (unwind-protect | |
62 (progn | |
63 (save-excursion | |
64 ,@body)) | |
65 (with-current-buffer ,bufsym | |
44831
56a3e3132102
(ibuffer-save-marks): Call `ibuffer-redisplay-engine'.
Colin Walters <walters@gnu.org>
parents:
44573
diff
changeset
|
66 (ibuffer-redisplay-engine |
42702 | 67 ;; Get rid of dead buffers |
68 (delq nil | |
69 (mapcar #'(lambda (e) (when (buffer-live-p (car e)) | |
70 e)) | |
71 ibuffer-save-marks-tmp-mark-list))) | |
72 (ibuffer-redisplay t)))))) | |
73 ;; (put 'ibuffer-save-marks 'lisp-indent-function 0) | |
74 | |
75 ;;;###autoload | |
69764
986a4b641e9e
* ibuf-macs.el (define-ibuffer-column): Add a new key:
Dan Nicolaescu <dann@ics.uci.edu>
parents:
68651
diff
changeset
|
76 (defmacro* define-ibuffer-column (symbol (&key name inline props summarizer |
986a4b641e9e
* ibuf-macs.el (define-ibuffer-column): Add a new key:
Dan Nicolaescu <dann@ics.uci.edu>
parents:
68651
diff
changeset
|
77 header-mouse-map) &rest body) |
42702 | 78 "Define a column SYMBOL for use with `ibuffer-formats'. |
79 | |
80 BODY will be called with `buffer' bound to the buffer object, and | |
45442
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
81 `mark' bound to the current mark on the buffer. The original ibuffer |
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
82 buffer will be bound to `ibuffer-buf'. |
42702 | 83 |
84 If NAME is given, it will be used as a title for the column. | |
85 Otherwise, the title will default to a capitalized version of the | |
86 SYMBOL's name. PROPS is a plist of additional properties to add to | |
43103
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
87 the text, such as `mouse-face'. And SUMMARIZER, if given, is a |
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
88 function which will be passed a list of all the strings in its column; |
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
89 it should return a string to display at the bottom. |
42702 | 90 |
69768
cbdede292c6e
(define-ibuffer-column): Document the new parameter.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
69764
diff
changeset
|
91 If HEADER-MOUSE-MAP is given, it will be used as a keymap for the |
cbdede292c6e
(define-ibuffer-column): Document the new parameter.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
69764
diff
changeset
|
92 title of the column. |
cbdede292c6e
(define-ibuffer-column): Document the new parameter.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
69764
diff
changeset
|
93 |
42702 | 94 Note that this macro expands into a `defun' for a function named |
95 ibuffer-make-column-NAME. If INLINE is non-nil, then the form will be | |
96 inlined into the compiled format versions. This means that if you | |
97 change its definition, you should explicitly call | |
55509
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
98 `ibuffer-recompile-formats'. |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
99 |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
100 \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" |
42702 | 101 (let* ((sym (intern (concat "ibuffer-make-column-" |
102 (symbol-name symbol)))) | |
43767
6bc5cbc8912d
(define-ibuffer-column): Add :summarizer property.
Colin Walters <walters@gnu.org>
parents:
43103
diff
changeset
|
103 (bod-1 `(with-current-buffer buffer |
42702 | 104 ,@body)) |
105 (bod (if props | |
106 `(propertize | |
107 ,bod-1 | |
108 ,@props) | |
109 bod-1))) | |
110 `(progn | |
111 ,(if inline | |
112 `(push '(,sym ,bod) ibuffer-inline-columns) | |
45709
77b4e2d5f8dd
(define-ibuffer-column): Don't create a third argument for the
Colin Walters <walters@gnu.org>
parents:
45442
diff
changeset
|
113 `(defun ,sym (buffer mark) |
42702 | 114 ,bod)) |
115 (put (quote ,sym) 'ibuffer-column-name | |
116 ,(if (stringp name) | |
117 name | |
118 (capitalize (symbol-name symbol)))) | |
69764
986a4b641e9e
* ibuf-macs.el (define-ibuffer-column): Add a new key:
Dan Nicolaescu <dann@ics.uci.edu>
parents:
68651
diff
changeset
|
119 ,(if header-mouse-map `(put (quote ,sym) 'header-mouse-map ,header-mouse-map)) |
43103
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
120 ,(if summarizer |
43767
6bc5cbc8912d
(define-ibuffer-column): Add :summarizer property.
Colin Walters <walters@gnu.org>
parents:
43103
diff
changeset
|
121 ;; Store the name of the summarizing function. |
43103
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
122 `(put (quote ,sym) 'ibuffer-column-summarizer |
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
123 (quote ,summarizer))) |
7f95aeaa47b3
(define-ibuffer-column): Add beginnings of support for a summary
Colin Walters <walters@gnu.org>
parents:
42770
diff
changeset
|
124 ,(if summarizer |
43767
6bc5cbc8912d
(define-ibuffer-column): Add :summarizer property.
Colin Walters <walters@gnu.org>
parents:
43103
diff
changeset
|
125 ;; This will store the actual values of the column |
6bc5cbc8912d
(define-ibuffer-column): Add :summarizer property.
Colin Walters <walters@gnu.org>
parents:
43103
diff
changeset
|
126 ;; summary. |
6bc5cbc8912d
(define-ibuffer-column): Add :summarizer property.
Colin Walters <walters@gnu.org>
parents:
43103
diff
changeset
|
127 `(put (quote ,sym) 'ibuffer-column-summary nil)) |
42702 | 128 :autoload-end))) |
129 ;; (put 'define-ibuffer-column 'lisp-indent-function 'defun) | |
130 | |
131 ;;;###autoload | |
132 (defmacro* define-ibuffer-sorter (name documentation | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49410
diff
changeset
|
133 (&key |
42702 | 134 description) |
135 &rest body) | |
136 "Define a method of sorting named NAME. | |
137 DOCUMENTATION is the documentation of the function, which will be called | |
138 `ibuffer-do-sort-by-NAME'. | |
139 DESCRIPTION is a short string describing the sorting method. | |
140 | |
141 For sorting, the forms in BODY will be evaluated with `a' bound to one | |
142 buffer object, and `b' bound to another. BODY should return a non-nil | |
55509
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
143 value if and only if `a' is \"less than\" `b'. |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
144 |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
145 \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" |
42702 | 146 `(progn |
147 (defun ,(intern (concat "ibuffer-do-sort-by-" (symbol-name name))) () | |
148 ,(or documentation "No :documentation specified for this sorting method.") | |
149 (interactive) | |
150 (setq ibuffer-sorting-mode ',name) | |
94508
4d31120b081e
(define-ibuffer-sorter): Define the sorter to reverse sorting order if
John Paul Wallington <jpw@pobox.com>
parents:
93975
diff
changeset
|
151 (when (eq ibuffer-sorting-mode ibuffer-last-sorting-mode) |
4d31120b081e
(define-ibuffer-sorter): Define the sorter to reverse sorting order if
John Paul Wallington <jpw@pobox.com>
parents:
93975
diff
changeset
|
152 (setq ibuffer-sorting-reversep (not ibuffer-sorting-reversep))) |
4d31120b081e
(define-ibuffer-sorter): Define the sorter to reverse sorting order if
John Paul Wallington <jpw@pobox.com>
parents:
93975
diff
changeset
|
153 (ibuffer-redisplay t) |
4d31120b081e
(define-ibuffer-sorter): Define the sorter to reverse sorting order if
John Paul Wallington <jpw@pobox.com>
parents:
93975
diff
changeset
|
154 (setq ibuffer-last-sorting-mode ',name)) |
42702 | 155 (push (list ',name ,description |
156 #'(lambda (a b) | |
157 ,@body)) | |
158 ibuffer-sorting-functions-alist) | |
159 :autoload-end)) | |
160 ;; (put 'define-ibuffer-sorter 'lisp-indent-function 1) | |
161 | |
162 ;;;###autoload | |
163 (defmacro* define-ibuffer-op (op args | |
164 documentation | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49410
diff
changeset
|
165 (&key |
42702 | 166 interactive |
167 mark | |
168 modifier-p | |
169 dangerous | |
170 (opstring "operated on") | |
171 (active-opstring "Operate on") | |
172 complex) | |
173 &rest body) | |
45442
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
174 "Generate a function which operates on a buffer. |
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
175 OP becomes the name of the function; if it doesn't begin with |
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
176 `ibuffer-do-', then that is prepended to it. |
42702 | 177 When an operation is performed, this function will be called once for |
178 each marked buffer, with that buffer current. | |
179 | |
180 ARGS becomes the formal parameters of the function. | |
181 DOCUMENTATION becomes the docstring of the function. | |
182 INTERACTIVE becomes the interactive specification of the function. | |
183 MARK describes which type of mark (:deletion, or nil) this operation | |
184 uses. :deletion means the function operates on buffers marked for | |
185 deletion, otherwise it acts on normally marked buffers. | |
186 MODIFIER-P describes how the function modifies buffers. This is used | |
187 to set the modification flag of the Ibuffer buffer itself. Valid | |
188 values are: | |
189 nil - the function never modifiers buffers | |
190 t - the function it always modifies buffers | |
191 :maybe - attempt to discover this information by comparing the | |
192 buffer's modification flag. | |
193 DANGEROUS is a boolean which should be set if the user should be | |
194 prompted before performing this operation. | |
195 OPSTRING is a string which will be displayed to the user after the | |
196 operation is complete, in the form: | |
197 \"Operation complete; OPSTRING x buffers\" | |
198 ACTIVE-OPSTRING is a string which will be displayed to the user in a | |
199 confirmation message, in the form: | |
200 \"Really ACTIVE-OPSTRING x buffers?\" | |
201 COMPLEX means this function is special; see the source code of this | |
55509
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
202 macro for exactly what it does. |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
203 |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
204 \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" |
42702 | 205 `(progn |
45442
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
206 (defun ,(intern (concat (if (string-match "^ibuffer-do" (symbol-name op)) |
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
207 "" "ibuffer-do-") (symbol-name op))) |
5bc8bee6a228
(define-ibuffer-column): Add third argument `ibuffer-buf'.
Colin Walters <walters@gnu.org>
parents:
45078
diff
changeset
|
208 ,args |
42702 | 209 ,(if (stringp documentation) |
210 documentation | |
211 (format "%s marked buffers." active-opstring)) | |
212 ,(if (not (null interactive)) | |
213 `(interactive ,interactive) | |
214 '(interactive)) | |
215 (assert (eq major-mode 'ibuffer-mode)) | |
216 (setq ibuffer-did-modification nil) | |
217 (let ((marked-names (,(case mark | |
218 (:deletion | |
219 'ibuffer-deletion-marked-buffer-names) | |
220 (t | |
221 'ibuffer-marked-buffer-names))))) | |
222 (when (null marked-names) | |
223 (setq marked-names (list (buffer-name (ibuffer-current-buffer)))) | |
224 (ibuffer-set-mark ,(case mark | |
225 (:deletion | |
226 'ibuffer-deletion-char) | |
227 (t | |
228 'ibuffer-marked-char)))) | |
229 ,(let* ((finish (append | |
230 '(progn) | |
231 (if (eq modifier-p t) | |
232 '((setq ibuffer-did-modification t)) | |
233 ()) | |
234 `((ibuffer-redisplay t) | |
235 (message ,(concat "Operation finished; " opstring " %s buffers") count)))) | |
236 (inner-body (if complex | |
237 `(progn ,@body) | |
238 `(progn | |
239 (with-current-buffer buf | |
240 (save-excursion | |
241 ,@body)) | |
242 t))) | |
243 (body `(let ((count | |
244 (,(case mark | |
245 (:deletion | |
246 'ibuffer-map-deletion-lines) | |
247 (t | |
248 'ibuffer-map-marked-lines)) | |
44573
3e16ea61b8c4
Update callers of `ibuffer-map-lines'.
Colin Walters <walters@gnu.org>
parents:
43767
diff
changeset
|
249 #'(lambda (buf mark) |
42702 | 250 ,(if (eq modifier-p :maybe) |
251 `(let ((ibuffer-tmp-previous-buffer-modification | |
252 (buffer-modified-p buf))) | |
253 (prog1 ,inner-body | |
254 (when (not (eq ibuffer-tmp-previous-buffer-modification | |
255 (buffer-modified-p buf))) | |
256 (setq ibuffer-did-modification t)))) | |
257 inner-body))))) | |
258 ,finish))) | |
259 (if dangerous | |
260 `(when (ibuffer-confirm-operation-on ,active-opstring marked-names) | |
261 ,body) | |
262 body)))) | |
263 :autoload-end)) | |
264 ;; (put 'define-ibuffer-op 'lisp-indent-function 2) | |
265 | |
266 ;;;###autoload | |
267 (defmacro* define-ibuffer-filter (name documentation | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49410
diff
changeset
|
268 (&key |
42702 | 269 reader |
270 description) | |
271 &rest body) | |
272 "Define a filter named NAME. | |
273 DOCUMENTATION is the documentation of the function. | |
274 READER is a form which should read a qualifier from the user. | |
275 DESCRIPTION is a short string describing the filter. | |
276 | |
277 BODY should contain forms which will be evaluated to test whether or | |
278 not a particular buffer should be displayed or not. The forms in BODY | |
279 will be evaluated with BUF bound to the buffer object, and QUALIFIER | |
55509
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
280 bound to the current value of the filter. |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
281 |
dbf692d994dc
(define-ibuffer-column, define-ibuffer-sorter, define-ibuffer-filter): Add usage
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
282 \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" |
42702 | 283 (let ((fn-name (intern (concat "ibuffer-filter-by-" (symbol-name name))))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49410
diff
changeset
|
284 `(progn |
42702 | 285 (defun ,fn-name (qualifier) |
286 ,(concat (or documentation "This filter is not documented.")) | |
287 (interactive (list ,reader)) | |
288 (ibuffer-push-filter (cons ',name qualifier)) | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
289 (message "%s" |
42702 | 290 (format ,(concat (format "Filter by %s added: " description) |
291 " %s") | |
292 qualifier)) | |
293 (ibuffer-update nil t)) | |
294 (push (list ',name ,description | |
295 #'(lambda (buf qualifier) | |
296 ,@body)) | |
297 ibuffer-filtering-alist) | |
298 :autoload-end))) | |
299 ;; (put 'define-ibuffer-filter 'lisp-indent-function 2) | |
300 | |
301 (provide 'ibuf-macs) | |
302 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79721
diff
changeset
|
303 ;; arch-tag: 2748edce-82c9-4cd9-9d9d-bd73e43c20c5 |
42702 | 304 ;;; ibuf-macs.el ends here |