Mercurial > emacs
annotate lisp/ebuff-menu.el @ 2199:d005529475af
(FRAMEP): Macro deleted.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 15 Mar 1993 06:07:40 +0000 |
parents | 3514a9bf50c5 |
children | 10e417efb12a |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
1 ;;; ebuff-menu.el --- electric-buffer-list mode |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Author: Richard Mlynarik <mly@ai.mit.edu> |
475 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
475 | 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 | |
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. | |
22 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
23 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 ;; who says one can't have typeout windows in gnu emacs? |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 ;; like ^r select buffer from its emacs lunar or tmacs libraries. |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 ;;; Code: |
475 | 29 |
30 (require 'electric) | |
31 | |
32 ;; this depends on the format of list-buffers (from src/buffer.c) and | |
33 ;; on stuff in lisp/buff-menu.el | |
34 | |
35 (defvar electric-buffer-menu-mode-map nil) | |
36 | |
37 ;;;###autoload | |
38 (defun electric-buffer-list (arg) | |
39 "Pops up a buffer describing the set of Emacs buffers. | |
40 Vaguely like ITS lunar select buffer; combining typeoutoid buffer | |
41 listing with menuoid buffer selection. | |
42 | |
43 If the very next character typed is a space then the buffer list | |
44 window disappears. Otherwise, one may move around in the buffer list | |
45 window, marking buffers to be selected, saved or deleted. | |
46 | |
47 To exit and select a new buffer, type a space when the cursor is on | |
48 the appropriate line of the buffer-list window. Other commands are | |
49 much like those of buffer-menu-mode. | |
50 | |
51 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil. | |
52 | |
53 \\{electric-buffer-menu-mode-map}" | |
54 (interactive "P") | |
55 (let (select buffer) | |
56 (save-window-excursion | |
57 (save-window-excursion (list-buffers arg)) | |
58 (setq buffer (window-buffer (Electric-pop-up-window "*Buffer List*"))) | |
59 (unwind-protect | |
60 (progn | |
61 (set-buffer buffer) | |
62 (Electric-buffer-menu-mode) | |
63 (setq select | |
64 (catch 'electric-buffer-menu-select | |
65 (message "<<< Press Space to bury the buffer list >>>") | |
2026
3514a9bf50c5
(electric-buffer-list): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
66 (if (eq (setq unread-command-events (list (read-event))) |
3514a9bf50c5
(electric-buffer-list): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
67 ?\ ) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1607
diff
changeset
|
68 (progn (setq unread-command-events nil) |
475 | 69 (throw 'electric-buffer-menu-select nil))) |
70 (let ((first (progn (goto-char (point-min)) | |
71 (forward-line 2) | |
72 (point))) | |
73 (last (progn (goto-char (point-max)) | |
74 (forward-line -1) | |
75 (point))) | |
76 (goal-column 0)) | |
77 (goto-char first) | |
78 (Electric-command-loop 'electric-buffer-menu-select | |
79 nil | |
80 t | |
81 'electric-buffer-menu-looper | |
82 (cons first last)))))) | |
83 (set-buffer buffer) | |
84 (Buffer-menu-mode) | |
85 (bury-buffer buffer) | |
86 (message ""))) | |
87 (if select | |
88 (progn (set-buffer buffer) | |
89 (let ((opoint (point-marker))) | |
90 (Buffer-menu-execute) | |
91 (goto-char (point-min)) | |
92 (if (prog1 (search-forward "\n>" nil t) | |
93 (goto-char opoint) (set-marker opoint nil)) | |
94 (Buffer-menu-select) | |
95 (switch-to-buffer (Buffer-menu-buffer t)))))))) | |
96 | |
97 (defun electric-buffer-menu-looper (state condition) | |
98 (cond ((and condition | |
99 (not (memq (car condition) '(buffer-read-only | |
100 end-of-buffer | |
101 beginning-of-buffer)))) | |
102 (signal (car condition) (cdr condition))) | |
103 ((< (point) (car state)) | |
104 (goto-char (point-min)) | |
105 (forward-line 2)) | |
106 ((> (point) (cdr state)) | |
107 (goto-char (point-max)) | |
108 (forward-line -1) | |
109 (if (pos-visible-in-window-p (point-max)) | |
110 (recenter -1))))) | |
111 | |
112 (put 'Electric-buffer-menu-mode 'mode-class 'special) | |
113 (defun Electric-buffer-menu-mode () | |
114 "Major mode for editing a list of buffers. | |
115 Each line describes one of the buffers in Emacs. | |
116 Letters do not insert themselves; instead, they are commands. | |
117 \\<electric-buffer-menu-mode-map> | |
118 \\[keyboard-quit] or \\[Electric-buffer-menu-quit] -- exit buffer menu, returning to previous window and buffer | |
119 configuration. If the very first character typed is a space, it | |
120 also has this effect. | |
121 \\[Electric-buffer-menu-select] -- select buffer of line point is on. | |
122 Also show buffers marked with m in other windows, | |
123 deletes buffers marked with \"D\", and saves those marked with \"S\". | |
124 \\[Buffer-menu-mark] -- mark buffer to be displayed. | |
125 \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. | |
126 \\[Buffer-menu-save] -- mark that buffer to be saved. | |
127 \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. | |
128 \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. | |
129 \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. | |
130 \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. | |
131 | |
132 \\{electric-buffer-menu-mode-map} | |
133 | |
134 Entry to this mode via command electric-buffer-list calls the value of | |
135 electric-buffer-menu-mode-hook if it is non-nil." | |
136 (kill-all-local-variables) | |
137 (use-local-map electric-buffer-menu-mode-map) | |
138 (setq mode-name "Electric Buffer Menu") | |
139 (setq mode-line-buffer-identification "Electric Buffer List") | |
140 (make-local-variable 'Helper-return-blurb) | |
141 (setq Helper-return-blurb "return to buffer editing") | |
142 (setq truncate-lines t) | |
143 (setq buffer-read-only t) | |
144 (setq major-mode 'Electric-buffer-menu-mode) | |
145 (goto-char (point-min)) | |
146 (if (search-forward "\n." nil t) (forward-char -1)) | |
147 (run-hooks 'electric-buffer-menu-mode-hook)) | |
148 | |
149 ;; generally the same as Buffer-menu-mode-map | |
150 ;; (except we don't indirect to global-map) | |
151 (put 'Electric-buffer-menu-undefined 'suppress-keymap t) | |
152 (if electric-buffer-menu-mode-map | |
153 nil | |
154 (let ((map (make-keymap))) | |
155 (fillarray map 'Electric-buffer-menu-undefined) | |
156 (define-key map "\e" (make-keymap)) | |
157 (fillarray (lookup-key map "\e") 'Electric-buffer-menu-undefined) | |
158 (define-key map "\C-z" 'suspend-emacs) | |
159 (define-key map "v" 'Electric-buffer-menu-mode-view-buffer) | |
918
94b50bbd43c3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
917
diff
changeset
|
160 (define-key map (char-to-string help-char) 'Helper-help) |
475 | 161 (define-key map "?" 'Helper-describe-bindings) |
162 (define-key map "\C-c" nil) | |
163 (define-key map "\C-c\C-c" 'Electric-buffer-menu-quit) | |
164 (define-key map "\C-]" 'Electric-buffer-menu-quit) | |
165 (define-key map "q" 'Electric-buffer-menu-quit) | |
166 (define-key map " " 'Electric-buffer-menu-select) | |
167 (define-key map "\C-l" 'recenter) | |
168 (define-key map "s" 'Buffer-menu-save) | |
169 (define-key map "d" 'Buffer-menu-delete) | |
170 (define-key map "k" 'Buffer-menu-delete) | |
171 (define-key map "\C-d" 'Buffer-menu-delete-backwards) | |
172 ;(define-key map "\C-k" 'Buffer-menu-delete) | |
173 (define-key map "\177" 'Buffer-menu-backup-unmark) | |
174 (define-key map "~" 'Buffer-menu-not-modified) | |
175 (define-key map "u" 'Buffer-menu-unmark) | |
176 (let ((i ?0)) | |
177 (while (<= i ?9) | |
178 (define-key map (char-to-string i) 'digit-argument) | |
179 (define-key map (concat "\e" (char-to-string i)) 'digit-argument) | |
180 (setq i (1+ i)))) | |
181 (define-key map "-" 'negative-argument) | |
182 (define-key map "\e-" 'negative-argument) | |
183 (define-key map "m" 'Buffer-menu-mark) | |
184 (define-key map "\C-u" 'universal-argument) | |
185 (define-key map "\C-p" 'previous-line) | |
186 (define-key map "\C-n" 'next-line) | |
187 (define-key map "p" 'previous-line) | |
188 (define-key map "n" 'next-line) | |
189 (define-key map "\C-v" 'scroll-up) | |
190 (define-key map "\ev" 'scroll-down) | |
191 (define-key map ">" 'scroll-right) | |
192 (define-key map "<" 'scroll-left) | |
193 (define-key map "\e\C-v" 'scroll-other-window) | |
194 (define-key map "\e>" 'end-of-buffer) | |
195 (define-key map "\e<" 'beginning-of-buffer) | |
196 (setq electric-buffer-menu-mode-map map))) | |
197 | |
198 (defun Electric-buffer-menu-exit () | |
199 (interactive) | |
2026
3514a9bf50c5
(electric-buffer-list): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
200 (setq unread-command-events (listify-key-sequence (this-command-keys))) |
475 | 201 ;; for robustness |
202 (condition-case () | |
203 (throw 'electric-buffer-menu-select nil) | |
204 (error (Buffer-menu-mode) | |
205 (other-buffer)))) | |
206 | |
207 (defun Electric-buffer-menu-select () | |
208 "Leave Electric Buffer Menu, selecting buffers and executing changes. | |
209 Saves buffers marked \"S\". Deletes buffers marked \"K\". | |
210 Selects buffer at point and displays buffers marked \">\" in other windows." | |
211 (interactive) | |
212 (throw 'electric-buffer-menu-select (point))) | |
213 | |
214 (defun Electric-buffer-menu-quit () | |
215 "Leave Electric Buffer Menu, restoring previous window configuration. | |
216 Does not execute select, save, or delete commands." | |
217 (interactive) | |
218 (throw 'electric-buffer-menu-select nil)) | |
219 | |
220 (defun Electric-buffer-menu-undefined () | |
221 (interactive) | |
222 (ding) | |
223 (message (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit) | |
224 (eq (key-binding " ") 'Electric-buffer-menu-select) | |
919 | 225 (eq (key-binding (char-to-string help-char)) 'Helper-help) |
475 | 226 (eq (key-binding "?") 'Helper-describe-bindings)) |
916
938f166a0874
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
915
diff
changeset
|
227 (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands") |
475 | 228 (substitute-command-keys "\ |
229 Type \\[Electric-buffer-menu-quit] to exit, \ | |
230 \\[Electric-buffer-menu-select] to select, \ | |
231 \\[Helper-help] for help, \\[Helper-describe-bindings] for commands."))) | |
232 (sit-for 4)) | |
233 | |
234 (defun Electric-buffer-menu-mode-view-buffer () | |
235 "View buffer on current line in Electric Buffer Menu. | |
236 Returns to Electric Buffer Menu when done." | |
237 (interactive) | |
238 (let ((bufnam (Buffer-menu-buffer nil))) | |
239 (if bufnam | |
240 (view-buffer bufnam) | |
241 (ding) | |
242 (message "Buffer %s does not exist!" bufnam) | |
243 (sit-for 4)))) | |
244 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
245 ;;; ebuff-menu.el ends here |