Mercurial > emacs
annotate lisp/buff-menu.el @ 16646:6aeaedabbb62
(Fend_of_line, Fbeginning_of_line): Declared.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 09 Dec 1996 00:51:15 +0000 |
| parents | 249f797c3750 |
| children | 4f78346eb734 |
| rev | line source |
|---|---|
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
194
diff
changeset
|
1 ;;; buff-menu.el --- buffer menu main function and support functions. |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
194
diff
changeset
|
2 |
| 11234 | 3 ;; Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc. |
| 845 | 4 |
|
801
e9e34745ae3b
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
777
diff
changeset
|
5 ;; Maintainer: FSF |
| 194 | 6 |
| 7 ;; This file is part of GNU Emacs. | |
| 8 | |
| 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 | |
| 735 | 11 ;; the Free Software Foundation; either version 2, or (at your option) |
| 194 | 12 ;; any later version. |
| 13 | |
| 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. | |
| 18 | |
| 19 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 22 ;; Boston, MA 02111-1307, USA. | |
| 194 | 23 |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
24 ;;; Commentary: |
|
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
25 |
|
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
26 ;; Edit, delete, or change attributes of all currently active Emacs |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2736
diff
changeset
|
27 ;; buffers from a list summarizing their state. A good way to browse |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
28 ;; any special or scratch buffers you have loaded, since you can't find |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
29 ;; them by filename. The single entry point is `Buffer-menu-mode', |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
30 ;; normally bound to C-x C-b. |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
31 |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
32 ;;; Change Log: |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
33 |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
34 ;; Merged by esr with recent mods to Emacs 19 buff-menu, 23 Mar 1993 |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
35 ;; |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
36 ;; Modified by Bob Weiner, Motorola, Inc., 4/14/89 |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
37 ;; |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
38 ;; Added optional backup argument to 'Buffer-menu-unmark' to make it undelete |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
39 ;; current entry and then move to previous one. |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
40 ;; |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
41 ;; Based on FSF code dating back to 1985. |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
42 |
|
801
e9e34745ae3b
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
777
diff
changeset
|
43 ;;; Code: |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
44 |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
45 ;;;Trying to preserve the old window configuration works well in |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
46 ;;;simple scenarios, when you enter the buffer menu, use it, and exit it. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
47 ;;;But it does strange things when you switch back to the buffer list buffer |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
48 ;;;with C-x b, later on, when the window configuration is different. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
49 ;;;The choice seems to be, either restore the window configuration |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
50 ;;;in all cases, or in no cases. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
51 ;;;I decided it was better not to restore the window config at all. -- rms. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
52 |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
53 ;;;But since then, I changed buffer-menu to use the selected window, |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
54 ;;;so q now once again goes back to the previous window configuration. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
55 |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
56 ;;;(defvar Buffer-menu-window-config nil |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
57 ;;; "Window configuration saved from entry to `buffer-menu'.") |
| 194 | 58 |
| 59 ; Put buffer *Buffer List* into proper mode right away | |
| 60 ; so that from now on even list-buffers is enough to get a buffer menu. | |
| 61 | |
|
6640
532754d63384
(Buffer-menu-mode): Highlight only the buffer name, not the whole line.
Karl Heuer <kwzh@gnu.org>
parents:
6638
diff
changeset
|
62 (defvar Buffer-menu-buffer-column nil) |
|
532754d63384
(Buffer-menu-mode): Highlight only the buffer name, not the whole line.
Karl Heuer <kwzh@gnu.org>
parents:
6638
diff
changeset
|
63 |
| 194 | 64 (defvar Buffer-menu-mode-map nil "") |
| 65 | |
| 66 (if Buffer-menu-mode-map | |
| 67 () | |
| 68 (setq Buffer-menu-mode-map (make-keymap)) | |
| 69 (suppress-keymap Buffer-menu-mode-map t) | |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
70 (define-key Buffer-menu-mode-map "q" 'Buffer-menu-quit) |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
71 (define-key Buffer-menu-mode-map "v" 'Buffer-menu-select) |
| 194 | 72 (define-key Buffer-menu-mode-map "2" 'Buffer-menu-2-window) |
| 73 (define-key Buffer-menu-mode-map "1" 'Buffer-menu-1-window) | |
| 74 (define-key Buffer-menu-mode-map "f" 'Buffer-menu-this-window) | |
|
10269
988517b0b62a
(Buffer-menu-mode-map): Bind C-m to Buffer-menu-this-window.
Richard M. Stallman <rms@gnu.org>
parents:
10194
diff
changeset
|
75 (define-key Buffer-menu-mode-map "\C-m" 'Buffer-menu-this-window) |
| 194 | 76 (define-key Buffer-menu-mode-map "o" 'Buffer-menu-other-window) |
| 735 | 77 (define-key Buffer-menu-mode-map "\C-o" 'Buffer-menu-switch-other-window) |
| 194 | 78 (define-key Buffer-menu-mode-map "s" 'Buffer-menu-save) |
| 79 (define-key Buffer-menu-mode-map "d" 'Buffer-menu-delete) | |
| 80 (define-key Buffer-menu-mode-map "k" 'Buffer-menu-delete) | |
| 81 (define-key Buffer-menu-mode-map "\C-d" 'Buffer-menu-delete-backwards) | |
| 82 (define-key Buffer-menu-mode-map "\C-k" 'Buffer-menu-delete) | |
| 83 (define-key Buffer-menu-mode-map "x" 'Buffer-menu-execute) | |
| 84 (define-key Buffer-menu-mode-map " " 'next-line) | |
| 85 (define-key Buffer-menu-mode-map "n" 'next-line) | |
| 86 (define-key Buffer-menu-mode-map "p" 'previous-line) | |
| 87 (define-key Buffer-menu-mode-map "\177" 'Buffer-menu-backup-unmark) | |
| 88 (define-key Buffer-menu-mode-map "~" 'Buffer-menu-not-modified) | |
| 89 (define-key Buffer-menu-mode-map "?" 'describe-mode) | |
| 90 (define-key Buffer-menu-mode-map "u" 'Buffer-menu-unmark) | |
| 91 (define-key Buffer-menu-mode-map "m" 'Buffer-menu-mark) | |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
92 (define-key Buffer-menu-mode-map "t" 'Buffer-menu-visit-tags-table) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
93 (define-key Buffer-menu-mode-map "%" 'Buffer-menu-toggle-read-only) |
|
16401
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
94 (define-key Buffer-menu-mode-map "g" 'Buffer-menu-revert) |
|
6609
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
95 (define-key Buffer-menu-mode-map [mouse-2] 'Buffer-menu-mouse-select) |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
96 ) |
| 194 | 97 |
| 98 ;; Buffer Menu mode is suitable only for specially formatted data. | |
| 99 (put 'Buffer-menu-mode 'mode-class 'special) | |
| 100 | |
| 101 (defun Buffer-menu-mode () | |
| 102 "Major mode for editing a list of buffers. | |
| 103 Each line describes one of the buffers in Emacs. | |
| 104 Letters do not insert themselves; instead, they are commands. | |
| 105 \\<Buffer-menu-mode-map> | |
|
6609
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
106 \\[Buffer-menu-mouse-select] -- select buffer you click on, in place of the buffer menu. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
107 \\[Buffer-menu-this-window] -- select current line's buffer in place of the buffer menu. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
108 \\[Buffer-menu-other-window] -- select that buffer in another window, |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
109 so the buffer menu buffer remains visible in its window. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
110 \\[Buffer-menu-switch-other-window] -- make another window display that buffer. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
111 \\[Buffer-menu-mark] -- mark current line's buffer to be displayed. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
112 \\[Buffer-menu-select] -- select current line's buffer. |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
113 Also show buffers marked with m, in other windows. |
| 777 | 114 \\[Buffer-menu-1-window] -- select that buffer in full-frame window. |
| 194 | 115 \\[Buffer-menu-2-window] -- select that buffer in one window, |
| 116 together with buffer selected before this one in another window. | |
| 117 \\[Buffer-menu-visit-tags-table] -- visit-tags-table this buffer. | |
| 118 \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. | |
| 119 \\[Buffer-menu-save] -- mark that buffer to be saved, and move down. | |
| 120 \\[Buffer-menu-delete] -- mark that buffer to be deleted, and move down. | |
| 121 \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted, and move up. | |
| 122 \\[Buffer-menu-execute] -- delete or save marked buffers. | |
| 123 \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. | |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
124 With prefix argument, also move up one line. |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
125 \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. |
|
16401
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
126 \\[Buffer-menu-toggle-read-only] -- toggle read-only status of buffer on this line. |
|
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
127 \\[Buffer-menu-revert] -- update the list of buffers." |
| 194 | 128 (kill-all-local-variables) |
| 129 (use-local-map Buffer-menu-mode-map) | |
|
6638
61e40a447c92
(Buffer-menu-mode): Add mouse-face properties.
Karl Heuer <kwzh@gnu.org>
parents:
6609
diff
changeset
|
130 (setq major-mode 'Buffer-menu-mode) |
|
61e40a447c92
(Buffer-menu-mode): Add mouse-face properties.
Karl Heuer <kwzh@gnu.org>
parents:
6609
diff
changeset
|
131 (setq mode-name "Buffer Menu") |
|
8161
6b104526819d
(Buffer-menu-revert-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7659
diff
changeset
|
132 (make-local-variable 'revert-buffer-function) |
|
6b104526819d
(Buffer-menu-revert-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7659
diff
changeset
|
133 (setq revert-buffer-function 'Buffer-menu-revert-function) |
| 194 | 134 (setq truncate-lines t) |
| 135 (setq buffer-read-only t) | |
| 136 (run-hooks 'buffer-menu-mode-hook)) | |
|
8161
6b104526819d
(Buffer-menu-revert-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7659
diff
changeset
|
137 |
|
16401
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
138 (defun Buffer-menu-revert () |
|
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
139 "Update the list of buffers." |
|
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
140 (interactive) |
|
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
141 (revert-buffer)) |
|
249f797c3750
(Buffer-menu-revert): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
142 |
|
8161
6b104526819d
(Buffer-menu-revert-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7659
diff
changeset
|
143 (defun Buffer-menu-revert-function (ignore1 ignore2) |
|
6b104526819d
(Buffer-menu-revert-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7659
diff
changeset
|
144 (list-buffers)) |
| 194 | 145 |
| 146 (defun Buffer-menu-buffer (error-if-non-existent-p) | |
| 147 "Return buffer described by this line of buffer menu." | |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
148 (let* ((where (save-excursion |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
149 (beginning-of-line) |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
150 (+ (point) Buffer-menu-buffer-column))) |
|
11842
e8739cc8cd02
(Buffer-menu-buffer): Give more informative error
Karl Heuer <kwzh@gnu.org>
parents:
11234
diff
changeset
|
151 (name (and (not (eobp)) (get-text-property where 'buffer-name)))) |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
152 (if name |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
153 (or (get-buffer name) |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
154 (if error-if-non-existent-p |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
155 (error "No buffer named `%s'" name) |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
156 nil)) |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
157 (if error-if-non-existent-p |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
158 (error "No buffer on this line") |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
159 nil)))) |
| 194 | 160 |
| 756 | 161 (defun buffer-menu (&optional arg) |
| 194 | 162 "Make a menu of buffers so you can save, delete or select them. |
| 163 With argument, show only buffers that are visiting files. | |
| 164 Type ? after invocation to get help on commands available. | |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
165 Type q immediately to make the buffer menu go away." |
| 194 | 166 (interactive "P") |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
167 ;;; (setq Buffer-menu-window-config (current-window-configuration)) |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
168 (switch-to-buffer (list-buffers-noselect arg)) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
169 (message |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
170 "Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help.")) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
171 |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
172 (defun buffer-menu-other-window (&optional arg) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
173 "Display a list of buffers in another window. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
174 With the buffer list buffer, you can save, delete or select the buffers. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
175 With argument, show only buffers that are visiting files. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
176 Type ? after invocation to get help on commands available. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
177 Type q immediately to make the buffer menu go away." |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
178 (interactive "P") |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
179 ;;; (setq Buffer-menu-window-config (current-window-configuration)) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
180 (switch-to-buffer-other-window (list-buffers-noselect arg)) |
| 194 | 181 (message |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
182 "Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help.")) |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
183 |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
184 (defun Buffer-menu-quit () |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
185 "Quit the buffer menu." |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
186 (interactive) |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
187 (let ((buffer (current-buffer))) |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
188 ;; Switch away from the buffer menu and bury it. |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
189 (switch-to-buffer (other-buffer)) |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
190 (bury-buffer buffer))) |
| 194 | 191 |
| 192 (defun Buffer-menu-mark () | |
| 193 "Mark buffer on this line for being displayed by \\<Buffer-menu-mode-map>\\[Buffer-menu-select] command." | |
| 194 (interactive) | |
| 195 (beginning-of-line) | |
| 196 (if (looking-at " [-M]") | |
| 197 (ding) | |
| 198 (let ((buffer-read-only nil)) | |
| 199 (delete-char 1) | |
| 200 (insert ?>) | |
| 201 (forward-line 1)))) | |
| 202 | |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
203 (defun Buffer-menu-unmark (&optional backup) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
204 "Cancel all requested operations on buffer on this line and move down. |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
205 Optional ARG means move up." |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
206 (interactive "P") |
| 194 | 207 (beginning-of-line) |
| 208 (if (looking-at " [-M]") | |
| 209 (ding) | |
| 210 (let* ((buf (Buffer-menu-buffer t)) | |
| 211 (mod (buffer-modified-p buf)) | |
| 212 (readonly (save-excursion (set-buffer buf) buffer-read-only)) | |
| 213 (buffer-read-only nil)) | |
| 214 (delete-char 3) | |
| 215 (insert (if readonly (if mod " *%" " %") (if mod " * " " "))))) | |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
216 (forward-line (if backup -1 1))) |
| 194 | 217 |
| 218 (defun Buffer-menu-backup-unmark () | |
| 219 "Move up and cancel all requested operations on buffer on line above." | |
| 220 (interactive) | |
| 221 (forward-line -1) | |
| 222 (Buffer-menu-unmark) | |
| 223 (forward-line -1)) | |
| 224 | |
|
9063
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
225 (defun Buffer-menu-delete (&optional arg) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
226 "Mark buffer on this line to be deleted by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command. |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
227 Prefix arg is how many buffers to delete. |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
228 Negative arg means delete backwards." |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
229 (interactive "p") |
| 194 | 230 (beginning-of-line) |
| 231 (if (looking-at " [-M]") ;header lines | |
| 232 (ding) | |
| 233 (let ((buffer-read-only nil)) | |
|
9063
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
234 (if (or (null arg) (= arg 0)) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
235 (setq arg 1)) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
236 (while (> arg 0) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
237 (delete-char 1) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
238 (insert ?D) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
239 (forward-line 1) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
240 (setq arg (1- arg))) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
241 (while (< arg 0) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
242 (delete-char 1) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
243 (insert ?D) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
244 (forward-line -1) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
245 (setq arg (1+ arg)))))) |
| 194 | 246 |
|
9063
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
247 (defun Buffer-menu-delete-backwards (&optional arg) |
| 194 | 248 "Mark buffer on this line to be deleted by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command |
|
9063
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
249 and then move up one line. Prefix arg means move that many lines." |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
250 (interactive "p") |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
251 (Buffer-menu-delete (- (or arg 1))) |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
252 (while (looking-at " [-M]") |
|
d6913bc11bb2
(Buffer-menu-delete): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
8365
diff
changeset
|
253 (forward-line 1))) |
| 194 | 254 |
| 255 (defun Buffer-menu-save () | |
| 256 "Mark buffer on this line to be saved by \\<Buffer-menu-mode-map>\\[Buffer-menu-execute] command." | |
| 257 (interactive) | |
| 258 (beginning-of-line) | |
| 259 (if (looking-at " [-M]") ;header lines | |
| 260 (ding) | |
| 261 (let ((buffer-read-only nil)) | |
|
10765
638d2df80894
(Buffer-menu-save): Fix the test for header line.
Richard M. Stallman <rms@gnu.org>
parents:
10593
diff
changeset
|
262 (forward-char 1) |
| 194 | 263 (delete-char 1) |
| 264 (insert ?S) | |
| 265 (forward-line 1)))) | |
| 266 | |
|
8196
89db3662bcec
(Buffer-menu-not-modified): Make `Buffer-menu-not-modified' handle an
Richard M. Stallman <rms@gnu.org>
parents:
8161
diff
changeset
|
267 (defun Buffer-menu-not-modified (&optional arg) |
| 194 | 268 "Mark buffer on this line as unmodified (no changes to save)." |
|
8196
89db3662bcec
(Buffer-menu-not-modified): Make `Buffer-menu-not-modified' handle an
Richard M. Stallman <rms@gnu.org>
parents:
8161
diff
changeset
|
269 (interactive "P") |
| 194 | 270 (save-excursion |
| 271 (set-buffer (Buffer-menu-buffer t)) | |
|
8196
89db3662bcec
(Buffer-menu-not-modified): Make `Buffer-menu-not-modified' handle an
Richard M. Stallman <rms@gnu.org>
parents:
8161
diff
changeset
|
272 (set-buffer-modified-p arg)) |
| 194 | 273 (save-excursion |
| 274 (beginning-of-line) | |
| 275 (forward-char 1) | |
|
8196
89db3662bcec
(Buffer-menu-not-modified): Make `Buffer-menu-not-modified' handle an
Richard M. Stallman <rms@gnu.org>
parents:
8161
diff
changeset
|
276 (if (= (char-after (point)) (if arg ? ?*)) |
| 194 | 277 (let ((buffer-read-only nil)) |
| 278 (delete-char 1) | |
|
8196
89db3662bcec
(Buffer-menu-not-modified): Make `Buffer-menu-not-modified' handle an
Richard M. Stallman <rms@gnu.org>
parents:
8161
diff
changeset
|
279 (insert (if arg ?* ? )))))) |
| 194 | 280 |
| 281 (defun Buffer-menu-execute () | |
| 282 "Save and/or delete buffers marked with \\<Buffer-menu-mode-map>\\[Buffer-menu-save] or \\<Buffer-menu-mode-map>\\[Buffer-menu-delete] commands." | |
| 283 (interactive) | |
| 284 (save-excursion | |
| 285 (goto-char (point-min)) | |
| 286 (forward-line 1) | |
| 287 (while (re-search-forward "^.S" nil t) | |
| 288 (let ((modp nil)) | |
| 289 (save-excursion | |
| 290 (set-buffer (Buffer-menu-buffer t)) | |
| 291 (save-buffer) | |
| 292 (setq modp (buffer-modified-p))) | |
| 293 (let ((buffer-read-only nil)) | |
| 294 (delete-char -1) | |
| 295 (insert (if modp ?* ? )))))) | |
| 296 (save-excursion | |
| 297 (goto-char (point-min)) | |
| 298 (forward-line 1) | |
| 299 (let ((buff-menu-buffer (current-buffer)) | |
| 300 (buffer-read-only nil)) | |
| 301 (while (search-forward "\nD" nil t) | |
| 302 (forward-char -1) | |
| 303 (let ((buf (Buffer-menu-buffer nil))) | |
| 304 (or (eq buf nil) | |
| 305 (eq buf buff-menu-buffer) | |
| 306 (save-excursion (kill-buffer buf)))) | |
| 307 (if (Buffer-menu-buffer nil) | |
| 308 (progn (delete-char 1) | |
| 309 (insert ? )) | |
| 310 (delete-region (point) (progn (forward-line 1) (point))) | |
| 311 (forward-char -1)))))) | |
| 312 | |
| 313 (defun Buffer-menu-select () | |
| 314 "Select this line's buffer; also display buffers marked with `>'. | |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
315 You can mark buffers with the \\<Buffer-menu-mode-map>\\[Buffer-menu-mark] command. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
316 This command deletes and replaces all the previously existing windows |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
317 in the selected frame." |
| 194 | 318 (interactive) |
| 319 (let ((buff (Buffer-menu-buffer t)) | |
| 320 (menu (current-buffer)) | |
| 321 (others ()) | |
| 322 tem) | |
| 323 (goto-char (point-min)) | |
| 324 (while (search-forward "\n>" nil t) | |
| 325 (setq tem (Buffer-menu-buffer t)) | |
| 326 (let ((buffer-read-only nil)) | |
| 327 (delete-char -1) | |
| 328 (insert ?\ )) | |
| 329 (or (eq tem buff) (memq tem others) (setq others (cons tem others)))) | |
| 330 (setq others (nreverse others) | |
| 777 | 331 tem (/ (1- (frame-height)) (1+ (length others)))) |
| 194 | 332 (delete-other-windows) |
| 333 (switch-to-buffer buff) | |
| 334 (or (eq menu buff) | |
| 335 (bury-buffer menu)) | |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
336 (if (equal (length others) 0) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
337 (progn |
|
2736
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
338 ;;; ;; Restore previous window configuration before displaying |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
339 ;;; ;; selected buffers. |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
340 ;;; (if Buffer-menu-window-config |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
341 ;;; (progn |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
342 ;;; (set-window-configuration Buffer-menu-window-config) |
|
d6ff54640930
(buffer-menu): Don't save a window config.
Richard M. Stallman <rms@gnu.org>
parents:
2422
diff
changeset
|
343 ;;; (setq Buffer-menu-window-config nil))) |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
344 (switch-to-buffer buff)) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
345 (while others |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
346 (split-window nil tem) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
347 (other-window 1) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
348 (switch-to-buffer (car others)) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
349 (setq others (cdr others))) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
350 (other-window 1) ;back to the beginning! |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
351 ))) |
|
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
352 |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
353 |
| 194 | 354 |
| 355 (defun Buffer-menu-visit-tags-table () | |
| 356 "Visit the tags table in the buffer on this line. See `visit-tags-table'." | |
| 357 (interactive) | |
| 358 (let ((file (buffer-file-name (Buffer-menu-buffer t)))) | |
| 359 (if file | |
| 360 (visit-tags-table file) | |
| 361 (error "Specified buffer has no file")))) | |
| 362 | |
| 363 (defun Buffer-menu-1-window () | |
| 777 | 364 "Select this line's buffer, alone, in full frame." |
| 194 | 365 (interactive) |
| 366 (switch-to-buffer (Buffer-menu-buffer t)) | |
| 367 (bury-buffer (other-buffer)) | |
| 368 (delete-other-windows)) | |
| 369 | |
|
6609
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
370 (defun Buffer-menu-mouse-select (event) |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
371 "Select the buffer whose line you click on." |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
372 (interactive "e") |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
373 (let (buffer) |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
374 (save-excursion |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
375 (set-buffer (window-buffer (posn-window (event-end event)))) |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
376 (save-excursion |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
377 (goto-char (posn-point (event-end event))) |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
378 (setq buffer (Buffer-menu-buffer t)))) |
|
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
379 (select-window (posn-window (event-end event))) |
|
7659
ed3bbbdd9ef5
(Buffer-menu-mouse-select): Handle dedicated window.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
380 (if (and (window-dedicated-p (selected-window)) |
|
ed3bbbdd9ef5
(Buffer-menu-mouse-select): Handle dedicated window.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
381 (eq (selected-window) (frame-root-window))) |
|
ed3bbbdd9ef5
(Buffer-menu-mouse-select): Handle dedicated window.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
382 (switch-to-buffer-other-frame buffer) |
|
ed3bbbdd9ef5
(Buffer-menu-mouse-select): Handle dedicated window.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
383 (switch-to-buffer buffer)))) |
|
6609
3b1eb7f1eba1
(Buffer-menu-mouse-select): New command.
Richard M. Stallman <rms@gnu.org>
parents:
6084
diff
changeset
|
384 |
| 194 | 385 (defun Buffer-menu-this-window () |
| 386 "Select this line's buffer in this window." | |
| 387 (interactive) | |
| 388 (switch-to-buffer (Buffer-menu-buffer t))) | |
| 389 | |
| 390 (defun Buffer-menu-other-window () | |
| 391 "Select this line's buffer in other window, leaving buffer menu visible." | |
| 392 (interactive) | |
| 393 (switch-to-buffer-other-window (Buffer-menu-buffer t))) | |
| 394 | |
| 735 | 395 (defun Buffer-menu-switch-other-window () |
| 396 "Make the other window select this line's buffer. | |
| 397 The current window remains selected." | |
| 398 (interactive) | |
| 399 (display-buffer (Buffer-menu-buffer t))) | |
| 400 | |
| 194 | 401 (defun Buffer-menu-2-window () |
| 402 "Select this line's buffer, with previous buffer in second window." | |
| 403 (interactive) | |
| 404 (let ((buff (Buffer-menu-buffer t)) | |
| 405 (menu (current-buffer)) | |
| 406 (pop-up-windows t)) | |
|
2334
ec4ffd67483d
Incorporated changes from Bob Weiner's enhanced buff-menu from the LCD
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
407 (delete-other-windows) |
| 194 | 408 (switch-to-buffer (other-buffer)) |
| 409 (pop-to-buffer buff) | |
| 410 (bury-buffer menu))) | |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
194
diff
changeset
|
411 |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
412 (defun Buffer-menu-toggle-read-only () |
|
6084
d42c85701055
(Buffer-menu-toggle-read-only): Change toggle-read-only to
Karl Heuer <kwzh@gnu.org>
parents:
3591
diff
changeset
|
413 "Toggle read-only status of buffer on this line, perhaps via version control." |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
414 (interactive) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
415 (let (char) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
416 (save-excursion |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
417 (set-buffer (Buffer-menu-buffer t)) |
|
6084
d42c85701055
(Buffer-menu-toggle-read-only): Change toggle-read-only to
Karl Heuer <kwzh@gnu.org>
parents:
3591
diff
changeset
|
418 (vc-toggle-read-only) |
|
2378
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
419 (setq char (if buffer-read-only ?% ? ))) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
420 (save-excursion |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
421 (beginning-of-line) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
422 (forward-char 2) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
423 (if (/= (following-char) char) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
424 (let (buffer-read-only) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
425 (delete-char 1) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
426 (insert char)))))) |
|
c5d0140aa7b6
(Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestion
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2334
diff
changeset
|
427 |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
428 |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
429 |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
430 (define-key ctl-x-map "\C-b" 'list-buffers) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
431 |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
432 (defun list-buffers (&optional files-only) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
433 "Display a list of names of existing buffers. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
434 The list is displayed in a buffer named `*Buffer List*'. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
435 Note that buffers with names starting with spaces are omitted. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
436 Non-null optional arg FILES-ONLY means mention only file buffers. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
437 |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
438 The M column contains a * for buffers that are modified. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
439 The R column contains a % for buffers that are read-only." |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
440 (interactive "P") |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
441 (display-buffer (list-buffers-noselect files-only))) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
442 |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
443 (defun list-buffers-noselect (&optional files-only) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
444 "Create and return a buffer with a list of names of existing buffers. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
445 The buffer is named `*Buffer List*'. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
446 Note that buffers with names starting with spaces are omitted. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
447 Non-null optional arg FILES-ONLY means mention only file buffers. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
448 |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
449 The M column contains a * for buffers that are modified. |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
450 The R column contains a % for buffers that are read-only." |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
451 (let ((old-buffer (current-buffer)) |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
452 (standard-output standard-output) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
453 desired-point) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
454 (save-excursion |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
455 (set-buffer (get-buffer-create "*Buffer List*")) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
456 (setq buffer-read-only nil) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
457 (erase-buffer) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
458 (setq standard-output (current-buffer)) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
459 (princ "\ |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
460 MR Buffer Size Mode File |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
461 -- ------ ---- ---- ---- |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
462 ") |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
463 ;; Record the column where buffer names start. |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
464 (setq Buffer-menu-buffer-column 4) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
465 (let ((bl (buffer-list))) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
466 (while bl |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
467 (let* ((buffer (car bl)) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
468 (name (buffer-name buffer)) |
|
10593
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
469 (file (buffer-file-name buffer)) |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
470 this-buffer-line-start |
|
10593
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
471 this-buffer-read-only |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
472 this-buffer-size |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
473 this-buffer-mode-name |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
474 this-buffer-directory) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
475 (save-excursion |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
476 (set-buffer buffer) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
477 (setq this-buffer-read-only buffer-read-only) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
478 (setq this-buffer-size (buffer-size)) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
479 (setq this-buffer-mode-name |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
480 (if (eq buffer standard-output) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
481 "Buffer Menu" mode-name)) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
482 (or file |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
483 ;; No visited file. Check local value of |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
484 ;; list-buffers-directory. |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
485 (if (and (boundp 'list-buffers-directory) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
486 list-buffers-directory) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
487 (setq this-buffer-directory list-buffers-directory)))) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
488 (cond |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
489 ;; Don't mention internal buffers. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
490 ((string= (substring name 0 1) " ")) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
491 ;; Maybe don't mention buffers without files. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
492 ((and files-only (not file))) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
493 ;; Otherwise output info. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
494 (t |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
495 (setq this-buffer-line-start (point)) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
496 ;; Identify current buffer. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
497 (if (eq buffer old-buffer) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
498 (progn |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
499 (setq desired-point (point)) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
500 (princ ".")) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
501 (princ " ")) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
502 ;; Identify modified buffers. |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
503 (princ (if (buffer-modified-p buffer) "*" " ")) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
504 ;; Handle readonly status. The output buffer is special |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
505 ;; cased to appear readonly; it is actually made so at a later |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
506 ;; date. |
|
10593
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
507 (princ (if (or (eq buffer standard-output) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
508 this-buffer-read-only) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
509 "% " |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
510 " ")) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
511 (princ name) |
|
11215
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
512 ;; Put the buffer name into a text property |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
513 ;; so we don't have to extract it from the text. |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
514 ;; This way we avoid problems with unusual buffer names. |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
515 (setq this-buffer-line-start |
|
896932ac8ced
(list-buffers-noselect): Put buffer name in a text
Richard M. Stallman <rms@gnu.org>
parents:
10765
diff
changeset
|
516 (+ this-buffer-line-start Buffer-menu-buffer-column)) |
|
12243
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
517 (let ((name-end (point))) |
|
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
518 (indent-to 17 2) |
|
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
519 (put-text-property this-buffer-line-start name-end |
|
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
520 'buffer-name name) |
|
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
521 (put-text-property this-buffer-line-start name-end |
|
ef2749cf206f
(list-buffers-noselect): Don't let space after buf name
Richard M. Stallman <rms@gnu.org>
parents:
11842
diff
changeset
|
522 'mouse-face 'highlight)) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
523 (let (size |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
524 mode |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
525 (excess (- (current-column) 17))) |
|
10593
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
526 (setq size (format "%8d" this-buffer-size)) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
527 ;; Ack -- if looking at the *Buffer List* buffer, |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
528 ;; always use "Buffer Menu" mode. Otherwise the |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
529 ;; first time the buffer is created, the mode will be wrong. |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
530 (setq mode this-buffer-mode-name) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
531 (while (and (> excess 0) (= (aref size 0) ?\ )) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
532 (setq size (substring size 1)) |
|
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
533 (setq excess (1- excess))) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
534 (princ size) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
535 (indent-to 27 1) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
536 (princ mode)) |
|
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
537 (indent-to 40 1) |
|
10593
7ae93c2ee7a2
(list-buffers-noselect): Handle read-only properly.
Richard M. Stallman <rms@gnu.org>
parents:
10592
diff
changeset
|
538 (or file (setq file this-buffer-directory)) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
539 (if file |
| 10420 | 540 (princ file)) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
541 (princ "\n")))) |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
542 (setq bl (cdr bl)))) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
543 (Buffer-menu-mode) |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
544 ;; DESIRED-POINT doesn't have to be set; it is not when the |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
545 ;; current buffer is not displayed for some reason. |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
546 (and desired-point |
|
10592
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
547 (goto-char desired-point)) |
|
bbb68f0d31c6
(list-buffers-noselect): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10421
diff
changeset
|
548 (current-buffer)))) |
|
10419
cb6f68d16210
(list-buffers): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10269
diff
changeset
|
549 |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
194
diff
changeset
|
550 ;;; buff-menu.el ends here |
