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