Mercurial > emacs
annotate lisp/ibuffer.el @ 46772:9bc85060942d
(ibuffer-hooks): Rename to `ibuffer-hook'; Add defvaralias for
compatibility.
(ibuffer-mode-hooks): Rename to `ibuffer-mode-hook'; Add defvaralias
for compatibility.
author | Colin Walters <walters@gnu.org> |
---|---|
date | Thu, 01 Aug 2002 01:24:10 +0000 |
parents | 06873cff56e8 |
children | 86fa1b4393a2 |
rev | line source |
---|---|
42702 | 1 ;;; ibuffer.el --- operate on buffers like dired |
2 | |
42771
ed597889bfc8
(toplevel): Remove X-RCS, URL, Compatibility headers. Update
Colin Walters <walters@gnu.org>
parents:
42702
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. |
42702 | 4 |
5 ;; Author: Colin Walters <walters@verbum.org> | |
6 ;; Created: 8 Sep 2000 | |
7 ;; Keywords: buffer, convenience | |
8 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
42702 | 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 ;; ibuffer.el is an advanced replacement for the `buffer-menu' which | |
29 ;; is normally distributed with Emacs. Its interface is intended to | |
30 ;; be analogous to that of Dired. | |
31 | |
32 ;;; Code: | |
33 | |
34 (eval-when-compile | |
35 (require 'cl) | |
36 (require 'ibuf-macs) | |
37 (require 'dired)) | |
38 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
39 (require 'font-lock) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
40 |
42702 | 41 ;;; Compatibility |
42 (eval-and-compile | |
43 (if (fboundp 'window-list) | |
44 (defun ibuffer-window-list () | |
45 (window-list nil 'nomini)) | |
46 (defun ibuffer-window-list () | |
47 (let ((ibuffer-window-list-result nil)) | |
48 (walk-windows #'(lambda (win) (push win ibuffer-window-list-result)) 'nomini) | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
49 (nreverse ibuffer-window-list-result))))) |
42702 | 50 |
51 (defgroup ibuffer nil | |
52 "An advanced replacement for `buffer-menu'. | |
53 | |
54 Ibuffer allows you to operate on buffers in a manner much like Dired. | |
55 Operations include sorting, marking by regular expression, and | |
56 the ability to filter the displayed buffers by various criteria." | |
57 :group 'convenience) | |
58 | |
59 (defcustom ibuffer-formats '((mark modified read-only " " (name 16 16 :left :elide) | |
60 " " (size 6 -1 :right) | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
61 " " (mode 16 16 :right :elide) " " filename-and-process) |
42702 | 62 (mark " " (name 16 -1) " " filename)) |
63 "A list of ways to display buffer lines. | |
64 | |
65 With Ibuffer, you are not limited to displaying just certain | |
66 attributes of a buffer such as size, name, and mode in a particular | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
67 order. Through this variable, you can completely customize and |
42702 | 68 control the appearance of an Ibuffer buffer. See also |
69 `define-ibuffer-column', which allows you to define your own columns | |
70 for display. | |
71 | |
72 This variable has the form | |
42873
e4be1ae52e5c
(toplevel, ibuffer-default-directory): Doc fixes.
Colin Walters <walters@gnu.org>
parents:
42871
diff
changeset
|
73 ((COLUMN COLUMN ...) (COLUMN COLUMN ...) ...) |
42702 | 74 Each element in `ibuffer-formats' should be a list containing COLUMN |
75 specifiers. A COLUMN can be any of the following: | |
76 | |
77 SYMBOL - A symbol naming the column. Predefined columns are: | |
78 mark modified read-only name size mode process filename | |
79 When you define your own columns using `define-ibuffer-column', just | |
80 use their name like the predefined columns here. This entry can | |
81 also be a function of two arguments, which should return a string. | |
82 The first argument is the buffer object, and the second is the mark | |
83 on that buffer. | |
84 or | |
85 \"STRING\" - A literal string to display. | |
86 or | |
87 (SYMBOL MIN-SIZE MAX-SIZE &optional ALIGN ELIDE) - SYMBOL is a | |
88 symbol naming the column, and MIN-SIZE and MAX-SIZE are integers (or | |
89 functions of no arguments returning an integer) which constrict the | |
90 size of a column. If MAX-SIZE is -1, there is no upper bound. The | |
91 default values are 0 and -1, respectively. If MIN-SIZE is negative, | |
92 use the end of the string. The optional element ALIGN describes the | |
93 alignment of the column; it can be :left, :center or :right. The | |
94 optional element ELIDE describes whether or not to elide the column | |
95 if it is too long; valid values are :elide and nil. The default is | |
96 nil (don't elide). | |
97 | |
98 Some example of valid entries in `ibuffer-formats', with | |
99 description (also, feel free to try them out, and experiment with your | |
100 own!): | |
101 | |
102 (mark \" \" name) | |
103 This format just displays the current mark (if any) and the name of | |
104 the buffer, separated by a space. | |
105 (mark modified read-only \" \" (name 16 16 :left) \" \" (size 6 -1 :right)) | |
106 This format displays the current mark (if any), its modification and | |
107 read-only status, as well as the name of the buffer and its size. In | |
108 this format, the name is restricted to 16 characters (longer names | |
43104
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
109 will be truncated, and shorter names will be padded with spaces), and |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
110 the name is also aligned to the left. The size of the buffer will |
42702 | 111 be padded with spaces up to a minimum of six characters, but there is |
112 no upper limit on its size. The size will also be aligned to the | |
113 right. | |
114 | |
115 Thus, if you wanted to use these two formats, add | |
116 | |
117 (setq ibuffer-formats '((mark \" \" name) | |
118 (mark modified read-only | |
119 (name 16 16 :left) (size 6 -1 :right)))) | |
120 | |
121 to your ~/.emacs file. | |
122 | |
123 Using \\[ibuffer-switch-format], you can rotate the display between | |
124 the specified formats in the list." | |
125 :type '(repeat sexp) | |
126 :group 'ibuffer) | |
127 | |
128 (defcustom ibuffer-always-compile-formats (featurep 'bytecomp) | |
129 "If non-nil, then use the byte-compiler to optimize `ibuffer-formats'. | |
130 This will increase the redisplay speed, at the cost of loading the | |
131 elisp byte-compiler." | |
132 :type 'boolean | |
133 :group 'ibuffer) | |
134 | |
135 (defcustom ibuffer-fontification-alist | |
46770
06873cff56e8
(ibuffer-fontification-alist): Use `font-lock-constant-face' instead
Colin Walters <walters@gnu.org>
parents:
46682
diff
changeset
|
136 `((10 buffer-read-only font-lock-constant-face) |
42702 | 137 (15 (string-match "^*" (buffer-name)) font-lock-keyword-face) |
138 (20 (string-match "^ " (buffer-name)) font-lock-warning-face) | |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
139 (25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face) |
42702 | 140 (30 (eq major-mode 'dired-mode) font-lock-function-name-face)) |
141 "An alist describing how to fontify buffers. | |
142 Each element should be of the form (PRIORITY FORM FACE), where | |
143 PRIORITY is an integer, FORM is an arbitrary form to evaluate in the | |
144 buffer, and FACE is the face to use for fontification. If the FORM | |
145 evaluates to non-nil, then FACE will be put on the buffer name. The | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
146 element with the highest PRIORITY takes precedence. |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
147 |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
148 If you change this variable, you must kill the ibuffer buffer and |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
149 recreate it for the change to take effect." |
42702 | 150 :type '(repeat |
151 (list (integer :tag "Priority") | |
152 (sexp :tag "Test Form") | |
153 face)) | |
154 :group 'ibuffer) | |
155 | |
156 (defcustom ibuffer-use-other-window nil | |
157 "If non-nil, display the Ibuffer in another window by default." | |
158 :type 'boolean | |
159 :group 'ibuffer) | |
160 | |
161 (defcustom ibuffer-default-shrink-to-minimum-size nil | |
162 "If non-nil, minimize the size of the Ibuffer window by default." | |
163 :type 'boolean | |
164 :group 'ibuffer) | |
165 (defvar ibuffer-shrink-to-minimum-size nil) | |
166 | |
43382
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
167 (defcustom ibuffer-truncate-lines t |
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
168 "If non-nil, do not display continuation lines." |
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
169 :type 'boolean |
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
170 :group 'ibuffer) |
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
171 |
42702 | 172 (defcustom ibuffer-case-fold-search case-fold-search |
173 "If non-nil, ignore case when searching." | |
174 :type 'boolean | |
175 :group 'ibuffer) | |
176 | |
177 (defcustom ibuffer-default-sorting-mode 'recency | |
178 "The criteria by which to sort the buffers. | |
179 | |
180 Note that this variable is local to each ibuffer buffer. Thus, you | |
181 can have multiple ibuffer buffers open, each with a different sorted | |
182 view of the buffers." | |
183 :type '(choice (const :tag "Last view time" :value recency) | |
184 (const :tag "Lexicographic" :value alphabetic) | |
185 (const :tag "Buffer size" :value size) | |
186 (const :tag "Major mode" :value major-mode)) | |
187 :group 'ibuffer) | |
188 (defvar ibuffer-sorting-mode nil) | |
189 | |
190 (defcustom ibuffer-default-sorting-reversep nil | |
191 "If non-nil, reverse the default sorting order." | |
192 :type 'boolean | |
193 :group 'ibuffer) | |
194 (defvar ibuffer-sorting-reversep nil) | |
195 | |
196 (defcustom ibuffer-elide-long-columns nil | |
197 "If non-nil, then elide column entries which exceed their max length. | |
198 This variable is deprecated; use the :elide argument of | |
199 `ibuffer-formats' to elide just certain columns." | |
200 :type 'boolean | |
201 :group 'ibuffer) | |
202 | |
203 (defcustom ibuffer-eliding-string "..." | |
204 "The string to use for eliding long columns." | |
205 :type 'string | |
206 :group 'ibuffer) | |
207 | |
208 (defcustom ibuffer-maybe-show-predicates `(,(lambda (buf) | |
209 (and (string-match "^ " (buffer-name buf)) | |
210 (null buffer-file-name)))) | |
211 "A list of predicates (a regexp or function) for buffers to display conditionally. | |
212 If a regexp, then it will be matched against the buffer's name. | |
213 If a function, it will be called with the buffer as an argument, and | |
214 should return non-nil if this buffer should be shown. | |
215 | |
216 Viewing of buffers hidden because of these predicates is enabled by | |
217 giving a non-nil prefix argument to `ibuffer-update'. Note that this | |
218 specialized filtering occurs before real filtering." | |
219 :type '(repeat (choice regexp function)) | |
220 :group 'ibuffer) | |
221 | |
222 (defvar ibuffer-current-format nil) | |
223 | |
45839
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
224 (defcustom ibuffer-movement-cycle t |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
225 "If non-nil, then forward and backwards movement commands cycle." |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
226 :type 'boolean |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
227 :group 'ibuffer) |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
228 |
42702 | 229 (defcustom ibuffer-modified-char ?* |
230 "The character to display for modified buffers." | |
231 :type 'character | |
232 :group 'ibuffer) | |
233 | |
234 (defcustom ibuffer-read-only-char ?% | |
235 "The character to display for read-only buffers." | |
236 :type 'character | |
237 :group 'ibuffer) | |
238 | |
239 (defcustom ibuffer-marked-char ?> | |
240 "The character to display for marked buffers." | |
241 :type 'character | |
242 :group 'ibuffer) | |
243 | |
244 (defcustom ibuffer-deletion-char ?D | |
245 "The character to display for buffers marked for deletion." | |
246 :type 'character | |
247 :group 'ibuffer) | |
248 | |
249 (defcustom ibuffer-expert nil | |
250 "If non-nil, don't ask for confirmation of \"dangerous\" operations." | |
251 :type 'boolean | |
252 :group 'ibuffer) | |
253 | |
254 (defcustom ibuffer-view-ibuffer nil | |
255 "If non-nil, display the current Ibuffer buffer itself. | |
256 Note that this has a drawback - the data about the current Ibuffer | |
257 buffer will most likely be inaccurate. This includes modification | |
258 state, size, etc." | |
259 :type 'boolean | |
260 :group 'ibuffer) | |
261 | |
262 (defcustom ibuffer-always-show-last-buffer nil | |
263 "If non-nil, always display the previous buffer. This variable | |
264 takes precedence over filtering, and even | |
265 `ibuffer-never-show-predicates'." | |
266 :type '(choice (const :tag "Always" :value t) | |
267 (const :tag "Never" :value nil) | |
268 (const :tag "Always except minibuffer" :value :nomini)) | |
269 :group 'ibuffer) | |
270 | |
271 (defcustom ibuffer-use-header-line (boundp 'header-line-format) | |
272 "If non-nil, display a header line containing current filters. | |
273 This feature only works on Emacs 21 or later." | |
274 :type 'boolean | |
275 :group 'ibuffer) | |
276 | |
277 (defcustom ibuffer-default-directory nil | |
278 "The default directory to use for a new ibuffer buffer. | |
42873
e4be1ae52e5c
(toplevel, ibuffer-default-directory): Doc fixes.
Colin Walters <walters@gnu.org>
parents:
42871
diff
changeset
|
279 If nil, inherit the directory of the buffer in which `ibuffer' was |
42702 | 280 called. Otherwise, this variable should be a string naming a |
281 directory, like `default-directory'." | |
282 :type '(choice (const :tag "Inherit" :value nil) | |
283 string) | |
284 :group 'ibuffer) | |
285 | |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
286 (defcustom ibuffer-help-buffer-modes '(help-mode apropos-mode |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
287 Info-mode Info-edit-mode) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
288 "List of \"Help\" major modes." |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
289 :type '(repeat function) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
290 :group 'ibuffer) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
291 |
46772
9bc85060942d
(ibuffer-hooks): Rename to `ibuffer-hook'; Add defvaralias for
Colin Walters <walters@gnu.org>
parents:
46770
diff
changeset
|
292 (defcustom ibuffer-hook nil |
42702 | 293 "Hooks run when `ibuffer' is called." |
294 :type 'hook | |
295 :group 'ibuffer) | |
46772
9bc85060942d
(ibuffer-hooks): Rename to `ibuffer-hook'; Add defvaralias for
Colin Walters <walters@gnu.org>
parents:
46770
diff
changeset
|
296 (defvaralias 'ibuffer-hooks 'ibuffer-hook) |
42702 | 297 |
46772
9bc85060942d
(ibuffer-hooks): Rename to `ibuffer-hook'; Add defvaralias for
Colin Walters <walters@gnu.org>
parents:
46770
diff
changeset
|
298 (defcustom ibuffer-mode-hook nil |
42702 | 299 "Hooks run upon entry into `ibuffer-mode'." |
300 :type 'hook | |
301 :group 'ibuffer) | |
46772
9bc85060942d
(ibuffer-hooks): Rename to `ibuffer-hook'; Add defvaralias for
Colin Walters <walters@gnu.org>
parents:
46770
diff
changeset
|
302 (defvaralias 'ibuffer-mode-hooks 'ibuffer-mode-hook) |
42702 | 303 |
304 (defcustom ibuffer-marked-face 'font-lock-warning-face | |
305 "Face used for displaying marked buffers." | |
306 :type 'face | |
307 :group 'ibuffer) | |
308 | |
309 (defcustom ibuffer-deletion-face 'font-lock-type-face | |
310 "Face used for displaying buffers marked for deletion." | |
311 :type 'face | |
312 :group 'ibuffer) | |
313 | |
314 (defcustom ibuffer-title-face 'font-lock-type-face | |
315 "Face used for the title string." | |
316 :type 'face | |
317 :group 'ibuffer) | |
318 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
319 (defcustom ibuffer-filter-group-name-face 'bold |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
320 "Face used for displaying filtering group names." |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
321 :type 'face |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
322 :group 'ibuffer) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
323 |
42702 | 324 (defcustom ibuffer-directory-abbrev-alist nil |
325 "An alist of file name abbreviations like `directory-abbrev-alist'." | |
326 :type '(repeat (cons :format "%v" | |
327 :value ("" . "") | |
328 (regexp :tag "From") | |
329 (regexp :tag "To"))) | |
330 :group 'ibuffer) | |
331 | |
332 (defvar ibuffer-mode-map nil) | |
333 (defvar ibuffer-mode-operate-map nil) | |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
334 (defvar ibuffer-mode-groups-popup nil) |
42702 | 335 (unless ibuffer-mode-map |
336 (let ((map (make-sparse-keymap)) | |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
337 (operate-map (make-sparse-keymap "Operate")) |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
338 (groups-map (make-sparse-keymap "Filter Groups"))) |
42702 | 339 (define-key map (kbd "0") 'digit-argument) |
340 (define-key map (kbd "1") 'digit-argument) | |
341 (define-key map (kbd "2") 'digit-argument) | |
342 (define-key map (kbd "3") 'digit-argument) | |
343 (define-key map (kbd "4") 'digit-argument) | |
344 (define-key map (kbd "5") 'digit-argument) | |
345 (define-key map (kbd "6") 'digit-argument) | |
346 (define-key map (kbd "7") 'digit-argument) | |
347 (define-key map (kbd "8") 'digit-argument) | |
348 (define-key map (kbd "9") 'digit-argument) | |
349 | |
350 (define-key map (kbd "m") 'ibuffer-mark-forward) | |
351 (define-key map (kbd "t") 'ibuffer-toggle-marks) | |
352 (define-key map (kbd "u") 'ibuffer-unmark-forward) | |
353 (define-key map (kbd "=") 'ibuffer-diff-with-file) | |
354 (define-key map (kbd "j") 'ibuffer-jump-to-buffer) | |
355 (define-key map (kbd "DEL") 'ibuffer-unmark-backward) | |
356 (define-key map (kbd "M-DEL") 'ibuffer-unmark-all) | |
357 (define-key map (kbd "* *") 'ibuffer-unmark-all) | |
358 (define-key map (kbd "* M") 'ibuffer-mark-by-mode) | |
359 (define-key map (kbd "* m") 'ibuffer-mark-modified-buffers) | |
360 (define-key map (kbd "* u") 'ibuffer-mark-unsaved-buffers) | |
361 (define-key map (kbd "* s") 'ibuffer-mark-special-buffers) | |
362 (define-key map (kbd "* r") 'ibuffer-mark-read-only-buffers) | |
363 (define-key map (kbd "* /") 'ibuffer-mark-dired-buffers) | |
364 (define-key map (kbd "* e") 'ibuffer-mark-dissociated-buffers) | |
365 (define-key map (kbd "* h") 'ibuffer-mark-help-buffers) | |
366 (define-key map (kbd ".") 'ibuffer-mark-old-buffers) | |
367 | |
368 (define-key map (kbd "d") 'ibuffer-mark-for-delete) | |
369 (define-key map (kbd "C-d") 'ibuffer-mark-for-delete-backwards) | |
370 (define-key map (kbd "k") 'ibuffer-mark-for-delete) | |
371 (define-key map (kbd "x") 'ibuffer-do-kill-on-deletion-marks) | |
372 | |
373 ;; immediate operations | |
374 (define-key map (kbd "n") 'ibuffer-forward-line) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
375 (define-key map (kbd "<down>") 'ibuffer-forward-line) |
42702 | 376 (define-key map (kbd "SPC") 'forward-line) |
377 (define-key map (kbd "p") 'ibuffer-backward-line) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
378 (define-key map (kbd "<up>") 'ibuffer-backward-line) |
42702 | 379 (define-key map (kbd "M-}") 'ibuffer-forward-next-marked) |
380 (define-key map (kbd "M-{") 'ibuffer-backwards-next-marked) | |
381 (define-key map (kbd "l") 'ibuffer-redisplay) | |
382 (define-key map (kbd "g") 'ibuffer-update) | |
383 (define-key map "`" 'ibuffer-switch-format) | |
384 (define-key map "-" 'ibuffer-add-to-tmp-hide) | |
385 (define-key map "+" 'ibuffer-add-to-tmp-show) | |
386 (define-key map "b" 'ibuffer-bury-buffer) | |
387 (define-key map (kbd ",") 'ibuffer-toggle-sorting-mode) | |
388 (define-key map (kbd "s i") 'ibuffer-invert-sorting) | |
389 (define-key map (kbd "s a") 'ibuffer-do-sort-by-alphabetic) | |
390 (define-key map (kbd "s v") 'ibuffer-do-sort-by-recency) | |
391 (define-key map (kbd "s s") 'ibuffer-do-sort-by-size) | |
392 (define-key map (kbd "s m") 'ibuffer-do-sort-by-major-mode) | |
393 | |
394 (define-key map (kbd "/ m") 'ibuffer-filter-by-mode) | |
395 (define-key map (kbd "/ n") 'ibuffer-filter-by-name) | |
396 (define-key map (kbd "/ c") 'ibuffer-filter-by-content) | |
397 (define-key map (kbd "/ e") 'ibuffer-filter-by-predicate) | |
398 (define-key map (kbd "/ f") 'ibuffer-filter-by-filename) | |
399 (define-key map (kbd "/ >") 'ibuffer-filter-by-size-gt) | |
400 (define-key map (kbd "/ <") 'ibuffer-filter-by-size-lt) | |
401 (define-key map (kbd "/ r") 'ibuffer-switch-to-saved-filters) | |
402 (define-key map (kbd "/ a") 'ibuffer-add-saved-filters) | |
403 (define-key map (kbd "/ x") 'ibuffer-delete-saved-filters) | |
404 (define-key map (kbd "/ d") 'ibuffer-decompose-filter) | |
405 (define-key map (kbd "/ s") 'ibuffer-save-filters) | |
406 (define-key map (kbd "/ p") 'ibuffer-pop-filter) | |
407 (define-key map (kbd "/ !") 'ibuffer-negate-filter) | |
408 (define-key map (kbd "/ t") 'ibuffer-exchange-filters) | |
409 (define-key map (kbd "/ TAB") 'ibuffer-exchange-filters) | |
410 (define-key map (kbd "/ o") 'ibuffer-or-filter) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
411 (define-key map (kbd "/ g") 'ibuffer-filters-to-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
412 (define-key map (kbd "/ P") 'ibuffer-pop-filter-group) |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
413 (define-key map (kbd "/ D") 'ibuffer-decompose-filter-group) |
42702 | 414 (define-key map (kbd "/ /") 'ibuffer-filter-disable) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
415 |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
416 (define-key map (kbd "M-n") 'ibuffer-forward-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
417 (define-key map (kbd "<right>") 'ibuffer-forward-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
418 (define-key map (kbd "M-p") 'ibuffer-backward-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
419 (define-key map (kbd "<left>") 'ibuffer-backward-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
420 (define-key map (kbd "M-j") 'ibuffer-jump-to-filter-group) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
421 (define-key map (kbd "C-k") 'ibuffer-kill-line) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
422 (define-key map (kbd "C-y") 'ibuffer-yank) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
423 (define-key map (kbd "/ S") 'ibuffer-save-filter-groups) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
424 (define-key map (kbd "/ R") 'ibuffer-switch-to-saved-filter-groups) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
425 (define-key map (kbd "/ X") 'ibuffer-delete-saved-filter-groups) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
426 (define-key map (kbd "/ \\") 'ibuffer-clear-filter-groups) |
42702 | 427 |
428 (define-key map (kbd "q") 'ibuffer-quit) | |
429 (define-key map (kbd "h") 'describe-mode) | |
430 (define-key map (kbd "?") 'describe-mode) | |
431 | |
432 (define-key map (kbd "% n") 'ibuffer-mark-by-name-regexp) | |
433 (define-key map (kbd "% m") 'ibuffer-mark-by-mode-regexp) | |
434 (define-key map (kbd "% f") 'ibuffer-mark-by-file-name-regexp) | |
435 | |
436 (define-key map (kbd "C-t") 'ibuffer-visit-tags-table) | |
437 | |
438 (define-key map (kbd "|") 'ibuffer-do-shell-command-pipe) | |
439 (define-key map (kbd "!") 'ibuffer-do-shell-command-file) | |
440 (define-key map (kbd "~") 'ibuffer-do-toggle-modified) | |
441 ;; marked operations | |
442 (define-key map (kbd "A") 'ibuffer-do-view) | |
443 (define-key map (kbd "D") 'ibuffer-do-delete) | |
444 (define-key map (kbd "E") 'ibuffer-do-eval) | |
445 (define-key map (kbd "F") 'ibuffer-do-shell-command-file) | |
446 (define-key map (kbd "I") 'ibuffer-do-query-replace-regexp) | |
447 (define-key map (kbd "H") 'ibuffer-do-view-other-frame) | |
448 (define-key map (kbd "N") 'ibuffer-do-shell-command-pipe-replace) | |
449 (define-key map (kbd "M") 'ibuffer-do-toggle-modified) | |
450 (define-key map (kbd "O") 'ibuffer-do-occur) | |
451 (define-key map (kbd "P") 'ibuffer-do-print) | |
452 (define-key map (kbd "Q") 'ibuffer-do-query-replace) | |
453 (define-key map (kbd "R") 'ibuffer-do-rename-uniquely) | |
454 (define-key map (kbd "S") 'ibuffer-do-save) | |
455 (define-key map (kbd "T") 'ibuffer-do-toggle-read-only) | |
456 (define-key map (kbd "U") 'ibuffer-do-replace-regexp) | |
457 (define-key map (kbd "V") 'ibuffer-do-revert) | |
458 (define-key map (kbd "W") 'ibuffer-do-view-and-eval) | |
459 (define-key map (kbd "X") 'ibuffer-do-shell-command-pipe) | |
460 | |
461 (define-key map (kbd "k") 'ibuffer-do-kill-lines) | |
462 (define-key map (kbd "w") 'ibuffer-copy-filename-as-kill) | |
463 | |
464 (define-key map (kbd "RET") 'ibuffer-visit-buffer) | |
465 (define-key map (kbd "e") 'ibuffer-visit-buffer) | |
466 (define-key map (kbd "f") 'ibuffer-visit-buffer) | |
467 (define-key map (kbd "C-x C-f") 'ibuffer-find-file) | |
468 (define-key map (kbd "o") 'ibuffer-visit-buffer-other-window) | |
469 (define-key map (kbd "C-o") 'ibuffer-visit-buffer-other-window-noselect) | |
470 (define-key map (kbd "M-o") 'ibuffer-visit-buffer-1-window) | |
471 (define-key map (kbd "v") 'ibuffer-do-view) | |
472 (define-key map (kbd "C-x v") 'ibuffer-do-view-horizontally) | |
473 (define-key map (kbd "C-c C-a") 'ibuffer-auto-mode) | |
474 (define-key map (kbd "C-x 4 RET") 'ibuffer-visit-buffer-other-window) | |
475 (define-key map (kbd "C-x 5 RET") 'ibuffer-visit-buffer-other-frame) | |
476 | |
477 (define-key map [menu-bar view] | |
478 (cons "View" (make-sparse-keymap "View"))) | |
479 | |
480 (define-key-after map [menu-bar view visit-buffer] | |
481 '(menu-item "View this buffer" ibuffer-visit-buffer)) | |
482 (define-key-after map [menu-bar view visit-buffer-other-window] | |
483 '(menu-item "View (other window)" ibuffer-visit-buffer-other-window)) | |
484 (define-key-after map [menu-bar view visit-buffer-other-frame] | |
485 '(menu-item "View (other frame)" ibuffer-visit-buffer-other-frame)) | |
486 (define-key-after map [menu-bar view ibuffer-update] | |
487 '(menu-item "Update" ibuffer-update | |
488 :help "Regenerate the list of buffers")) | |
489 (define-key-after map [menu-bar view switch-format] | |
490 '(menu-item "Switch display format" ibuffer-switch-format | |
491 :help "Toggle between available values of `ibuffer-formats'")) | |
492 | |
493 (define-key-after map [menu-bar view dashes] | |
494 '("--")) | |
495 | |
496 (define-key-after map [menu-bar view sort] | |
497 (cons "Sort" (make-sparse-keymap "Sort"))) | |
498 | |
499 (define-key-after map [menu-bar view sort do-sort-by-major-mode] | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
500 '(menu-item "Sort by major mode" ibuffer-do-sort-by-major-mode)) |
42702 | 501 (define-key-after map [menu-bar view sort do-sort-by-size] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
502 '(menu-item "Sort by buffer size" ibuffer-do-sort-by-size)) |
42702 | 503 (define-key-after map [menu-bar view sort do-sort-by-alphabetic] |
504 '(menu-item "Sort lexicographically" ibuffer-do-sort-by-alphabetic | |
505 :help "Sort by the alphabetic order of buffer name")) | |
506 (define-key-after map [menu-bar view sort do-sort-by-recency] | |
507 '(menu-item "Sort by view time" ibuffer-do-sort-by-recency | |
508 :help "Sort by the last time the buffer was displayed")) | |
509 (define-key-after map [menu-bar view sort invert-sorting] | |
510 '(menu-item "Reverse sorting order" ibuffer-invert-sorting)) | |
511 (define-key-after map [menu-bar view sort toggle-sorting-mode] | |
512 '(menu-item "Switch sorting mode" ibuffer-toggle-sorting-mode | |
513 :help "Switch between the various sorting criteria")) | |
514 | |
515 (define-key-after map [menu-bar view filter] | |
516 (cons "Filter" (make-sparse-keymap "Filter"))) | |
517 | |
518 (define-key-after map [menu-bar view filter filter-disable] | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
519 '(menu-item "Disable all filtering" ibuffer-filter-disable |
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
520 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers))) |
42702 | 521 (define-key-after map [menu-bar view filter filter-by-mode] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
522 '(menu-item "Add filter by major mode..." ibuffer-filter-by-mode)) |
42702 | 523 (define-key-after map [menu-bar view filter filter-by-name] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
524 '(menu-item "Add filter by buffer name..." ibuffer-filter-by-name)) |
42702 | 525 (define-key-after map [menu-bar view filter filter-by-filename] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
526 '(menu-item "Add filter by filename..." ibuffer-filter-by-filename)) |
42702 | 527 (define-key-after map [menu-bar view filter filter-by-size-lt] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
528 '(menu-item "Add filter by size less than..." ibuffer-filter-by-size-lt)) |
42702 | 529 (define-key-after map [menu-bar view filter filter-by-size-gt] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
530 '(menu-item "Add filter by size greater than..." ibuffer-filter-by-size-gt)) |
42702 | 531 (define-key-after map [menu-bar view filter filter-by-content] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
532 '(menu-item "Add filter by content (regexp)..." ibuffer-filter-by-content)) |
42702 | 533 (define-key-after map [menu-bar view filter filter-by-predicate] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
534 '(menu-item "Add filter by Lisp predicate..." ibuffer-filter-by-predicate)) |
42702 | 535 (define-key-after map [menu-bar view filter pop-filter] |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
536 '(menu-item "Remove top filter" ibuffer-pop-filter |
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
537 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers))) |
42702 | 538 (define-key-after map [menu-bar view filter or-filter] |
539 '(menu-item "OR top two filters" ibuffer-or-filter | |
45220 | 540 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers |
541 (cdr ibuffer-filtering-qualifiers)) | |
42702 | 542 :help "Create a new filter which is the logical OR of the top two filters")) |
543 (define-key-after map [menu-bar view filter negate-filter] | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
544 '(menu-item "Negate top filter" ibuffer-negate-filter |
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
545 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers))) |
42702 | 546 (define-key-after map [menu-bar view filter decompose-filter] |
547 '(menu-item "Decompose top filter" ibuffer-decompose-filter | |
45220 | 548 :enable (and (featurep 'ibuf-ext) (memq (car ibuffer-filtering-qualifiers) '(or saved not))) |
42702 | 549 :help "Break down a complex filter like OR or NOT")) |
550 (define-key-after map [menu-bar view filter exchange-filters] | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
551 '(menu-item "Swap top two filters" ibuffer-exchange-filters |
45220 | 552 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers |
553 (cdr ibuffer-filtering-qualifiers)))) | |
42702 | 554 (define-key-after map [menu-bar view filter save-filters] |
555 '(menu-item "Save current filters permanently..." ibuffer-save-filters | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
556 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers) |
42702 | 557 :help "Use a mnemnonic name to store current filter stack")) |
558 (define-key-after map [menu-bar view filter switch-to-saved-filters] | |
559 '(menu-item "Restore permanently saved filters..." ibuffer-switch-to-saved-filters | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
560 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filters) |
42702 | 561 :help "Replace current filters with a saved stack")) |
562 (define-key-after map [menu-bar view filter add-saved-filters] | |
563 '(menu-item "Add to permanently saved filters..." ibuffer-add-saved-filters | |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
564 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
565 :help "Include already saved stack with current filters")) |
42702 | 566 (define-key-after map [menu-bar view filter delete-saved-filters] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
567 '(menu-item "Delete permanently saved filters..." |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
568 ibuffer-delete-saved-filters |
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
569 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filters))) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
570 |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
571 ;; Filter groups |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
572 |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
573 (define-key-after groups-map [filters-to-filter-group] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
574 '(menu-item "Create filter group from current filters..." |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
575 ibuffer-filters-to-filter-group |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
576 :enable (and (featurep 'ibuf-ext) ibuffer-filtering-qualifiers))) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
577 (define-key-after groups-map [forward-filter-group] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
578 '(menu-item "Move point to the next filter group" |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
579 ibuffer-forward-filter-group)) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
580 (define-key-after groups-map [backward-filter-group] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
581 '(menu-item "Move point to the previous filter group" |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
582 ibuffer-backward-filter-group)) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
583 (define-key-after groups-map [jump-to-filter-group] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
584 '(menu-item "Move point to a specific filter group..." |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
585 ibuffer-jump-to-filter-group)) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
586 (define-key-after groups-map [kill-filter-group] |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
587 '(menu-item "Kill filter group named..." |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
588 ibuffer-kill-filter-group |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
589 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups))) |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
590 (define-key-after groups-map [yank-filter-group] |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
591 '(menu-item "Yank last killed filter group before..." |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
592 ibuffer-yank-filter-group |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
593 :enable (and (featurep 'ibuf-ext) ibuffer-filter-group-kill-ring))) |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
594 (define-key-after groups-map [pop-filter-group] |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
595 '(menu-item "Remove top filter group" |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
596 ibuffer-pop-filter-group |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
597 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups))) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
598 (define-key-after groups-map [clear-filter-groups] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
599 '(menu-item "Remove all filter groups" |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
600 ibuffer-clear-filter-groups |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
601 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups))) |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
602 (define-key-after groups-map [pop-filter-group] |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
603 '(menu-item "Decompose filter group..." |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
604 ibuffer-pop-filter-group |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
605 :help "\"Unmake\" a filter group" |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
606 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups))) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
607 (define-key-after groups-map [save-filter-groups] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
608 '(menu-item "Save current filter groups permanently..." |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
609 ibuffer-save-filter-groups |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
610 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
611 :help "Use a mnemnonic name to store current filter groups")) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
612 (define-key-after groups-map [switch-to-saved-filter-groups] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
613 '(menu-item "Restore permanently saved filters..." |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
614 ibuffer-switch-to-saved-filter-groups |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
615 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filter-groups) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
616 :help "Replace current filters with a saved stack")) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
617 (define-key-after groups-map [delete-saved-filter-groups] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
618 '(menu-item "Delete permanently saved filter groups..." |
45213
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
619 ibuffer-delete-saved-filter-groups |
162082d00c8f
(ibuffer-mode-map): Add :enable guards for `ibuffer-filter-disable',
Colin Walters <walters@gnu.org>
parents:
45161
diff
changeset
|
620 :enable (and (featurep 'ibuf-ext) ibuffer-saved-filter-groups))) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
621 (define-key-after groups-map [set-filter-groups-by-mode] |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
622 '(menu-item "Set current filter groups to filter by mode" |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
623 ibuffer-set-filter-groups-by-mode)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
624 |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
625 (define-key-after map [menu-bar view filter-groups] |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
626 (cons "Filter Groups" groups-map)) |
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
627 |
42702 | 628 (define-key-after map [menu-bar view dashes2] |
629 '("--")) | |
630 (define-key-after map [menu-bar view diff-with-file] | |
631 '(menu-item "Diff with file" ibuffer-diff-with-file | |
632 :help "View the differences between this buffer and its file")) | |
633 (define-key-after map [menu-bar view auto-mode] | |
634 '(menu-item "Toggle Auto Mode" ibuffer-auto-mode | |
635 :help "Attempt to automatically update the Ibuffer buffer")) | |
636 (define-key-after map [menu-bar view customize] | |
637 '(menu-item "Customize Ibuffer" (lambda () (interactive) | |
638 (customize-group 'ibuffer)) | |
639 :help "Use Custom to customize Ibuffer")) | |
640 | |
641 (define-key-after map [menu-bar mark] | |
642 (cons "Mark" (make-sparse-keymap "Mark"))) | |
643 | |
644 (define-key-after map [menu-bar mark toggle-marks] | |
645 '(menu-item "Toggle marks" ibuffer-toggle-marks | |
646 :help "Unmark marked buffers, and mark unmarked buffers")) | |
647 (define-key-after map [menu-bar mark mark-forward] | |
648 '(menu-item "Mark" ibuffer-mark-forward | |
649 :help "Mark the buffer at point")) | |
650 (define-key-after map [menu-bar mark unmark-forward] | |
651 '(menu-item "Unmark" ibuffer-unmark-forward | |
652 :help "Unmark the buffer at point")) | |
653 (define-key-after map [menu-bar mark mark-by-mode] | |
654 '(menu-item "Mark by mode..." ibuffer-mark-by-mode | |
655 :help "Mark all buffers in a particular major mode")) | |
656 (define-key-after map [menu-bar mark mark-modified-buffers] | |
657 '(menu-item "Mark modified buffers" ibuffer-mark-modified-buffers | |
658 :help "Mark all buffers which have been modified")) | |
659 (define-key-after map [menu-bar mark mark-unsaved-buffers] | |
660 '(menu-item "Mark unsaved buffers" ibuffer-mark-unsaved-buffers | |
661 :help "Mark all buffers which have a file and are modified")) | |
662 (define-key-after map [menu-bar mark mark-read-only-buffers] | |
663 '(menu-item "Mark read-only buffers" ibuffer-mark-read-only-buffers | |
664 :help "Mark all buffers which are read-only")) | |
665 (define-key-after map [menu-bar mark mark-special-buffers] | |
666 '(menu-item "Mark special buffers" ibuffer-mark-special-buffers | |
667 :help "Mark all buffers whose name begins with a *")) | |
668 (define-key-after map [menu-bar mark mark-dired-buffers] | |
669 '(menu-item "Mark dired buffers" ibuffer-mark-dired-buffers | |
670 :help "Mark buffers in dired-mode")) | |
671 (define-key-after map [menu-bar mark mark-dissociated-buffers] | |
672 '(menu-item "Mark dissociated buffers" ibuffer-mark-dissociated-buffers | |
673 :help "Mark buffers with a non-existent associated file")) | |
674 (define-key-after map [menu-bar mark mark-help-buffers] | |
675 '(menu-item "Mark help buffers" ibuffer-mark-help-buffers | |
676 :help "Mark buffers in help-mode")) | |
677 (define-key-after map [menu-bar mark mark-old-buffers] | |
678 '(menu-item "Mark old buffers" ibuffer-mark-old-buffers | |
679 :help "Mark buffers which have not been viewed recently")) | |
680 (define-key-after map [menu-bar mark unmark-all] | |
681 '(menu-item "Unmark All" ibuffer-unmark-all)) | |
682 | |
683 (define-key-after map [menu-bar mark dashes] | |
684 '("--")) | |
685 | |
686 (define-key-after map [menu-bar mark mark-by-name-regexp] | |
687 '(menu-item "Mark by buffer name (regexp)..." ibuffer-mark-by-name-regexp | |
688 :help "Mark buffers whose name matches a regexp")) | |
689 (define-key-after map [menu-bar mark mark-by-mode-regexp] | |
690 '(menu-item "Mark by major mode (regexp)..." ibuffer-mark-by-mode-regexp | |
691 :help "Mark buffers whose major mode name matches a regexp")) | |
692 (define-key-after map [menu-bar mark mark-by-file-name-regexp] | |
693 '(menu-item "Mark by file name (regexp)..." ibuffer-mark-by-file-name-regexp | |
694 :help "Mark buffers whose file name matches a regexp")) | |
695 | |
696 ;; Operate map is added later | |
697 | |
698 (define-key-after operate-map [do-view] | |
699 '(menu-item "View" ibuffer-do-view)) | |
700 (define-key-after operate-map [do-view-other-frame] | |
701 '(menu-item "View (separate frame)" ibuffer-do-view-other-frame)) | |
702 (define-key-after operate-map [do-save] | |
703 '(menu-item "Save" ibuffer-do-save)) | |
704 (define-key-after operate-map [do-replace-regexp] | |
705 '(menu-item "Replace (regexp)..." ibuffer-do-replace-regexp | |
706 :help "Replace text inside marked buffers")) | |
707 (define-key-after operate-map [do-query-replace] | |
708 '(menu-item "Query Replace..." ibuffer-do-query-replace | |
709 :help "Replace text in marked buffers, asking each time")) | |
710 (define-key-after operate-map [do-query-replace-regexp] | |
711 '(menu-item "Query Replace (regexp)..." ibuffer-do-query-replace-regexp | |
712 :help "Replace text in marked buffers by regexp, asking each time")) | |
713 (define-key-after operate-map [do-print] | |
714 '(menu-item "Print" ibuffer-do-print)) | |
715 (define-key-after operate-map [do-toggle-modified] | |
716 '(menu-item "Toggle modification flag" ibuffer-do-toggle-modified)) | |
717 (define-key-after operate-map [do-revert] | |
718 '(menu-item "Revert" ibuffer-do-revert | |
719 :help "Revert marked buffers to their associated file")) | |
720 (define-key-after operate-map [do-rename-uniquely] | |
721 '(menu-item "Rename Uniquely" ibuffer-do-rename-uniquely | |
722 :help "Rename marked buffers to a new, unique name")) | |
723 (define-key-after operate-map [do-delete] | |
724 '(menu-item "Kill" ibuffer-do-delete)) | |
725 (define-key-after operate-map [do-occur] | |
726 '(menu-item "List lines matching..." ibuffer-do-occur | |
727 :help "View all lines in marked buffers matching a regexp")) | |
728 (define-key-after operate-map [do-shell-command-pipe] | |
729 '(menu-item "Pipe to shell command..." ibuffer-do-shell-command-pipe | |
730 :help "For each marked buffer, send its contents to a shell command")) | |
731 (define-key-after operate-map [do-shell-command-pipe-replace] | |
732 '(menu-item "Pipe to shell command (replace)..." ibuffer-do-shell-command-pipe-replace | |
733 :help "For each marked buffer, replace its contents with output of shell command")) | |
734 (define-key-after operate-map [do-shell-command-file] | |
735 '(menu-item "Shell command on buffer's file..." ibuffer-do-shell-command-file | |
736 :help "For each marked buffer, run a shell command with its file as argument")) | |
737 (define-key-after operate-map [do-eval] | |
738 '(menu-item "Eval..." ibuffer-do-eval | |
739 :help "Evaluate a Lisp form in each marked buffer")) | |
740 (define-key-after operate-map [do-view-and-eval] | |
741 '(menu-item "Eval (viewing buffer)..." ibuffer-do-view-and-eval | |
742 :help "Evaluate a Lisp form in each marked buffer while viewing it")) | |
743 | |
744 (setq ibuffer-mode-map map | |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
745 ibuffer-mode-operate-map operate-map |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
746 ibuffer-mode-groups-popup (copy-keymap groups-map)))) |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
747 |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
748 (define-key ibuffer-mode-groups-popup [kill-filter-group] |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
749 '(menu-item "Kill filter group" |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
750 ibuffer-kill-line |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
751 :enable (and (featurep 'ibuf-ext) ibuffer-filter-groups))) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
752 (define-key ibuffer-mode-groups-popup [yank-filter-group] |
45161
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
753 '(menu-item "Yank last killed filter group" |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
754 ibuffer-yank |
91602250e999
(ibuffer-mode-map): Bind it. Add :enable guard around
Colin Walters <walters@gnu.org>
parents:
45129
diff
changeset
|
755 :enable (and (featurep 'ibuf-ext) ibuffer-filter-group-kill-ring))) |
42702 | 756 |
757 (defvar ibuffer-name-map nil) | |
758 (unless ibuffer-name-map | |
759 (let ((map (make-sparse-keymap))) | |
760 (define-key map [(mouse-1)] 'ibuffer-mouse-toggle-mark) | |
761 (define-key map [(mouse-2)] 'ibuffer-mouse-visit-buffer) | |
762 (define-key map [down-mouse-3] 'ibuffer-mouse-popup-menu) | |
763 (setq ibuffer-name-map map))) | |
764 | |
765 (defvar ibuffer-mode-name-map nil) | |
766 (unless ibuffer-mode-name-map | |
767 (let ((map (make-sparse-keymap))) | |
768 (define-key map [(mouse-2)] 'ibuffer-mouse-filter-by-mode) | |
769 (define-key map (kbd "RET") 'ibuffer-interactive-filter-by-mode) | |
770 (setq ibuffer-mode-name-map map))) | |
771 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
772 (defvar ibuffer-mode-filter-group-map nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
773 (unless ibuffer-mode-filter-group-map |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
774 (let ((map (make-sparse-keymap))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
775 (define-key map [(mouse-1)] 'ibuffer-mouse-toggle-mark) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
776 (define-key map [(mouse-2)] 'ibuffer-mouse-toggle-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
777 (define-key map (kbd "RET") 'ibuffer-toggle-filter-group) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
778 (define-key map [down-mouse-3] 'ibuffer-mouse-popup-menu) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
779 (setq ibuffer-mode-filter-group-map map))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
780 |
42702 | 781 (defvar ibuffer-mode-hooks nil) |
782 | |
783 (defvar ibuffer-delete-window-on-quit nil | |
784 "Whether or not to delete the window upon exiting `ibuffer'.") | |
785 | |
786 (defvar ibuffer-did-modification nil) | |
787 | |
788 (defvar ibuffer-sorting-functions-alist nil | |
789 "An alist of functions which describe how to sort buffers. | |
790 | |
791 Note: You most likely do not want to modify this variable directly; | |
792 use `define-ibuffer-sorter' instead. | |
793 | |
794 The alist elements are constructed like (NAME DESCRIPTION FUNCTION) | |
795 Where NAME is a symbol describing the sorting method, DESCRIPTION is a | |
796 short string which will be displayed in the minibuffer and menu, and | |
797 FUNCTION is a function of two arguments, which will be the buffers to | |
798 compare.") | |
799 | |
800 ;;; Utility functions | |
801 (defun ibuffer-columnize-and-insert-list (list &optional pad-width) | |
802 "Insert LIST into the current buffer in as many columns as possible. | |
803 The maximum number of columns is determined by the current window | |
804 width and the longest string in LIST." | |
805 (unless pad-width | |
806 (setq pad-width 3)) | |
807 (let ((width (window-width)) | |
808 (max (+ (apply #'max (mapcar #'length list)) | |
809 pad-width))) | |
810 (let ((columns (/ width max))) | |
811 (when (zerop columns) | |
812 (setq columns 1)) | |
813 (while list | |
814 (dotimes (i (1- columns)) | |
815 (insert (concat (car list) (make-string (- max (length (car list))) | |
816 ? ))) | |
817 (setq list (cdr list))) | |
818 (when (not (null list)) | |
819 (insert (pop list))) | |
820 (insert "\n"))))) | |
821 | |
822 (defsubst ibuffer-current-mark () | |
823 (cadr (get-text-property (line-beginning-position) | |
824 'ibuffer-properties))) | |
825 | |
826 (defun ibuffer-mouse-toggle-mark (event) | |
827 "Toggle the marked status of the buffer chosen with the mouse." | |
828 (interactive "e") | |
829 (unwind-protect | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
830 (let ((pt (save-excursion |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
831 (mouse-set-point event) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
832 (point)))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
833 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
834 (ibuffer-toggle-marks it) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
835 (goto-char pt) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
836 (let ((mark (ibuffer-current-mark))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
837 (setq buffer-read-only nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
838 (if (eq mark ibuffer-marked-char) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
839 (ibuffer-set-mark ? ) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
840 (ibuffer-set-mark ibuffer-marked-char))))) |
42702 | 841 (setq buffer-read-only t))) |
842 | |
843 (defun ibuffer-find-file (file &optional wildcards) | |
844 "Like `find-file', but default to the directory of the buffer at point." | |
845 (interactive | |
846 (let ((default-directory (let ((buf (ibuffer-current-buffer))) | |
847 (if (buffer-live-p buf) | |
848 (with-current-buffer buf | |
849 default-directory) | |
850 default-directory)))) | |
851 (list (read-file-name "Find file: " default-directory) | |
852 current-prefix-arg))) | |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
853 (find-file file (or wildcards (interactive-p)))) |
42702 | 854 |
855 (defun ibuffer-mouse-visit-buffer (event) | |
856 "Visit the buffer chosen with the mouse." | |
857 (interactive "e") | |
858 (switch-to-buffer | |
859 (save-excursion | |
860 (mouse-set-point event) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
861 (ibuffer-current-buffer t)))) |
42702 | 862 |
863 (defun ibuffer-mouse-popup-menu (event) | |
864 "Display a menu of operations." | |
865 (interactive "e") | |
46682
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
866 (let ((eventpt (save-excursion |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
867 (mouse-set-point event) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
868 (point)))) |
42702 | 869 (unwind-protect |
46682
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
870 (if (get-text-property eventpt 'ibuffer-filter-group-name) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
871 (popup-menu ibuffer-mode-groups-popup) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
872 (let ((inhibit-read-only t)) |
45129
7b5b6369f90a
(ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
Colin Walters <walters@gnu.org>
parents:
44936
diff
changeset
|
873 (ibuffer-save-marks |
46682
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
874 ;; hm. we could probably do this in a better fashion |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
875 (ibuffer-unmark-all ?\r) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
876 (save-excursion |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
877 (goto-char eventpt) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
878 (ibuffer-set-mark ibuffer-marked-char)) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
879 (save-excursion |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
880 (popup-menu ibuffer-mode-operate-map))))) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
881 (setq buffer-read-only t)))) |
7a836df2d686
(ibuffer-mouse-popup-menu): Allow point to be moved by menu functions.
Colin Walters <walters@gnu.org>
parents:
45839
diff
changeset
|
882 |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
883 (defun ibuffer-skip-properties (props direction) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
884 (while (and (not (eobp)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
885 (let ((hit nil)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
886 (dolist (prop props hit) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
887 (when (get-text-property (point) prop) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
888 (setq hit t))))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
889 (forward-line direction) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
890 (beginning-of-line))) |
42702 | 891 |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
892 (defun ibuffer-backward-line (&optional arg skip-group-names) |
42702 | 893 "Move backwards ARG lines, wrapping around the list if necessary." |
894 (interactive "P") | |
895 (unless arg | |
896 (setq arg 1)) | |
897 (beginning-of-line) | |
898 (while (> arg 0) | |
899 (forward-line -1) | |
45839
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
900 (when (and ibuffer-movement-cycle |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
901 (or (get-text-property (point) 'ibuffer-title) |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
902 (and skip-group-names |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
903 (get-text-property (point) 'ibuffer-filter-group-name)))) |
42702 | 904 (goto-char (point-max)) |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
905 (beginning-of-line)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
906 (ibuffer-skip-properties (append '(ibuffer-summary) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
907 (when skip-group-names |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
908 '(ibuffer-filter-group-name))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
909 -1) |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
910 ;; Handle the special case of no buffers. |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
911 (when (get-text-property (point) 'ibuffer-title) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
912 (forward-line 1) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
913 (setq arg 1)) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
914 (decf arg))) |
42702 | 915 |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
916 (defun ibuffer-forward-line (&optional arg skip-group-names) |
42702 | 917 "Move forward ARG lines, wrapping around the list if necessary." |
918 (interactive "P") | |
919 (unless arg | |
920 (setq arg 1)) | |
921 (beginning-of-line) | |
45839
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
922 (when (and ibuffer-movement-cycle |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
923 (or (eobp) |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
924 (get-text-property (point) 'ibuffer-summary))) |
44245
8bff6cc92867
(ibuffer-mark-interactive): Use `ibuffer-forward-line' instead of
Colin Walters <walters@gnu.org>
parents:
44185
diff
changeset
|
925 (goto-char (point-min))) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
926 (when (or (get-text-property (point) 'ibuffer-title) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
927 (and skip-group-names |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
928 (get-text-property (point) 'ibuffer-filter-group-name))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
929 (when (> arg 0) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
930 (decf arg)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
931 (ibuffer-skip-properties (append '(ibuffer-title) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
932 (when skip-group-names |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
933 '(ibuffer-filter-group-name))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
934 1)) |
42702 | 935 (if (< arg 0) |
936 (ibuffer-backward-line (- arg)) | |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
937 (while (> arg 0) |
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
938 (forward-line 1) |
45839
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
939 (when (and ibuffer-movement-cycle |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
940 (or (eobp) |
a3da6ddded28
(ibuffer-movement-cycle): New variable.
Colin Walters <walters@gnu.org>
parents:
45764
diff
changeset
|
941 (get-text-property (point) 'ibuffer-summary))) |
44185
c4de5a5d6ecb
(ibuffer-help-buffer-modes): New variable.
Colin Walters <walters@gnu.org>
parents:
44137
diff
changeset
|
942 (goto-char (point-min))) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
943 (decf arg) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
944 (ibuffer-skip-properties (append '(ibuffer-title) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
945 (when skip-group-names |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
946 '(ibuffer-filter-group-name))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
947 1)))) |
42702 | 948 |
44659
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
949 (defun ibuffer-visit-buffer (&optional single) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
950 "Visit the buffer on this line. |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
951 |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
952 If optional argument SINGLE is non-nil, then also ensure there is only |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
953 one window." |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
954 (interactive "P") |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
955 (let ((buf (ibuffer-current-buffer t))) |
42702 | 956 (bury-buffer (current-buffer)) |
44659
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
957 (switch-to-buffer buf) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
958 (when single |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
959 (delete-other-windows)))) |
42702 | 960 |
961 (defun ibuffer-visit-buffer-other-window (&optional noselect) | |
962 "Visit the buffer on this line in another window." | |
963 (interactive) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
964 (let ((buf (ibuffer-current-buffer t))) |
42702 | 965 (bury-buffer (current-buffer)) |
966 (if noselect | |
967 (let ((curwin (selected-window))) | |
968 (pop-to-buffer buf) | |
969 (select-window curwin)) | |
970 (switch-to-buffer-other-window buf)))) | |
971 | |
972 (defun ibuffer-visit-buffer-other-window-noselect () | |
973 "Visit the buffer on this line in another window, but don't select it." | |
974 (interactive) | |
975 (ibuffer-visit-buffer-other-window t)) | |
976 | |
977 (defun ibuffer-visit-buffer-other-frame () | |
978 "Visit the buffer on this line in another frame." | |
979 (interactive) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
980 (let ((buf (ibuffer-current-buffer t))) |
42702 | 981 (bury-buffer (current-buffer)) |
982 (switch-to-buffer-other-frame buf))) | |
983 | |
984 (defun ibuffer-visit-buffer-1-window () | |
985 "Visit the buffer on this line, and delete other windows." | |
986 (interactive) | |
44659
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
987 (ibuffer-visit-buffer t)) |
42702 | 988 |
989 (defun ibuffer-bury-buffer () | |
990 "Bury the buffer on this line." | |
991 (interactive) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
992 (let ((buf (ibuffer-current-buffer t)) |
42702 | 993 (line (+ 1 (count-lines 1 (point))))) |
994 (bury-buffer buf) | |
995 (ibuffer-update nil t) | |
996 (goto-line line))) | |
997 | |
998 (defun ibuffer-visit-tags-table () | |
999 "Visit the tags table in the buffer on this line. See `visit-tags-table'." | |
1000 (interactive) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1001 (let ((file (buffer-file-name (ibuffer-current-buffer t)))) |
42702 | 1002 (if file |
1003 (visit-tags-table file) | |
1004 (error "Specified buffer has no file")))) | |
1005 | |
1006 (defun ibuffer-do-view (&optional other-frame) | |
1007 "View marked buffers, or the buffer on the current line. | |
1008 If optional argument OTHER-FRAME is non-nil, then display each | |
1009 marked buffer in a new frame. Otherwise, display each buffer as | |
1010 a new window in the current frame, splitting vertically." | |
1011 (interactive) | |
1012 (ibuffer-do-view-1 (if other-frame 'other-frame 'vertically))) | |
1013 | |
1014 (defun ibuffer-do-view-horizontally (&optional other-frame) | |
1015 "As `ibuffer-do-view', but split windows horizontally." | |
1016 (interactive) | |
1017 (ibuffer-do-view-1 (if other-frame 'other-frame 'horizontally))) | |
1018 | |
1019 (defun ibuffer-do-view-1 (type) | |
1020 (let ((marked-bufs (ibuffer-get-marked-buffers))) | |
1021 (when (null marked-bufs) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1022 (setq marked-bufs (list (ibuffer-current-buffer t)))) |
42702 | 1023 (unless (and (eq type 'other-frame) |
1024 (not ibuffer-expert) | |
1025 (> (length marked-bufs) 3) | |
1026 (not (y-or-n-p (format "Really create a new frame for %s buffers? " | |
1027 (length marked-bufs))))) | |
1028 (set-buffer-modified-p nil) | |
1029 (delete-other-windows) | |
1030 (switch-to-buffer (pop marked-bufs)) | |
1031 (let ((height (/ (1- (if (eq type 'horizontally) (frame-width) | |
1032 (frame-height))) | |
1033 (1+ (length marked-bufs))))) | |
1034 (mapcar (if (eq type 'other-frame) | |
1035 #'(lambda (buf) | |
1036 (let ((curframe (selected-frame))) | |
1037 (select-frame (new-frame)) | |
1038 (switch-to-buffer buf) | |
1039 (select-frame curframe))) | |
1040 #'(lambda (buf) | |
1041 (split-window nil height (eq type 'horizontally)) | |
1042 (other-window 1) | |
1043 (switch-to-buffer buf))) | |
1044 marked-bufs))))) | |
1045 | |
1046 (defun ibuffer-do-view-other-frame () | |
1047 "View each of the marked buffers in a separate frame." | |
1048 (interactive) | |
1049 (ibuffer-do-view t)) | |
1050 | |
1051 (defsubst ibuffer-map-marked-lines (func) | |
1052 (prog1 (ibuffer-map-on-mark ibuffer-marked-char func) | |
1053 (ibuffer-redisplay t))) | |
1054 | |
1055 (defun ibuffer-shrink-to-fit (&optional owin) | |
1056 (fit-window-to-buffer nil (when owin (/ (frame-height) | |
1057 (length (window-list (selected-frame))))))) | |
1058 | |
1059 (defun ibuffer-confirm-operation-on (operation names) | |
1060 "Display a buffer asking whether to perform OPERATION on NAMES." | |
1061 (or ibuffer-expert | |
1062 (if (= (length names) 1) | |
1063 (y-or-n-p (format "Really %s buffer %s? " operation (car names))) | |
1064 (let ((buf (get-buffer-create "*Ibuffer confirmation*"))) | |
1065 (with-current-buffer buf | |
1066 (setq buffer-read-only nil) | |
1067 (erase-buffer) | |
1068 (ibuffer-columnize-and-insert-list names) | |
1069 (goto-char (point-min)) | |
1070 (setq buffer-read-only t)) | |
1071 (let ((lastwin (car (last (ibuffer-window-list))))) | |
1072 ;; Now attempt to display the buffer... | |
1073 (save-window-excursion | |
1074 (select-window lastwin) | |
1075 ;; The window might be too small to split; in that case, | |
1076 ;; try a few times to increase its size before giving up. | |
1077 (let ((attempts 0) | |
1078 (trying t)) | |
1079 (while trying | |
1080 (condition-case err | |
1081 (progn | |
1082 (split-window) | |
1083 (setq trying nil)) | |
1084 (error | |
1085 ;; Handle a failure | |
1086 (if (or (> (incf attempts) 4) | |
1087 (and (stringp (cadr err)) | |
1088 ;; This definitely falls in the ghetto hack category... | |
1089 (not (string-match "too small" (cadr err))))) | |
1090 (apply #'signal err) | |
1091 (enlarge-window 3)))))) | |
1092 ;; This part doesn't work correctly sometimes under XEmacs. | |
1093 (select-window (next-window)) | |
1094 (switch-to-buffer buf) | |
1095 (unwind-protect | |
1096 (progn | |
1097 (fit-window-to-buffer) | |
1098 (y-or-n-p (format "Really %s %d buffers? " | |
1099 operation (length names)))) | |
1100 (kill-buffer buf)))))))) | |
1101 | |
1102 (defsubst ibuffer-map-lines-nomodify (function) | |
1103 "As `ibuffer-map-lines', but don't set the modification flag." | |
1104 (ibuffer-map-lines function t)) | |
1105 | |
1106 (defun ibuffer-buffer-names-with-mark (mark) | |
1107 (let ((ibuffer-buffer-names-with-mark-result nil)) | |
1108 (ibuffer-map-lines-nomodify | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1109 #'(lambda (buf mk) |
42702 | 1110 (when (char-equal mark mk) |
1111 (push (buffer-name buf) | |
1112 ibuffer-buffer-names-with-mark-result)))) | |
1113 ibuffer-buffer-names-with-mark-result)) | |
1114 | |
1115 (defsubst ibuffer-marked-buffer-names () | |
1116 (ibuffer-buffer-names-with-mark ibuffer-marked-char)) | |
1117 | |
1118 (defsubst ibuffer-deletion-marked-buffer-names () | |
1119 (ibuffer-buffer-names-with-mark ibuffer-deletion-char)) | |
1120 | |
1121 (defun ibuffer-count-marked-lines (&optional all) | |
1122 (if all | |
1123 (ibuffer-map-lines-nomodify | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1124 #'(lambda (buf mark) |
42702 | 1125 (not (char-equal mark ? )))) |
1126 (ibuffer-map-lines-nomodify | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1127 #'(lambda (buf mark) |
42702 | 1128 (char-equal mark ibuffer-marked-char))))) |
1129 | |
1130 (defsubst ibuffer-count-deletion-lines () | |
1131 (ibuffer-map-lines-nomodify | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1132 #'(lambda (buf mark) |
42702 | 1133 (char-equal mark ibuffer-deletion-char)))) |
1134 | |
1135 (defsubst ibuffer-map-deletion-lines (func) | |
1136 (ibuffer-map-on-mark ibuffer-deletion-char func)) | |
1137 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1138 (define-ibuffer-op ibuffer-do-save () |
42702 | 1139 "Save marked buffers as with `save-buffer'." |
1140 (:complex t | |
1141 :opstring "saved" | |
1142 :modifier-p :maybe) | |
1143 (when (buffer-modified-p buf) | |
1144 (if (not (with-current-buffer buf | |
1145 buffer-file-name)) | |
1146 ;; handle the case where we're prompted | |
1147 ;; for a file name | |
1148 (save-window-excursion | |
1149 (switch-to-buffer buf) | |
1150 (save-buffer)) | |
1151 (with-current-buffer buf | |
1152 (save-buffer)))) | |
1153 t) | |
1154 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1155 (define-ibuffer-op ibuffer-do-toggle-modified () |
42702 | 1156 "Toggle modification flag of marked buffers." |
1157 (:opstring "(un)marked as modified" | |
1158 :modifier-p t) | |
1159 (set-buffer-modified-p (not (buffer-modified-p)))) | |
1160 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1161 (define-ibuffer-op ibuffer-do-toggle-read-only () |
42702 | 1162 "Toggle read only status in marked buffers." |
1163 (:opstring "toggled read only status in" | |
1164 :modifier-p t) | |
1165 (toggle-read-only)) | |
1166 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1167 (define-ibuffer-op ibuffer-do-delete () |
42702 | 1168 "Kill marked buffers as with `kill-this-buffer'." |
1169 (:opstring "killed" | |
1170 :active-opstring "kill" | |
1171 :dangerous t | |
1172 :complex t | |
1173 :modifier-p t) | |
1174 (if (kill-buffer buf) | |
1175 'kill | |
1176 nil)) | |
1177 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1178 (define-ibuffer-op ibuffer-do-kill-on-deletion-marks () |
42702 | 1179 "Kill buffers marked for deletion as with `kill-this-buffer'." |
1180 (:opstring "killed" | |
1181 :active-opstring "kill" | |
1182 :dangerous t | |
1183 :complex t | |
1184 :mark :deletion | |
1185 :modifier-p t) | |
1186 (if (kill-buffer buf) | |
1187 'kill | |
1188 nil)) | |
1189 | |
1190 (defun ibuffer-unmark-all (mark) | |
1191 "Unmark all buffers with mark MARK." | |
1192 (interactive "cRemove marks (RET means all):") | |
1193 (if (= (ibuffer-count-marked-lines t) 0) | |
1194 (message "No buffers marked; use 'm' to mark a buffer") | |
1195 (cond | |
1196 ((char-equal mark ibuffer-marked-char) | |
1197 (ibuffer-map-marked-lines | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1198 #'(lambda (buf mark) |
42702 | 1199 (ibuffer-set-mark-1 ? ) |
1200 t))) | |
1201 ((char-equal mark ibuffer-deletion-char) | |
1202 (ibuffer-map-deletion-lines | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1203 #'(lambda (buf mark) |
42702 | 1204 (ibuffer-set-mark-1 ? ) |
1205 t))) | |
1206 (t | |
1207 (ibuffer-map-lines | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1208 #'(lambda (buf mark) |
42702 | 1209 (when (not (char-equal mark ? )) |
1210 (ibuffer-set-mark-1 ? )) | |
1211 t))))) | |
1212 (ibuffer-redisplay t)) | |
1213 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1214 (defun ibuffer-toggle-marks (&optional group) |
42702 | 1215 "Toggle which buffers are marked. |
1216 In other words, unmarked buffers become marked, and marked buffers | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1217 become unmarked. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1218 If point is on a group name, then this function operates on that |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1219 group." |
42702 | 1220 (interactive) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1221 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1222 (setq group it)) |
42702 | 1223 (let ((count |
1224 (ibuffer-map-lines | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1225 #'(lambda (buf mark) |
42702 | 1226 (cond ((eq mark ibuffer-marked-char) |
1227 (ibuffer-set-mark-1 ? ) | |
1228 nil) | |
1229 ((eq mark ? ) | |
1230 (ibuffer-set-mark-1 ibuffer-marked-char) | |
1231 t) | |
1232 (t | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1233 nil))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1234 nil group))) |
42702 | 1235 (message "%s buffers marked" count)) |
1236 (ibuffer-redisplay t)) | |
1237 | |
1238 (defun ibuffer-mark-forward (arg) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1239 "Mark the buffer on this line, and move forward ARG lines. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1240 If point is on a group name, this function operates on that group." |
42702 | 1241 (interactive "P") |
1242 (ibuffer-mark-interactive arg ibuffer-marked-char 1)) | |
1243 | |
1244 (defun ibuffer-unmark-forward (arg) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1245 "Unmark the buffer on this line, and move forward ARG lines. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1246 If point is on a group name, this function operates on that group." |
42702 | 1247 (interactive "P") |
1248 (ibuffer-mark-interactive arg ? 1)) | |
1249 | |
1250 (defun ibuffer-unmark-backward (arg) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1251 "Unmark the buffer on this line, and move backward ARG lines. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1252 If point is on a group name, this function operates on that group." |
42702 | 1253 (interactive "P") |
1254 (ibuffer-mark-interactive arg ? -1)) | |
1255 | |
1256 (defun ibuffer-mark-interactive (arg mark movement) | |
1257 (assert (eq major-mode 'ibuffer-mode)) | |
1258 (unless arg | |
1259 (setq arg 1)) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1260 (ibuffer-forward-line 0) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1261 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group-name) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1262 (progn |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1263 (require 'ibuf-ext) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1264 (ibuffer-mark-on-buffer #'identity mark it)) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1265 (ibuffer-forward-line 0 t) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1266 (let ((inhibit-read-only t)) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1267 (while (> arg 0) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1268 (ibuffer-set-mark mark) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1269 (ibuffer-forward-line movement t) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1270 (setq arg (1- arg)))))) |
42702 | 1271 |
1272 (defun ibuffer-set-mark (mark) | |
1273 (assert (eq major-mode 'ibuffer-mode)) | |
1274 (let ((inhibit-read-only t)) | |
1275 (ibuffer-set-mark-1 mark) | |
1276 (setq ibuffer-did-modification t) | |
44021
b2462b8e1cf2
(ibuffer-set-mark): Go back to the beginning of the line after setting
Colin Walters <walters@gnu.org>
parents:
43873
diff
changeset
|
1277 (ibuffer-redisplay-current) |
b2462b8e1cf2
(ibuffer-set-mark): Go back to the beginning of the line after setting
Colin Walters <walters@gnu.org>
parents:
43873
diff
changeset
|
1278 (beginning-of-line))) |
42702 | 1279 |
1280 (defun ibuffer-set-mark-1 (mark) | |
1281 (let ((beg (line-beginning-position)) | |
1282 (end (line-end-position))) | |
1283 (put-text-property beg end 'ibuffer-properties | |
1284 (list (ibuffer-current-buffer) | |
1285 mark)))) | |
1286 | |
1287 (defun ibuffer-mark-for-delete (arg) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1288 "Mark the buffers on ARG lines forward for deletion. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1289 If point is on a group name, this function operates on that group." |
42702 | 1290 (interactive "P") |
1291 (ibuffer-mark-interactive arg ibuffer-deletion-char 1)) | |
1292 | |
1293 (defun ibuffer-mark-for-delete-backwards (arg) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1294 "Mark the buffers on ARG lines backward for deletion. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1295 If point is on a group name, this function operates on that group." |
42702 | 1296 (interactive "P") |
1297 (ibuffer-mark-interactive arg ibuffer-deletion-char -1)) | |
1298 | |
1299 (defun ibuffer-current-buffer (&optional must-be-live) | |
1300 (let ((buf (car (get-text-property (line-beginning-position) | |
1301 'ibuffer-properties)))) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1302 (when must-be-live |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1303 (if (bufferp buf) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1304 (unless (buffer-live-p buf) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1305 (error (substitute-command-keys "Buffer %s has been killed; use `\\[ibuffer-update]' to update") buf)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1306 (error "No buffer on this line"))) |
42702 | 1307 buf)) |
43104
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1308 |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1309 (defun ibuffer-active-formats-name () |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1310 (if (boundp 'ibuffer-filter-format-alist) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1311 (let ((ret nil)) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1312 (dolist (filter ibuffer-filtering-qualifiers ret) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1313 (let ((val (assq (car filter) ibuffer-filter-format-alist))) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1314 (when val |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1315 (setq ret (car filter))))) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1316 (if ret |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1317 ret |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1318 :ibuffer-formats)) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1319 :ibuffer-formats)) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1320 |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1321 (defun ibuffer-current-formats (uncompiledp) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1322 (let* ((name (ibuffer-active-formats-name))) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1323 (ibuffer-check-formats) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1324 (if (eq name :ibuffer-formats) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1325 (if uncompiledp |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1326 ibuffer-formats |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1327 ibuffer-compiled-formats) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1328 (cadr (assq name |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1329 (if uncompiledp |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1330 ibuffer-filter-format-alist |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1331 ibuffer-compiled-filter-formats)))))) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1332 |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1333 (defun ibuffer-current-format (&optional uncompiledp) |
42702 | 1334 (or ibuffer-current-format |
1335 (setq ibuffer-current-format 0)) | |
43104
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1336 (nth ibuffer-current-format (ibuffer-current-formats uncompiledp))) |
42702 | 1337 |
1338 (defun ibuffer-expand-format-entry (form) | |
1339 (if (or (consp form) | |
1340 (symbolp form)) | |
1341 (let ((sym (intern (concat "ibuffer-make-column-" | |
1342 (symbol-name (if (consp form) | |
1343 (car form) | |
1344 form)))))) | |
1345 (unless (or (fboundp sym) | |
1346 (assq sym ibuffer-inline-columns)) | |
1347 (error "Unknown column %s in ibuffer-formats" form)) | |
1348 (let (min max align elide) | |
1349 (if (consp form) | |
1350 (setq min (or (nth 1 form) 0) | |
1351 max (or (nth 2 form) -1) | |
1352 align (or (nth 3 form) :left) | |
1353 elide (or (nth 4 form) nil)) | |
1354 (setq min 0 | |
1355 max -1 | |
1356 align :left | |
1357 elide nil)) | |
1358 (list sym min max align elide))) | |
1359 form)) | |
1360 | |
1361 (defun ibuffer-compile-make-eliding-form (strvar elide from-end-p) | |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1362 (let ((ellipsis (propertize ibuffer-eliding-string 'font-lock-face 'bold))) |
42702 | 1363 (if (or elide ibuffer-elide-long-columns) |
1364 `(if (> strlen 5) | |
1365 ,(if from-end-p | |
1366 `(concat ,ellipsis | |
1367 (substring ,strvar | |
1368 (length ibuffer-eliding-string))) | |
1369 `(concat | |
1370 (substring ,strvar 0 (- strlen ,(length ellipsis))) | |
1371 ,ellipsis)) | |
1372 ,strvar) | |
1373 strvar))) | |
1374 | |
1375 (defun ibuffer-compile-make-substring-form (strvar maxvar from-end-p) | |
1376 (if from-end-p | |
1377 `(substring str | |
1378 (- strlen ,maxvar)) | |
1379 `(substring ,strvar 0 ,maxvar))) | |
1380 | |
1381 (defun ibuffer-compile-make-format-form (strvar widthform alignment) | |
1382 (let* ((left `(make-string tmp2 ? )) | |
1383 (right `(make-string (- tmp1 tmp2) ? ))) | |
1384 `(progn | |
1385 (setq tmp1 ,widthform | |
1386 tmp2 (/ tmp1 2)) | |
1387 ,(case alignment | |
1388 (:right `(concat ,left ,right ,strvar)) | |
1389 (:center `(concat ,left ,strvar ,right)) | |
1390 (:left `(concat ,strvar ,left ,right)) | |
1391 (t (error "Invalid alignment %s" alignment)))))) | |
1392 | |
1393 (defun ibuffer-compile-format (format) | |
1394 (let ((result nil) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1395 ;; We use these variables to keep track of which variables |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1396 ;; inside the generated function we need to bind, since |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1397 ;; binding variables in Emacs takes time. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1398 str-used tmp1-used tmp2-used global-strlen-used) |
42702 | 1399 (dolist (form format) |
1400 (push | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1401 ;; Generate a form based on a particular format entry, like |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1402 ;; " ", mark, or (mode 16 16 :right). |
42702 | 1403 (if (stringp form) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1404 ;; It's a string; all we need to do is insert it. |
42702 | 1405 `(insert ,form) |
1406 (let* ((form (ibuffer-expand-format-entry form)) | |
1407 (sym (nth 0 form)) | |
1408 (min (nth 1 form)) | |
1409 (max (nth 2 form)) | |
1410 (align (nth 3 form)) | |
1411 (elide (nth 4 form))) | |
1412 (let* ((from-end-p (when (minusp min) | |
1413 (setq min (- min)) | |
1414 t)) | |
1415 (letbindings nil) | |
1416 (outforms nil) | |
1417 minform | |
1418 maxform | |
1419 min-used max-used strlen-used) | |
1420 (when (or (not (integerp min)) (>= min 0)) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1421 ;; This is a complex case; they want it limited to a |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1422 ;; minimum size. |
42702 | 1423 (setq min-used t) |
1424 (setq str-used t strlen-used t global-strlen-used t | |
1425 tmp1-used t tmp2-used t) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1426 ;; Generate code to limit the string to a minimum size. |
42702 | 1427 (setq minform `(progn |
1428 (setq str | |
1429 ,(ibuffer-compile-make-format-form | |
1430 'str | |
1431 `(- ,(if (integerp min) | |
1432 min | |
1433 'min) | |
1434 strlen) | |
1435 align))))) | |
1436 (when (or (not (integerp max)) (> max 0)) | |
1437 (setq str-used t max-used t) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1438 ;; Generate code to limit the string to a maximum size. |
42702 | 1439 (setq maxform `(progn |
1440 (setq str | |
1441 ,(ibuffer-compile-make-substring-form | |
1442 'str | |
1443 (if (integerp max) | |
1444 max | |
1445 'max) | |
1446 from-end-p)) | |
1447 (setq strlen (length str)) | |
1448 (setq str | |
1449 ,(ibuffer-compile-make-eliding-form 'str | |
1450 elide | |
1451 from-end-p))))) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1452 ;; Now, put these forms together with the rest of the code. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1453 (let ((callform |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1454 ;; Is this an "inline" column? This means we have |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1455 ;; to get the code from the |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1456 ;; `ibuffer-inline-columns' alist and insert it |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1457 ;; into our generated code. Otherwise, we just |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1458 ;; generate a call to the column function. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1459 (ibuffer-aif (assq sym ibuffer-inline-columns) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1460 (nth 1 it) |
45705
650fdcae4092
(ibuffer-mode): Do set `font-lock-defaults', and be sure to set
Colin Walters <walters@gnu.org>
parents:
45687
diff
changeset
|
1461 `(,sym buffer mark))) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1462 ;; You're not expected to understand this. Hell, I |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1463 ;; don't even understand it, and I wrote it five |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1464 ;; minutes ago. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1465 (insertgenfn (ibuffer-aif (get sym 'ibuffer-column-summarizer) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1466 ;; I really, really wish Emacs Lisp had closures. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1467 (lambda (arg sym) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1468 `(insert |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1469 (let ((ret ,arg)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1470 (put ',sym 'ibuffer-column-summary |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1471 (cons ret (get ',sym 'ibuffer-column-summary))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1472 ret))) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1473 (lambda (arg sym) |
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1474 `(insert ,arg)))) |
42702 | 1475 (mincompform `(< strlen ,(if (integerp min) |
1476 min | |
1477 'min))) | |
1478 (maxcompform `(> strlen ,(if (integerp max) | |
1479 max | |
1480 'max)))) | |
1481 (if (or min-used max-used) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1482 ;; The complex case, where we have to limit the |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1483 ;; form to a maximum or minimum size. |
42702 | 1484 (progn |
1485 (when (and min-used (not (integerp min))) | |
1486 (push `(min ,min) letbindings)) | |
1487 (when (and max-used (not (integerp max))) | |
1488 (push `(max ,max) letbindings)) | |
1489 (push | |
1490 (if (and min-used max-used) | |
1491 `(if ,mincompform | |
1492 ,minform | |
1493 (if ,maxcompform | |
1494 ,maxform)) | |
1495 (if min-used | |
1496 `(when ,mincompform | |
1497 ,minform) | |
1498 `(when ,maxcompform | |
1499 ,maxform))) | |
1500 outforms) | |
1501 (push (append | |
1502 `(setq str ,callform) | |
1503 (when strlen-used | |
1504 `(strlen (length str)))) | |
1505 outforms) | |
1506 (setq outforms | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1507 (append outforms (list (funcall insertgenfn 'str sym))))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1508 ;; The simple case; just insert the string. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1509 (push (funcall insertgenfn callform sym) outforms)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1510 ;; Finally, return a `let' form which binds the |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1511 ;; variables in `letbindings', and contains all the |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1512 ;; code in `outforms'. |
42702 | 1513 `(let ,letbindings |
1514 ,@outforms))))) | |
1515 result)) | |
1516 (setq result | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1517 ;; We don't want to unconditionally load the byte-compiler. |
42702 | 1518 (funcall (if (or ibuffer-always-compile-formats |
1519 (featurep 'bytecomp)) | |
1520 #'byte-compile | |
1521 #'identity) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1522 ;; Here, we actually create a lambda form which |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1523 ;; inserts all the generated forms for each entry |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1524 ;; in the format string. |
42702 | 1525 (nconc (list 'lambda '(buffer mark)) |
43489
ffa9b62fa5b9
(ibuffer-compile-format): Don't uselessly bind `pt' in generated
Colin Walters <walters@gnu.org>
parents:
43382
diff
changeset
|
1526 `((let ,(append (when str-used |
42702 | 1527 '(str)) |
1528 (when global-strlen-used | |
1529 '(strlen)) | |
1530 (when tmp1-used | |
1531 '(tmp1)) | |
1532 (when tmp2-used | |
1533 '(tmp2))) | |
1534 ,@(nreverse result)))))))) | |
1535 | |
1536 (defvar ibuffer-compiled-formats nil) | |
1537 (defvar ibuffer-cached-formats nil) | |
1538 (defvar ibuffer-cached-eliding-string nil) | |
1539 (defvar ibuffer-cached-elide-long-columns 0) | |
1540 | |
1541 (defun ibuffer-recompile-formats () | |
1542 "Recompile `ibuffer-formats'." | |
1543 (interactive) | |
1544 (setq ibuffer-compiled-formats | |
43104
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1545 (mapcar #'ibuffer-compile-format ibuffer-formats)) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1546 (when (boundp 'ibuffer-filter-format-alist) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1547 (setq ibuffer-compiled-filter-formats |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1548 (mapcar #'(lambda (entry) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1549 (cons (car entry) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1550 (mapcar #'(lambda (formats) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1551 (mapcar #'ibuffer-compile-format formats)) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1552 (cdr entry)))) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1553 ibuffer-filter-format-alist)))) |
42702 | 1554 |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1555 (defun ibuffer-clear-summary-columns (format) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1556 (dolist (form format) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1557 (ibuffer-awhen (and (consp form) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1558 (get (car form) 'ibuffer-column-summarizer)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1559 (put (car form) 'ibuffer-column-summary nil)))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1560 |
42702 | 1561 (defun ibuffer-check-formats () |
43104
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1562 (when (null ibuffer-formats) |
2a6ac08c9a18
(ibuffer): Remove link; the "home page" for ibuffer is now the Emacs
Colin Walters <walters@gnu.org>
parents:
42884
diff
changeset
|
1563 (error "No formats!")) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1564 (let ((ext-loaded (featurep 'ibuf-ext))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1565 (when (or (null ibuffer-compiled-formats) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1566 (null ibuffer-cached-formats) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1567 (not (eq ibuffer-cached-formats ibuffer-formats)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1568 (null ibuffer-cached-eliding-string) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1569 (not (equal ibuffer-cached-eliding-string ibuffer-eliding-string)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1570 (eql 0 ibuffer-cached-elide-long-columns) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1571 (not (eql ibuffer-cached-elide-long-columns |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1572 ibuffer-elide-long-columns)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1573 (and ext-loaded |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1574 (not (eq ibuffer-cached-filter-formats |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1575 ibuffer-filter-format-alist)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1576 (and ibuffer-filter-format-alist |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1577 (null ibuffer-compiled-filter-formats)))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1578 (message "Formats have changed, recompiling...") |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1579 (ibuffer-recompile-formats) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1580 (setq ibuffer-cached-formats ibuffer-formats |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1581 ibuffer-cached-eliding-string ibuffer-eliding-string |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1582 ibuffer-cached-elide-long-columns ibuffer-elide-long-columns) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1583 (when ext-loaded |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1584 (setq ibuffer-cached-filter-formats ibuffer-filter-format-alist)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1585 (message "Formats have changed, recompiling...done")))) |
42702 | 1586 |
1587 (defvar ibuffer-inline-columns nil) | |
1588 | |
1589 (define-ibuffer-column mark (:name " " :inline t) | |
1590 (string mark)) | |
1591 | |
1592 (define-ibuffer-column read-only (:name "R" :inline t) | |
1593 (if buffer-read-only | |
1594 "%" | |
1595 " ")) | |
1596 | |
1597 (define-ibuffer-column modified (:name "M" :inline t) | |
1598 (if (buffer-modified-p) | |
1599 (string ibuffer-modified-char) | |
1600 " ")) | |
1601 | |
1602 (define-ibuffer-column name (:inline t | |
1603 :props | |
1604 ('mouse-face 'highlight 'keymap ibuffer-name-map | |
1605 'ibuffer-name-column t | |
1606 'help-echo "mouse-1: mark this buffer\nmouse-2: select this buffer\nmouse-3: operate on this buffer")) | |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1607 (propertize (buffer-name) 'font-lock-face (ibuffer-buffer-name-face buffer mark))) |
42702 | 1608 |
1609 (define-ibuffer-column size (:inline t) | |
1610 (format "%s" (buffer-size))) | |
1611 | |
1612 (define-ibuffer-column mode (:inline t | |
1613 :props | |
1614 ('mouse-face 'highlight | |
1615 'keymap ibuffer-mode-name-map | |
1616 'help-echo "mouse-2: filter by this mode")) | |
1617 (format "%s" mode-name)) | |
1618 | |
1619 (define-ibuffer-column process () | |
44870
ed308b745565
(define column process): Use `ibuffer-aif'.
Colin Walters <walters@gnu.org>
parents:
44854
diff
changeset
|
1620 (ibuffer-aif (get-buffer-process buffer) |
ed308b745565
(define column process): Use `ibuffer-aif'.
Colin Walters <walters@gnu.org>
parents:
44854
diff
changeset
|
1621 (format "(%s %s)" it (process-status it)) |
ed308b745565
(define column process): Use `ibuffer-aif'.
Colin Walters <walters@gnu.org>
parents:
44854
diff
changeset
|
1622 "none")) |
42702 | 1623 |
1624 (define-ibuffer-column filename () | |
1625 (let ((directory-abbrev-alist ibuffer-directory-abbrev-alist)) | |
1626 (abbreviate-file-name | |
1627 (or buffer-file-name | |
1628 (and (boundp 'dired-directory) | |
1629 dired-directory) | |
1630 "")))) | |
1631 | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1632 (define-ibuffer-column filename-and-process (:name "Filename/Process") |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1633 (let ((proc (get-buffer-process buffer)) |
45705
650fdcae4092
(ibuffer-mode): Do set `font-lock-defaults', and be sure to set
Colin Walters <walters@gnu.org>
parents:
45687
diff
changeset
|
1634 (filename (ibuffer-make-column-filename buffer mark))) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1635 (if proc |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1636 (concat (propertize (format "(%s %s) " proc (process-status proc)) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1637 'font-lock-face 'italic) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1638 filename) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1639 filename))) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1640 |
42702 | 1641 (defun ibuffer-format-column (str width alignment) |
1642 (let ((left (make-string (/ width 2) ? )) | |
1643 (right (make-string (- width (/ width 2)) ? ))) | |
1644 (case alignment | |
1645 (:right (concat left right str)) | |
1646 (:center (concat left str right)) | |
1647 (t (concat str left right))))) | |
1648 | |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1649 (defun ibuffer-buffer-name-face (buf mark) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1650 (cond ((char-equal mark ibuffer-marked-char) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1651 ibuffer-marked-face) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1652 ((char-equal mark ibuffer-deletion-char) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1653 ibuffer-deletion-face) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1654 (t |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1655 (let ((level -1) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1656 result) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1657 (dolist (e ibuffer-fontification-alist result) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1658 (when (and (> (car e) level) |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1659 (with-current-buffer buf |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1660 (eval (nth 1 e)))) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1661 (setq level (car e) |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1662 result (nth 2 e)))))))) |
42702 | 1663 |
1664 (defun ibuffer-insert-buffer-line (buffer mark format) | |
1665 "Insert a line describing BUFFER and MARK using FORMAT." | |
1666 (assert (eq major-mode 'ibuffer-mode)) | |
1667 (let ((beg (point))) | |
1668 (funcall format buffer mark) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1669 (put-text-property beg (point) 'ibuffer-properties (list buffer mark))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1670 (insert "\n")) |
42702 | 1671 |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1672 ;; This function knows a bit too much of the internals. It would be |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1673 ;; nice if it was all abstracted away. |
42702 | 1674 (defun ibuffer-redisplay-current () |
1675 (assert (eq major-mode 'ibuffer-mode)) | |
1676 (when (eobp) | |
1677 (forward-line -1)) | |
1678 (beginning-of-line) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1679 (let ((curformat (mapcar #'ibuffer-expand-format-entry |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1680 (ibuffer-current-format t)))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1681 (ibuffer-clear-summary-columns curformat) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1682 (let ((buf (ibuffer-current-buffer))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1683 (when buf |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1684 (let ((mark (ibuffer-current-mark))) |
43873
2ce5d75bd538
(ibuffer-redisplay-current): Don't move point when redisplaying a
Colin Walters <walters@gnu.org>
parents:
43768
diff
changeset
|
1685 (save-excursion |
2ce5d75bd538
(ibuffer-redisplay-current): Don't move point when redisplaying a
Colin Walters <walters@gnu.org>
parents:
43768
diff
changeset
|
1686 (delete-region (point) (1+ (line-end-position))) |
2ce5d75bd538
(ibuffer-redisplay-current): Don't move point when redisplaying a
Colin Walters <walters@gnu.org>
parents:
43768
diff
changeset
|
1687 (ibuffer-insert-buffer-line |
2ce5d75bd538
(ibuffer-redisplay-current): Don't move point when redisplaying a
Colin Walters <walters@gnu.org>
parents:
43768
diff
changeset
|
1688 buf mark |
2ce5d75bd538
(ibuffer-redisplay-current): Don't move point when redisplaying a
Colin Walters <walters@gnu.org>
parents:
43768
diff
changeset
|
1689 (ibuffer-current-format))) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1690 (when ibuffer-shrink-to-minimum-size |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1691 (ibuffer-shrink-to-fit))))))) |
42702 | 1692 |
1693 (defun ibuffer-map-on-mark (mark func) | |
1694 (ibuffer-map-lines | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1695 #'(lambda (buf mk) |
42702 | 1696 (if (char-equal mark mk) |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1697 (funcall func buf mark) |
42702 | 1698 nil)))) |
1699 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1700 (defun ibuffer-map-lines (function &optional nomodify group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1701 "Call FUNCTION for each buffer. |
42702 | 1702 Don't set the ibuffer modification flag iff NOMODIFY is non-nil. |
1703 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1704 If optional argument GROUP is non-nil, then only call FUNCTION on |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1705 buffers in filtering group GROUP. |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1706 |
42702 | 1707 FUNCTION is called with four arguments: the buffer object itself, the |
1708 current mark symbol, and the beginning and ending line positions." | |
1709 (assert (eq major-mode 'ibuffer-mode)) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1710 (ibuffer-forward-line 0) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1711 (let* ((orig-target-line (1+ (count-lines (save-excursion |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1712 (goto-char (point-min)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1713 (ibuffer-forward-line 0) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1714 (point)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1715 (point)))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1716 (target-line-offset orig-target-line) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1717 (ibuffer-map-lines-total 0) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1718 (ibuffer-map-lines-count 0)) |
42702 | 1719 (unwind-protect |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1720 (progn |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1721 (setq buffer-read-only nil) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1722 (goto-char (point-min)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1723 (ibuffer-forward-line 0 t) |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1724 (while (and (not (eobp)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1725 (not (get-text-property (point) 'ibuffer-summary)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1726 (progn |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1727 (ibuffer-forward-line 0 t) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1728 (and (not (eobp)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1729 (not (get-text-property (point) 'ibuffer-summary))))) |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1730 (let ((result |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1731 (if (buffer-live-p (ibuffer-current-buffer)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1732 (when (or (null group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1733 (ibuffer-aif (get-text-property (point) 'ibuffer-filter-group) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1734 (equal group it))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1735 (save-excursion |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1736 (funcall function |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1737 (ibuffer-current-buffer) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1738 (ibuffer-current-mark)))) |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1739 ;; Kill the line if the buffer is dead |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1740 'kill))) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1741 ;; A given mapping function should return: |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1742 ;; `nil' if it chose not to affect the buffer |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1743 ;; `kill' means the remove line from the buffer list |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1744 ;; `t' otherwise |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1745 (incf ibuffer-map-lines-total) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1746 (cond ((null result) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1747 (forward-line 1)) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1748 ((eq result 'kill) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1749 (delete-region (line-beginning-position) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1750 (1+ (line-end-position))) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1751 (incf ibuffer-map-lines-count) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1752 (when (< ibuffer-map-lines-total |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1753 orig-target-line) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1754 (decf target-line-offset))) |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1755 (t |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1756 (incf ibuffer-map-lines-count) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1757 (forward-line 1))))) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1758 ibuffer-map-lines-count) |
42702 | 1759 (progn |
1760 (setq buffer-read-only t) | |
1761 (unless nomodify | |
1762 (set-buffer-modified-p nil)) | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1763 (goto-char (point-min)) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1764 (ibuffer-forward-line 0) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1765 (ibuffer-forward-line (1- target-line-offset)))))) |
42702 | 1766 |
1767 (defun ibuffer-get-marked-buffers () | |
1768 "Return a list of buffer objects currently marked." | |
1769 (delq nil | |
1770 (mapcar #'(lambda (e) | |
1771 (when (eq (cdr e) ibuffer-marked-char) | |
1772 (car e))) | |
1773 (ibuffer-current-state-list)))) | |
1774 | |
44659
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1775 (defun ibuffer-current-state-list (&optional pos) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1776 "Return a list like (BUF . MARK) of all buffers in an ibuffer. |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1777 If POS is non-nil, return a list like (BUF MARK POINT), where POINT is |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1778 the value of point at the beginning of the line for that buffer." |
42702 | 1779 (let ((ibuffer-current-state-list-tmp '())) |
1780 ;; ah, if only we had closures. I bet this will mysteriously | |
1781 ;; break later. Don't blame me. | |
44659
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1782 (if pos |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1783 (ibuffer-map-lines-nomodify |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1784 #'(lambda (buf mark) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1785 (when (buffer-live-p buf) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1786 (push (list buf mark (point)) ibuffer-current-state-list-tmp)))) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1787 (ibuffer-map-lines-nomodify |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1788 #'(lambda (buf mark) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1789 (when (buffer-live-p buf) |
9d84a456037d
(ibuffer-visit-buffer): Optionally allow reducing to one window.
Colin Walters <walters@gnu.org>
parents:
44571
diff
changeset
|
1790 (push (cons buf mark) ibuffer-current-state-list-tmp))))) |
42702 | 1791 (nreverse ibuffer-current-state-list-tmp))) |
1792 | |
44501 | 1793 (defun ibuffer-current-buffers-with-marks (curbufs) |
42702 | 1794 "Return a list like (BUF . MARK) of all open buffers." |
1795 (let ((bufs (ibuffer-current-state-list))) | |
1796 (mapcar #'(lambda (buf) (let ((e (assq buf bufs))) | |
1797 (if e | |
1798 e | |
1799 (cons buf ? )))) | |
44501 | 1800 curbufs))) |
42702 | 1801 |
1802 (defun ibuffer-buf-matches-predicates (buf predicates) | |
1803 (let ((hit nil) | |
1804 (name (buffer-name buf))) | |
1805 (dolist (pred predicates) | |
1806 (when (if (stringp pred) | |
1807 (string-match pred name) | |
1808 (funcall pred buf)) | |
1809 (setq hit t))) | |
1810 hit)) | |
1811 | |
1812 (defun ibuffer-filter-buffers (ibuffer-buf last bmarklist all) | |
1813 (let ((ext-loaded (featurep 'ibuf-ext))) | |
1814 (delq nil | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1815 (mapcar |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1816 ;; element should be like (BUFFER . MARK) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1817 #'(lambda (e) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1818 (let* ((buf (car e))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1819 (when |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1820 ;; This takes precedence over anything else |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1821 (or (and ibuffer-always-show-last-buffer |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1822 (eq last buf)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1823 (funcall (if ext-loaded |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1824 #'ibuffer-ext-visible-p |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1825 #'ibuffer-visible-p) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1826 buf all ibuffer-buf)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1827 e))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1828 bmarklist)))) |
42702 | 1829 |
1830 (defun ibuffer-visible-p (buf all &optional ibuffer-buf) | |
1831 (and (or all | |
1832 (not | |
1833 (ibuffer-buf-matches-predicates buf ibuffer-maybe-show-predicates))) | |
1834 (or ibuffer-view-ibuffer | |
1835 (and ibuffer-buf | |
1836 (not (eq ibuffer-buf buf)))))) | |
1837 | |
1838 ;; This function is a special case; it's not defined by | |
1839 ;; `ibuffer-define-sorter'. | |
1840 (defun ibuffer-do-sort-by-recency () | |
1841 "Sort the buffers by last view time." | |
1842 (interactive) | |
1843 (setq ibuffer-sorting-mode 'recency) | |
1844 (ibuffer-redisplay t)) | |
1845 | |
1846 (defun ibuffer-update-format () | |
1847 (when (null ibuffer-current-format) | |
1848 (setq ibuffer-current-format 0)) | |
1849 (when (null ibuffer-formats) | |
1850 (error "Ibuffer error: no formats!"))) | |
1851 | |
1852 (defun ibuffer-switch-format () | |
1853 "Switch the current display format." | |
1854 (interactive) | |
1855 (assert (eq major-mode 'ibuffer-mode)) | |
1856 (unless (consp ibuffer-formats) | |
1857 (error "Ibuffer error: No formats!")) | |
1858 (setq ibuffer-current-format | |
43249
783a6eac348c
(ibuffer-switch-format): Supply required argument for
Colin Walters <walters@gnu.org>
parents:
43104
diff
changeset
|
1859 (if (>= ibuffer-current-format (1- (length (ibuffer-current-formats nil)))) |
42702 | 1860 0 |
1861 (1+ ibuffer-current-format))) | |
1862 (ibuffer-update-format) | |
1863 (ibuffer-redisplay t)) | |
1864 | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1865 (defun ibuffer-update-title-and-summary (format) |
42702 | 1866 (assert (eq major-mode 'ibuffer-mode)) |
1867 ;; Don't do funky font-lock stuff here | |
1868 (let ((after-change-functions nil)) | |
1869 (if (get-text-property (point-min) 'ibuffer-title) | |
1870 (delete-region (point-min) | |
1871 (next-single-property-change | |
1872 (point-min) 'ibuffer-title))) | |
1873 (goto-char (point-min)) | |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1874 (add-text-properties |
42702 | 1875 (point) |
1876 (progn | |
1877 (let ((opos (point))) | |
1878 ;; Insert the title names. | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1879 (dolist (element format) |
42702 | 1880 (insert |
1881 (if (stringp element) | |
1882 element | |
1883 (let ((sym (car element)) | |
1884 (min (cadr element)) | |
1885 ;; (max (caddr element)) | |
1886 (align (cadddr element))) | |
1887 ;; Ignore a negative min when we're inserting the title | |
1888 (when (minusp min) | |
1889 (setq min (- min))) | |
1890 (let* ((name (or (get sym 'ibuffer-column-name) | |
1891 (error "Unknown column %s in ibuffer-formats" sym))) | |
1892 (len (length name))) | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1893 (if (< len min) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1894 (ibuffer-format-column name |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1895 (- min len) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1896 align) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1897 name)))))) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1898 (add-text-properties opos (point) `(ibuffer-title-header t)) |
42702 | 1899 (insert "\n") |
1900 ;; Add the underlines | |
1901 (let ((str (save-excursion | |
1902 (forward-line -1) | |
1903 (beginning-of-line) | |
1904 (buffer-substring (point) (line-end-position))))) | |
1905 (apply #'insert (mapcar | |
1906 #'(lambda (c) | |
1907 (if (not (or (char-equal c ? ) | |
1908 (char-equal c ?\n))) | |
1909 ?- | |
1910 ? )) | |
1911 str))) | |
1912 (insert "\n")) | |
1913 (point)) | |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
1914 `(ibuffer-title t font-lock-face ,ibuffer-title-face)) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1915 ;; Now, insert the summary columns. |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1916 (goto-char (point-max)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1917 (if (get-text-property (1- (point-max)) 'ibuffer-summary) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1918 (delete-region (previous-single-property-change |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1919 (point-max) 'ibuffer-summary) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1920 (point-max))) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1921 (add-text-properties |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1922 (point) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1923 (progn |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1924 (insert "\n") |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1925 (dolist (element format) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1926 (insert |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1927 (if (stringp element) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1928 (make-string (length element) ? ) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1929 (let ((sym (car element))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1930 (let ((min (cadr element)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1931 ;; (max (caddr element)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1932 (align (cadddr element))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1933 ;; Ignore a negative min when we're inserting the title |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1934 (when (minusp min) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1935 (setq min (- min))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1936 (let* ((summary (if (get sym 'ibuffer-column-summarizer) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1937 (funcall (get sym 'ibuffer-column-summarizer) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1938 (get sym 'ibuffer-column-summary)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1939 (make-string (length (get sym 'ibuffer-column-name)) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1940 ? ))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1941 (len (length summary))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1942 (if (< len min) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1943 (ibuffer-format-column summary |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1944 (- min len) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1945 align) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1946 summary))))))) |
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1947 (point)) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
1948 `(ibuffer-summary t)))) |
42702 | 1949 |
1950 (defun ibuffer-update-mode-name () | |
1951 (setq mode-name (format "Ibuffer by %s" (if ibuffer-sorting-mode | |
1952 ibuffer-sorting-mode | |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
1953 "view time"))) |
42702 | 1954 (when ibuffer-sorting-reversep |
1955 (setq mode-name (concat mode-name " [rev]"))) | |
1956 (when (and (featurep 'ibuf-ext) | |
1957 ibuffer-auto-mode) | |
1958 (setq mode-name (concat mode-name " (Auto)"))) | |
1959 (let ((result "")) | |
1960 (when (featurep 'ibuf-ext) | |
1961 (dolist (qualifier ibuffer-filtering-qualifiers) | |
1962 (setq result | |
1963 (concat result (ibuffer-format-qualifier qualifier)))) | |
1964 (if ibuffer-use-header-line | |
1965 (setq header-line-format | |
1966 (when ibuffer-filtering-qualifiers | |
1967 (replace-regexp-in-string "%" "%%" | |
1968 (concat mode-name result)))) | |
1969 (progn | |
1970 (setq mode-name (concat mode-name result)) | |
1971 (when (boundp 'header-line-format) | |
1972 (setq header-line-format nil))))))) | |
1973 | |
1974 (defun ibuffer-redisplay (&optional silent) | |
1975 "Redisplay the current list of buffers. | |
1976 | |
1977 This does not show new buffers; use `ibuffer-update' for that. | |
1978 | |
1979 If SILENT is non-`nil', do not generate progress messages." | |
1980 (interactive) | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1981 (ibuffer-forward-line 0) |
42702 | 1982 (unless silent |
1983 (message "Redisplaying current buffer list...")) | |
1984 (let ((blist (ibuffer-current-state-list))) | |
1985 (when (null blist) | |
1986 (if (and (featurep 'ibuf-ext) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
1987 (or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups)) |
42702 | 1988 (message "No buffers! (note: filtering in effect)") |
1989 (error "No buffers!"))) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
1990 (ibuffer-redisplay-engine blist t) |
42702 | 1991 (ibuffer-update-mode-name) |
1992 (unless silent | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1993 (message "Redisplaying current buffer list...done")) |
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
1994 (ibuffer-forward-line 0))) |
42702 | 1995 |
1996 (defun ibuffer-update (arg &optional silent) | |
1997 "Regenerate the list of all buffers. | |
1998 | |
1999 Display buffers whose name matches one of `ibuffer-maybe-show-predicates' | |
2000 iff arg ARG is non-nil. | |
2001 | |
2002 Do not display messages if SILENT is non-nil." | |
2003 (interactive "P") | |
44571
be1cb50b8859
(ibuffer-forward-line): Just skip header if we're
Colin Walters <walters@gnu.org>
parents:
44501
diff
changeset
|
2004 (ibuffer-forward-line 0) |
42702 | 2005 (let* ((bufs (buffer-list)) |
2006 (blist (ibuffer-filter-buffers | |
2007 (current-buffer) | |
2008 (if (and | |
2009 (cadr bufs) | |
2010 (eq ibuffer-always-show-last-buffer | |
2011 :nomini) | |
2012 ;; This is a hack. | |
2013 (string-match " \\*Minibuf" | |
2014 (buffer-name (cadr bufs)))) | |
2015 (caddr bufs) | |
2016 (cadr bufs)) | |
44482
510e978b6292
(ibuffer-canonicalize-state-list): Delete unused function.
Colin Walters <walters@gnu.org>
parents:
44245
diff
changeset
|
2017 (ibuffer-current-buffers-with-marks bufs) |
42702 | 2018 arg))) |
2019 (when (null blist) | |
2020 (if (and (featurep 'ibuf-ext) | |
2021 ibuffer-filtering-qualifiers) | |
2022 (message "No buffers! (note: filtering in effect)") | |
2023 (error "No buffers!"))) | |
2024 (unless silent | |
2025 (message "Updating buffer list...")) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2026 (ibuffer-redisplay-engine blist arg) |
42702 | 2027 (ibuffer-update-mode-name) |
2028 (unless silent | |
2029 (message "Updating buffer list...done"))) | |
2030 (if (eq ibuffer-shrink-to-minimum-size 'onewindow) | |
2031 (ibuffer-shrink-to-fit t) | |
2032 (when ibuffer-shrink-to-minimum-size | |
2033 (ibuffer-shrink-to-fit))) | |
2034 (ibuffer-forward-line 0)) | |
2035 | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2036 (defun ibuffer-sort-bufferlist (bmarklist) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2037 (let* ((sortdat (assq ibuffer-sorting-mode |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2038 ibuffer-sorting-functions-alist)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2039 (func (caddr sortdat))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2040 (let ((result |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2041 ;; actually sort the buffers |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2042 (if (and sortdat func) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2043 (sort bmarklist func) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2044 bmarklist))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2045 ;; perhaps reverse the sorted buffer list |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2046 (if ibuffer-sorting-reversep |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2047 (nreverse result) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2048 result)))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2049 |
45270
087cbd1a5087
(ibuffer-insert-filter-group): New argument filter-string.
Colin Walters <walters@gnu.org>
parents:
45220
diff
changeset
|
2050 (defun ibuffer-insert-filter-group (name display-name filter-string format bmarklist) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2051 (add-text-properties |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2052 (point) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2053 (progn |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2054 (insert "[ " display-name " ]") |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2055 (point)) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2056 `(ibuffer-filter-group-name |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2057 ,name |
45687
434d9f56eab8
(ibuffer-category-alist): Delete.
Colin Walters <walters@gnu.org>
parents:
45443
diff
changeset
|
2058 font-lock-face ,ibuffer-filter-group-name-face |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2059 keymap ,ibuffer-mode-filter-group-map |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2060 mouse-face highlight |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2061 help-echo ,(concat filter-string "mouse-1: toggle marks in this group\nmouse-2: hide/show this filtering group "))) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2062 (insert "\n") |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2063 (when bmarklist |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2064 (put-text-property |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2065 (point) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2066 (progn |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2067 (dolist (entry bmarklist) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2068 (ibuffer-insert-buffer-line (car entry) (cdr entry) format)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2069 (point)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2070 'ibuffer-filter-group |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2071 name))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2072 |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2073 (defun ibuffer-redisplay-engine (bmarklist &optional all) |
42702 | 2074 (assert (eq major-mode 'ibuffer-mode)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2075 (let* ((--ibuffer-insert-buffers-and-marks-format |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2076 (ibuffer-current-format)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2077 (--ibuffer-expanded-format (mapcar #'ibuffer-expand-format-entry |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2078 (ibuffer-current-format t))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2079 (orig (count-lines (point-min) (point))) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2080 ;; Inhibit font-lock caching tricks, since we're modifying the |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2081 ;; entire buffer at once |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2082 (after-change-functions nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2083 (ext-loaded (featurep 'ibuf-ext)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2084 (bgroups (if ext-loaded |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2085 (ibuffer-generate-filter-groups bmarklist) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2086 (list (cons "Default" bmarklist))))) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
2087 (ibuffer-clear-summary-columns --ibuffer-expanded-format) |
42702 | 2088 (unwind-protect |
2089 (progn | |
2090 (setq buffer-read-only nil) | |
2091 (erase-buffer) | |
2092 (ibuffer-update-format) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2093 (dolist (group (nreverse bgroups)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2094 (let* ((name (car group)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2095 (disabled (and ext-loaded |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2096 (member name ibuffer-hidden-filter-groups))) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2097 (bmarklist (cdr group))) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2098 (unless (and (null bmarklist) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2099 ext-loaded |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2100 (null ibuffer-show-empty-filter-groups)) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2101 (ibuffer-insert-filter-group |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2102 name |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2103 (if disabled (concat name " ...") name) |
45270
087cbd1a5087
(ibuffer-insert-filter-group): New argument filter-string.
Colin Walters <walters@gnu.org>
parents:
45220
diff
changeset
|
2104 (if ext-loaded |
087cbd1a5087
(ibuffer-insert-filter-group): New argument filter-string.
Colin Walters <walters@gnu.org>
parents:
45220
diff
changeset
|
2105 (ibuffer-format-filter-group-data name) |
087cbd1a5087
(ibuffer-insert-filter-group): New argument filter-string.
Colin Walters <walters@gnu.org>
parents:
45220
diff
changeset
|
2106 "") |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2107 --ibuffer-insert-buffers-and-marks-format |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2108 (if disabled |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2109 nil |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2110 (ibuffer-sort-bufferlist bmarklist)))))) |
43768
643faa52276e
(ibuffer-update-mode-name): Substitute "view time" instead of
Colin Walters <walters@gnu.org>
parents:
43489
diff
changeset
|
2111 (ibuffer-update-title-and-summary --ibuffer-expanded-format)) |
42702 | 2112 (setq buffer-read-only t) |
2113 (set-buffer-modified-p ibuffer-did-modification) | |
2114 (setq ibuffer-did-modification nil) | |
2115 (goto-line (1+ orig))))) | |
2116 | |
2117 (defun ibuffer-quit () | |
2118 "Quit this `ibuffer' session. | |
2119 Delete the current window iff `ibuffer-delete-window-on-quit' is non-nil." | |
2120 (interactive) | |
2121 (if ibuffer-delete-window-on-quit | |
2122 (progn | |
2123 (bury-buffer) | |
2124 (unless (= (count-windows) 1) | |
2125 (delete-window))) | |
2126 (bury-buffer))) | |
2127 | |
2128 ;;;###autoload | |
2129 (defun ibuffer-list-buffers (&optional files-only) | |
2130 "Display a list of buffers, in another window. | |
2131 If optional argument FILES-ONLY is non-nil, then add a filter for | |
2132 buffers which are visiting a file." | |
2133 (interactive "P") | |
2134 (ibuffer t nil (when files-only | |
2135 '((filename . ".*"))) t)) | |
2136 | |
2137 ;;;###autoload | |
2138 (defun ibuffer-other-window (&optional files-only) | |
2139 "Like `ibuffer', but displayed in another window by default. | |
2140 If optional argument FILES-ONLY is non-nil, then add a filter for | |
2141 buffers which are visiting a file." | |
2142 (interactive "P") | |
2143 (ibuffer t nil (when files-only | |
2144 '((filename . ".*"))))) | |
2145 | |
2146 ;;;###autoload | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2147 (defun ibuffer (&optional other-window-p name qualifiers noselect |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2148 shrink filter-groups formats) |
42702 | 2149 "Begin using `ibuffer' to edit a list of buffers. |
2150 Type 'h' after entering ibuffer for more information. | |
2151 | |
2152 Optional argument OTHER-WINDOW-P says to use another window. | |
2153 Optional argument NAME specifies the name of the buffer; it defaults | |
2154 to \"*Ibuffer*\". | |
2155 Optional argument QUALIFIERS is an initial set of filtering qualifiers | |
2156 to use; see `ibuffer-filtering-qualifiers'. | |
2157 Optional argument NOSELECT means don't select the Ibuffer buffer. | |
2158 Optional argument SHRINK means shrink the buffer to minimal size. The | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2159 special value `onewindow' means always use another window. |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2160 Optional argument FILTER-GROUPS is an initial set of filtering |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2161 groups to use; see `ibuffer-filter-groups'. |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2162 Optional argument FORMATS is the value to use for `ibuffer-formats'. |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2163 If specified, then the variable `ibuffer-formats' will have that value |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2164 locally in this buffer." |
42702 | 2165 (interactive "P") |
2166 (when ibuffer-use-other-window | |
44137
32c7d9355caf
(ibuffer): If the user has `ibuffer-use-other-window' non-nil, then
Colin Walters <walters@gnu.org>
parents:
44021
diff
changeset
|
2167 (setq other-window-p t)) |
42702 | 2168 (let* ((buf (get-buffer-create (or name "*Ibuffer*"))) |
2169 (already-in (eq (current-buffer) buf)) | |
2170 (need-update nil)) | |
2171 (if other-window-p | |
2172 (funcall (if noselect #'(lambda (buf) (display-buffer buf t)) #'pop-to-buffer) buf) | |
2173 (funcall (if noselect #'display-buffer #'switch-to-buffer) buf)) | |
2174 (with-current-buffer buf | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2175 (save-selected-window |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2176 ;; We switch to the buffer's window in order to be able |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2177 ;; to modify the value of point |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2178 (select-window (get-buffer-window buf)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2179 (unless (eq major-mode 'ibuffer-mode) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2180 (ibuffer-mode) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2181 (setq need-update t)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2182 (setq ibuffer-delete-window-on-quit other-window-p) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2183 (when shrink |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2184 (setq ibuffer-shrink-to-minimum-size shrink)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2185 (when qualifiers |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2186 (require 'ibuf-ext) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2187 (setq ibuffer-filtering-qualifiers qualifiers)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2188 (when filter-groups |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2189 (require 'ibuf-ext) |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2190 (setq ibuffer-filter-groups filter-groups)) |
45443
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2191 (when formats |
8fd13e1863ed
(toplevel): Require font-lock, to get the face definitions.
Colin Walters <walters@gnu.org>
parents:
45270
diff
changeset
|
2192 (set (make-local-variable 'ibuffer-formats) formats)) |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2193 (ibuffer-update nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2194 ;; Skip the group name by default. |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2195 (ibuffer-forward-line 0 t) |
42702 | 2196 (unwind-protect |
2197 (progn | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2198 (setq buffer-read-only nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2199 (run-hooks 'ibuffer-hooks)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2200 (setq buffer-read-only t)) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2201 (unless ibuffer-expert |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2202 (message "Commands: m, u, t, RET, g, k, S, D, Q; q to quit; h for help")))))) |
42702 | 2203 |
44482
510e978b6292
(ibuffer-canonicalize-state-list): Delete unused function.
Colin Walters <walters@gnu.org>
parents:
44245
diff
changeset
|
2204 (put 'ibuffer-mode 'mode-class 'special) |
42702 | 2205 (defun ibuffer-mode () |
2206 "A major mode for viewing a list of buffers. | |
2207 In ibuffer, you can conveniently perform many operations on the | |
2208 currently open buffers, in addition to filtering your view to a | |
2209 particular subset of them, and sorting by various criteria. | |
2210 | |
2211 Operations on marked buffers: | |
2212 | |
2213 '\\[ibuffer-do-save]' - Save the marked buffers | |
2214 '\\[ibuffer-do-view]' - View the marked buffers in this frame. | |
2215 '\\[ibuffer-do-view-other-frame]' - View the marked buffers in another frame. | |
2216 '\\[ibuffer-do-revert]' - Revert the marked buffers. | |
2217 '\\[ibuffer-do-toggle-read-only]' - Toggle read-only state of marked buffers. | |
2218 '\\[ibuffer-do-delete]' - Kill the marked buffers. | |
2219 '\\[ibuffer-do-replace-regexp]' - Replace by regexp in each of the marked | |
2220 buffers. | |
2221 '\\[ibuffer-do-query-replace]' - Query replace in each of the marked buffers. | |
2222 '\\[ibuffer-do-query-replace-regexp]' - As above, with a regular expression. | |
2223 '\\[ibuffer-do-print]' - Print the marked buffers. | |
2224 '\\[ibuffer-do-occur]' - List lines in all marked buffers which match | |
2225 a given regexp (like the function `occur'). | |
2226 '\\[ibuffer-do-shell-command-pipe]' - Pipe the contents of the marked | |
2227 buffers to a shell command. | |
2228 '\\[ibuffer-do-shell-command-pipe-replace]' - Replace the contents of the marked | |
2229 buffers with the output of a shell command. | |
2230 '\\[ibuffer-do-shell-command-file]' - Run a shell command with the | |
2231 buffer's file as an argument. | |
2232 '\\[ibuffer-do-eval]' - Evaluate a form in each of the marked buffers. This | |
2233 is a very flexible command. For example, if you want to make all | |
2234 of the marked buffers read only, try using (toggle-read-only 1) as | |
2235 the input form. | |
2236 '\\[ibuffer-do-view-and-eval]' - As above, but view each buffer while the form | |
2237 is evaluated. | |
2238 '\\[ibuffer-do-kill-lines]' - Remove the marked lines from the *Ibuffer* buffer, | |
2239 but don't kill the associated buffer. | |
2240 '\\[ibuffer-do-kill-on-deletion-marks]' - Kill all buffers marked for deletion. | |
2241 | |
2242 Marking commands: | |
2243 | |
2244 '\\[ibuffer-mark-forward]' - Mark the buffer at point. | |
2245 '\\[ibuffer-toggle-marks]' - Unmark all currently marked buffers, and mark | |
2246 all unmarked buffers. | |
2247 '\\[ibuffer-unmark-forward]' - Unmark the buffer at point. | |
2248 '\\[ibuffer-unmark-backward]' - Unmark the buffer at point, and move to the | |
2249 previous line. | |
2250 '\\[ibuffer-unmark-all]' - Unmark all marked buffers. | |
2251 '\\[ibuffer-mark-by-mode]' - Mark buffers by major mode. | |
2252 '\\[ibuffer-mark-unsaved-buffers]' - Mark all \"unsaved\" buffers. | |
2253 This means that the buffer is modified, and has an associated file. | |
2254 '\\[ibuffer-mark-modified-buffers]' - Mark all modified buffers, | |
2255 regardless of whether or not they have an associated file. | |
2256 '\\[ibuffer-mark-special-buffers]' - Mark all buffers whose name begins and | |
2257 ends with '*'. | |
2258 '\\[ibuffer-mark-dissociated-buffers]' - Mark all buffers which have | |
2259 an associated file, but that file doesn't currently exist. | |
2260 '\\[ibuffer-mark-read-only-buffers]' - Mark all read-only buffers. | |
2261 '\\[ibuffer-mark-dired-buffers]' - Mark buffers in `dired' mode. | |
2262 '\\[ibuffer-mark-help-buffers]' - Mark buffers in `help-mode', `apropos-mode', etc. | |
2263 '\\[ibuffer-mark-old-buffers]' - Mark buffers older than `ibuffer-old-time'. | |
2264 '\\[ibuffer-mark-for-delete]' - Mark the buffer at point for deletion. | |
2265 '\\[ibuffer-mark-by-name-regexp]' - Mark buffers by their name, using a regexp. | |
2266 '\\[ibuffer-mark-by-mode-regexp]' - Mark buffers by their major mode, using a regexp. | |
2267 '\\[ibuffer-mark-by-file-name-regexp]' - Mark buffers by their filename, using a regexp. | |
2268 | |
2269 Filtering commands: | |
2270 | |
2271 '\\[ibuffer-filter-by-mode]' - Add a filter by major mode. | |
2272 '\\[ibuffer-filter-by-name]' - Add a filter by buffer name. | |
2273 '\\[ibuffer-filter-by-content]' - Add a filter by buffer content. | |
2274 '\\[ibuffer-filter-by-filename]' - Add a filter by filename. | |
2275 '\\[ibuffer-filter-by-size-gt]' - Add a filter by buffer size. | |
2276 '\\[ibuffer-filter-by-size-lt]' - Add a filter by buffer size. | |
2277 '\\[ibuffer-filter-by-predicate]' - Add a filter by an arbitrary Lisp predicate. | |
2278 '\\[ibuffer-save-filters]' - Save the current filters with a name. | |
2279 '\\[ibuffer-switch-to-saved-filters]' - Switch to previously saved filters. | |
2280 '\\[ibuffer-add-saved-filters]' - Add saved filters to current filters. | |
2281 '\\[ibuffer-or-filter]' - Replace the top two filters with their logical OR. | |
2282 '\\[ibuffer-pop-filter]' - Remove the top filter. | |
2283 '\\[ibuffer-negate-filter]' - Invert the logical sense of the top filter. | |
2284 '\\[ibuffer-decompose-filter]' - Break down the topmost filter. | |
2285 '\\[ibuffer-filter-disable]' - Remove all filtering currently in effect. | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2286 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2287 Filter group commands: |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2288 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2289 '\\[ibuffer-filters-to-filter-group]' - Create filter group from filters. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2290 '\\[ibuffer-pop-filter-group]' - Remove top filter group. |
44936
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2291 '\\[ibuffer-forward-filter-group]' - Move to the next filter group. |
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2292 '\\[ibuffer-backward-filter-group]' - Move to the previous filter group. |
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2293 '\\[ibuffer-clear-filter-groups]' - Remove all active filter groups. |
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2294 '\\[ibuffer-save-filter-groups]' - Save the current groups with a name. |
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2295 '\\[ibuffer-switch-to-saved-filter-groups]' - Restore previously saved groups. |
ee04dcf4fae7
(ibuffer-mode): Additional documentation on filter groups.
Colin Walters <walters@gnu.org>
parents:
44870
diff
changeset
|
2296 '\\[ibuffer-delete-saved-filter-groups]' - Delete previously saved groups. |
42702 | 2297 |
2298 Sorting commands: | |
2299 | |
2300 '\\[ibuffer-toggle-sorting-mode]' - Rotate between the various sorting modes. | |
2301 '\\[ibuffer-invert-sorting]' - Reverse the current sorting order. | |
2302 '\\[ibuffer-do-sort-by-alphabetic]' - Sort the buffers lexicographically. | |
2303 '\\[ibuffer-do-sort-by-recency]' - Sort the buffers by last viewing time. | |
2304 '\\[ibuffer-do-sort-by-size]' - Sort the buffers by size. | |
2305 '\\[ibuffer-do-sort-by-major-mode]' - Sort the buffers by major mode. | |
2306 | |
2307 Other commands: | |
2308 | |
2309 '\\[ibuffer-switch-format]' - Change the current display format. | |
2310 '\\[forward-line]' - Move point to the next line. | |
2311 '\\[previous-line]' - Move point to the previous line. | |
2312 '\\[ibuffer-update]' - As above, but add new buffers to the list. | |
2313 '\\[ibuffer-quit]' - Bury the Ibuffer buffer. | |
2314 '\\[describe-mode]' - This help. | |
2315 '\\[ibuffer-diff-with-file]' - View the differences between this buffer | |
2316 and its associated file. | |
2317 '\\[ibuffer-visit-buffer]' - View the buffer on this line. | |
2318 '\\[ibuffer-visit-buffer-other-window]' - As above, but in another window. | |
2319 '\\[ibuffer-visit-buffer-other-window-noselect]' - As both above, but don't select | |
2320 the new window. | |
2321 '\\[ibuffer-bury-buffer]' - Bury (not kill!) the buffer on this line. | |
2322 | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2323 ** Information on Filtering: |
42702 | 2324 |
2325 You can filter your ibuffer view via different critera. Each Ibuffer | |
2326 buffer has its own stack of active filters. For example, suppose you | |
2327 are working on an Emacs Lisp project. You can create an Ibuffer | |
2328 buffer displays buffers in just `emacs-lisp' modes via | |
2329 '\\[ibuffer-filter-by-mode] emacs-lisp-mode RET'. In this case, there | |
2330 is just one entry on the filtering stack. | |
2331 | |
2332 You can also combine filters. The various filtering commands push a | |
2333 new filter onto the stack, and the filters combine to show just | |
2334 buffers which satisfy ALL criteria on the stack. For example, suppose | |
2335 you only want to see buffers in `emacs-lisp' mode, whose names begin | |
2336 with \"gnus\". You can accomplish this via: | |
2337 '\\[ibuffer-filter-by-mode] emacs-lisp-mode RET | |
2338 \\[ibuffer-filter-by-name] ^gnus RET'. | |
2339 | |
2340 Additionally, you can OR the top two filters together with | |
2341 '\\[ibuffer-or-filters]'. To see all buffers in either | |
2342 `emacs-lisp-mode' or `lisp-interaction-mode', type: | |
2343 | |
2344 '\\[ibuffer-filter-by-mode] emacs-lisp-mode RET \\[ibuffer-filter-by-mode] lisp-interaction-mode RET \\[ibuffer-or-filters]'. | |
2345 | |
2346 Filters can also be saved and restored using mnemonic names: see the | |
2347 functions `ibuffer-save-filters' and `ibuffer-switch-to-saved-filters'. | |
2348 | |
2349 To remove the top filter on the stack, use '\\[ibuffer-pop-filter]', and | |
2350 to disable all filtering currently in effect, use | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2351 '\\[ibuffer-filter-disable]'. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2352 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2353 ** Filter Groups: |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2354 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2355 Once one has mastered filters, the next logical step up is \"filter |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2356 groups\". A filter group is basically a named group of buffers which |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2357 match a filter, which are displayed together in an Ibuffer buffer. To |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2358 create a filter group, simply use the regular functions to create a |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2359 filter, and then type '\\[ibuffer-filters-to-filter-group]'. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2360 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2361 A quick example will make things clearer. Suppose that one wants to |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2362 group all of one's Emacs Lisp buffers together. To do this, type |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2363 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2364 '\\[ibuffer-filter-by-mode] emacs-lisp-mode RET \\[ibuffer-filters-to-filter-group] RET emacs lisp buffers RET' |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2365 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2366 You may, of course, name the group whatever you want; it doesn't have |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2367 to be \"emacs lisp buffers\". Filter groups may be composed of any |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2368 arbitrary combination of filters. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2369 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2370 Just like filters themselves, filter groups act as a stack. Buffers |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2371 will not be displayed multiple times if they would be included in |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2372 multiple filter groups; instead, the first filter group is used. The |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2373 filter groups are displayed in this order of precedence. |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2374 |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2375 You may rearrange filter groups by using the regular |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2376 '\\[ibuffer-kill-line]' and '\\[ibuffer-yank]' pair. Yanked groups |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2377 will be inserted before the group at point." |
42702 | 2378 (kill-all-local-variables) |
2379 (use-local-map ibuffer-mode-map) | |
2380 (setq major-mode 'ibuffer-mode) | |
2381 (setq mode-name "Ibuffer") | |
2382 (setq buffer-read-only t) | |
2383 (buffer-disable-undo) | |
43382
6d5695dd7639
(ibuffer-truncate-lines): New option.
Colin Walters <walters@gnu.org>
parents:
43249
diff
changeset
|
2384 (setq truncate-lines ibuffer-truncate-lines) |
42702 | 2385 ;; This makes things less ugly for Emacs 21 users with a non-nil |
2386 ;; `show-trailing-whitespace'. | |
2387 (setq show-trailing-whitespace nil) | |
2388 (set (make-local-variable 'revert-buffer-function) | |
2389 #'ibuffer-update) | |
2390 (set (make-local-variable 'ibuffer-sorting-mode) | |
2391 ibuffer-default-sorting-mode) | |
2392 (set (make-local-variable 'ibuffer-sorting-reversep) | |
2393 ibuffer-default-sorting-reversep) | |
2394 (set (make-local-variable 'ibuffer-shrink-to-minimum-size) | |
2395 ibuffer-default-shrink-to-minimum-size) | |
2396 (set (make-local-variable 'ibuffer-filtering-qualifiers) nil) | |
44854
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2397 (set (make-local-variable 'ibuffer-filter-groups) nil) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2398 (set (make-local-variable 'ibuffer-filter-group-kill-ring) nil) |
6cd35f994b33
(ibuffer-formats): Doc fix.
Colin Walters <walters@gnu.org>
parents:
44830
diff
changeset
|
2399 (set (make-local-variable 'ibuffer-hidden-filter-groups) nil) |
42702 | 2400 (set (make-local-variable 'ibuffer-compiled-formats) nil) |
2401 (set (make-local-variable 'ibuffer-cached-formats) nil) | |
2402 (set (make-local-variable 'ibuffer-cached-eliding-string) nil) | |
2403 (set (make-local-variable 'ibuffer-cached-elide-long-columns) nil) | |
2404 (set (make-local-variable 'ibuffer-current-format) nil) | |
2405 (set (make-local-variable 'ibuffer-did-modifiction) nil) | |
2406 (set (make-local-variable 'ibuffer-delete-window-on-quit) nil) | |
2407 (set (make-local-variable 'ibuffer-did-modification) nil) | |
44830
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2408 (set (make-local-variable 'ibuffer-tmp-hide-regexps) nil) |
ce8cb080a127
(ibuffer-filter-group-name-face): New.
Colin Walters <walters@gnu.org>
parents:
44796
diff
changeset
|
2409 (set (make-local-variable 'ibuffer-tmp-show-regexps) nil) |
42702 | 2410 (define-key ibuffer-mode-map [menu-bar edit] 'undefined) |
2411 (define-key ibuffer-mode-map [menu-bar operate] (cons "Operate" ibuffer-mode-operate-map)) | |
2412 (ibuffer-update-format) | |
2413 (when ibuffer-default-directory | |
2414 (setq default-directory ibuffer-default-directory)) | |
2415 (run-hooks 'ibuffer-mode-hooks) | |
2416 ;; called after mode hooks to allow the user to add filters | |
2417 (ibuffer-update-mode-name)) | |
2418 | |
2419 (provide 'ibuffer) | |
2420 | |
2421 ;; Local Variables: | |
2422 ;; coding: iso-8859-1 | |
2423 ;; End: | |
2424 | |
2425 ;;; ibuffer.el ends here |