1 ;;; buff-menu.el --- buffer menu main function and support functions.
3 ;; Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc.
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 ;; Edit, delete, or change attributes of all currently active Emacs
26 ;; buffers from a list summarizing their state. A good way to browse
27 ;; any special or scratch buffers you have loaded, since you can't find
28 ;; them by filename. The single entry point is `Buffer-menu-mode',
29 ;; normally bound to C-x C-b.
33 ;; Merged by esr with recent mods to Emacs 19 buff-menu, 23 Mar 1993
35 ;; Modified by Bob Weiner, Motorola, Inc., 4/14/89
37 ;; Added optional backup argument to 'Buffer-menu-unmark' to make it undelete
38 ;; current entry and then move to previous one.
40 ;; Based on FSF code dating back to 1985.
44 ;;;Not needed, now that q is now just quit and Buffer-menu-select is v.
45 ;;;(defvar Buffer-menu-window-config nil
46 ;;; "Window configuration saved from entry to `buffer-menu'.")
48 ; Put buffer *Buffer List* into proper mode right away
49 ; so that from now on even list-buffers is enough to get a buffer menu.
51 (defvar Buffer-menu-buffer-column nil
)
53 (defvar Buffer-menu-mode-map nil
"")
55 (if Buffer-menu-mode-map
57 (setq Buffer-menu-mode-map
(make-keymap))
58 (suppress-keymap Buffer-menu-mode-map t
)
59 (define-key Buffer-menu-mode-map
"q" 'Buffer-menu-quit
)
60 (define-key Buffer-menu-mode-map
"v" 'Buffer-menu-select
)
61 (define-key Buffer-menu-mode-map
"2" 'Buffer-menu-2-window
)
62 (define-key Buffer-menu-mode-map
"1" 'Buffer-menu-1-window
)
63 (define-key Buffer-menu-mode-map
"f" 'Buffer-menu-this-window
)
64 (define-key Buffer-menu-mode-map
"o" 'Buffer-menu-other-window
)
65 (define-key Buffer-menu-mode-map
"\C-o" 'Buffer-menu-switch-other-window
)
66 (define-key Buffer-menu-mode-map
"s" 'Buffer-menu-save
)
67 (define-key Buffer-menu-mode-map
"d" 'Buffer-menu-delete
)
68 (define-key Buffer-menu-mode-map
"k" 'Buffer-menu-delete
)
69 (define-key Buffer-menu-mode-map
"\C-d" 'Buffer-menu-delete-backwards
)
70 (define-key Buffer-menu-mode-map
"\C-k" 'Buffer-menu-delete
)
71 (define-key Buffer-menu-mode-map
"x" 'Buffer-menu-execute
)
72 (define-key Buffer-menu-mode-map
" " 'next-line
)
73 (define-key Buffer-menu-mode-map
"n" 'next-line
)
74 (define-key Buffer-menu-mode-map
"p" 'previous-line
)
75 (define-key Buffer-menu-mode-map
"\177" 'Buffer-menu-backup-unmark
)
76 (define-key Buffer-menu-mode-map
"~" 'Buffer-menu-not-modified
)
77 (define-key Buffer-menu-mode-map
"?" 'describe-mode
)
78 (define-key Buffer-menu-mode-map
"u" 'Buffer-menu-unmark
)
79 (define-key Buffer-menu-mode-map
"m" 'Buffer-menu-mark
)
80 (define-key Buffer-menu-mode-map
"t" 'Buffer-menu-visit-tags-table
)
81 (define-key Buffer-menu-mode-map
"%" 'Buffer-menu-toggle-read-only
)
82 (define-key Buffer-menu-mode-map
[mouse-2
] 'Buffer-menu-mouse-select
)
85 ;; Buffer Menu mode is suitable only for specially formatted data.
86 (put 'Buffer-menu-mode
'mode-class
'special
)
88 (defun Buffer-menu-mode ()
89 "Major mode for editing a list of buffers.
90 Each line describes one of the buffers in Emacs.
91 Letters do not insert themselves; instead, they are commands.
92 \\<Buffer-menu-mode-map>
93 \\[Buffer-menu-mouse-select] -- select buffer you click on, in place of the buffer menu.
94 \\[Buffer-menu-this-window] -- select current line's buffer in place of the buffer menu.
95 \\[Buffer-menu-other-window] -- select that buffer in another window,
96 so the buffer menu buffer remains visible in its window.
97 \\[Buffer-menu-switch-other-window] -- make another window display that buffer.
98 \\[Buffer-menu-mark] -- mark current line's buffer to be displayed.
99 \\[Buffer-menu-select] -- select current line's buffer.
100 Also show buffers marked with m, in other windows.
101 \\[Buffer-menu-1-window] -- select that buffer in full-frame window.
102 \\[Buffer-menu-2-window] -- select that buffer in one window,
103 together with buffer selected before this one in another window.
104 \\[Buffer-menu-visit-tags-table] -- visit-tags-table this buffer.
105 \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer.
106 \\[Buffer-menu-save] -- mark that buffer to be saved, and move down.
107 \\[Buffer-menu-delete] -- mark that buffer to be deleted, and move down.
108 \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted, and move up.
109 \\[Buffer-menu-execute] -- delete or save marked buffers.
110 \\[Buffer-menu-unmark] -- remove all kinds of marks from current line.
111 With prefix argument, also move up one line.
112 \\[Buffer-menu-backup-unmark] -- back up a line and remove marks.
113 \\[Buffer-menu-toggle-read-only] -- toggle read-only status of buffer on this line."
114 (kill-all-local-variables)
115 (use-local-map Buffer-menu-mode-map
)
116 (setq major-mode
'Buffer-menu-mode
)
117 (setq mode-name
"Buffer Menu")
119 (goto-char (point-min))
120 (search-forward "Buffer")
122 (setq Buffer-menu-buffer-column
(current-column))
125 (let ((where (Buffer-menu-buffer-name-position)))
126 (put-text-property (car where
) (cdr where
) 'mouse-face
'highlight
))
128 (setq truncate-lines t
)
129 (setq buffer-read-only t
)
130 (run-hooks 'buffer-menu-mode-hook
))
132 (defun Buffer-menu-buffer (error-if-non-existent-p)
133 "Return buffer described by this line of buffer menu."
134 (let* ((where (Buffer-menu-buffer-name-position))
135 (string (buffer-substring (car where
) (cdr where
))))
136 (or (get-buffer string
)
137 (if error-if-non-existent-p
138 (error "No buffer named \"%s\"" string
)
141 ;; Find the start and end positions of the buffer name on this line.
142 ;; Returns a cons (START . END).
143 (defun Buffer-menu-buffer-name-position ()
146 (forward-char Buffer-menu-buffer-column
)
147 (let ((start (point)))
148 (re-search-forward "\t\\| ")
149 (skip-chars-backward " \t")
150 (cons start
(point)))))
152 (defun buffer-menu (&optional arg
)
153 "Make a menu of buffers so you can save, delete or select them.
154 With argument, show only buffers that are visiting files.
155 Type ? after invocation to get help on commands available.
156 Type q immediately to make the buffer menu go away and to restore
157 previous window configuration."
159 ;;; (setq Buffer-menu-window-config (current-window-configuration))
161 (pop-to-buffer "*Buffer List*")
164 "Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help."))
166 (defun Buffer-menu-quit ()
167 "Quit the buffer menu."
169 (let ((buffer (current-buffer)))
170 ;; Restore previous window configuration before displaying
172 (switch-to-buffer (other-buffer))
173 (bury-buffer buffer
)))
175 (defun Buffer-menu-mark ()
176 "Mark buffer on this line for being displayed by \\<Buffer-menu-mode-map>\\[Buffer-menu-select] command."
179 (if (looking-at " [-M]")
181 (let ((buffer-read-only nil
))
186 (defun Buffer-menu-unmark (&optional backup
)
187 "Cancel all requested operations on buffer on this line and move down.
188 Optional ARG means move up."
191 (if (looking-at " [-M]")
193 (let* ((buf (Buffer-menu-buffer t
))
194 (mod (buffer-modified-p buf
))
195 (readonly (save-excursion (set-buffer buf
) buffer-read-only
))
196 (buffer-read-only nil
))
198 (insert (if readonly
(if mod
" *%" " %") (if mod
" * " " ")))))
199 (forward-line (if backup -
1 1)))
201 (defun Buffer-menu-backup-unmark ()
202 "Move up and cancel all requested operations on buffer on line above."
208 (defun Buffer-menu-delete ()
209 "Mark buffer on this line to be deleted by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command."
212 (if (looking-at " [-M]") ;header lines
214 (let ((buffer-read-only nil
))
219 (defun Buffer-menu-delete-backwards ()
220 "Mark buffer on this line to be deleted by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command
221 and then move up one line"
225 (if (looking-at " [-M]") (forward-line 1)))
227 (defun Buffer-menu-save ()
228 "Mark buffer on this line to be saved by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command."
232 (if (looking-at " [-M]") ;header lines
234 (let ((buffer-read-only nil
))
239 (defun Buffer-menu-not-modified ()
240 "Mark buffer on this line as unmodified (no changes to save)."
243 (set-buffer (Buffer-menu-buffer t
))
244 (set-buffer-modified-p nil
))
248 (if (looking-at "\\*")
249 (let ((buffer-read-only nil
))
253 (defun Buffer-menu-execute ()
254 "Save and/or delete buffers marked with \\<Buffer-menu-mode-map>\\[Buffer-menu-save] or \\<Buffer-menu-mode-map>\\[Buffer-menu-delete] commands."
257 (goto-char (point-min))
259 (while (re-search-forward "^.S" nil t
)
262 (set-buffer (Buffer-menu-buffer t
))
264 (setq modp
(buffer-modified-p)))
265 (let ((buffer-read-only nil
))
267 (insert (if modp ?
* ?
))))))
269 (goto-char (point-min))
271 (let ((buff-menu-buffer (current-buffer))
272 (buffer-read-only nil
))
273 (while (search-forward "\nD" nil t
)
275 (let ((buf (Buffer-menu-buffer nil
)))
277 (eq buf buff-menu-buffer
)
278 (save-excursion (kill-buffer buf
))))
279 (if (Buffer-menu-buffer nil
)
280 (progn (delete-char 1)
282 (delete-region (point) (progn (forward-line 1) (point)))
283 (forward-char -
1))))))
285 (defun Buffer-menu-select ()
286 "Select this line's buffer; also display buffers marked with `>'.
287 You can mark buffers with the \\<Buffer-menu-mode-map>\\[Buffer-menu-mark] command."
289 (let ((buff (Buffer-menu-buffer t
))
290 (menu (current-buffer))
293 (goto-char (point-min))
294 (while (search-forward "\n>" nil t
)
295 (setq tem
(Buffer-menu-buffer t
))
296 (let ((buffer-read-only nil
))
299 (or (eq tem buff
) (memq tem others
) (setq others
(cons tem others
))))
300 (setq others
(nreverse others
)
301 tem
(/ (1- (frame-height)) (1+ (length others
))))
302 (delete-other-windows)
303 (switch-to-buffer buff
)
306 (if (equal (length others
) 0)
308 ;;; ;; Restore previous window configuration before displaying
309 ;;; ;; selected buffers.
310 ;;; (if Buffer-menu-window-config
312 ;;; (set-window-configuration Buffer-menu-window-config)
313 ;;; (setq Buffer-menu-window-config nil)))
314 (switch-to-buffer buff
))
316 (split-window nil tem
)
318 (switch-to-buffer (car others
))
319 (setq others
(cdr others
)))
320 (other-window 1) ;back to the beginning!
324 (defun Buffer-menu-visit-tags-table ()
325 "Visit the tags table in the buffer on this line. See `visit-tags-table'."
327 (let ((file (buffer-file-name (Buffer-menu-buffer t
))))
329 (visit-tags-table file
)
330 (error "Specified buffer has no file"))))
332 (defun Buffer-menu-1-window ()
333 "Select this line's buffer, alone, in full frame."
335 (switch-to-buffer (Buffer-menu-buffer t
))
336 (bury-buffer (other-buffer))
337 (delete-other-windows))
339 (defun Buffer-menu-mouse-select (event)
340 "Select the buffer whose line you click on."
344 (set-buffer (window-buffer (posn-window (event-end event
))))
346 (goto-char (posn-point (event-end event
)))
347 (setq buffer
(Buffer-menu-buffer t
))))
348 (select-window (posn-window (event-end event
)))
349 (switch-to-buffer buffer
)))
351 (defun Buffer-menu-this-window ()
352 "Select this line's buffer in this window."
354 (switch-to-buffer (Buffer-menu-buffer t
)))
356 (defun Buffer-menu-other-window ()
357 "Select this line's buffer in other window, leaving buffer menu visible."
359 (switch-to-buffer-other-window (Buffer-menu-buffer t
)))
361 (defun Buffer-menu-switch-other-window ()
362 "Make the other window select this line's buffer.
363 The current window remains selected."
365 (display-buffer (Buffer-menu-buffer t
)))
367 (defun Buffer-menu-2-window ()
368 "Select this line's buffer, with previous buffer in second window."
370 (let ((buff (Buffer-menu-buffer t
))
371 (menu (current-buffer))
373 (delete-other-windows)
374 (switch-to-buffer (other-buffer))
378 (defun Buffer-menu-toggle-read-only ()
379 "Toggle read-only status of buffer on this line, perhaps via version control."
383 (set-buffer (Buffer-menu-buffer t
))
384 (vc-toggle-read-only)
385 (setq char
(if buffer-read-only ?% ?
)))
389 (if (/= (following-char) char
)
390 (let (buffer-read-only)
394 ;;; buff-menu.el ends here