Mercurial > emacs
annotate lisp/ebuff-menu.el @ 76705:e61171cf2862
(testcover-start, testcover-end, testcover-mark-all, testcover-unmark-all): Add
prompts to interactive specs.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 24 Mar 2007 15:53:07 +0000 |
parents | e3694f1cb928 |
children | 9355f9b7bbff b8d9a391daf3 95d0cdf160ea |
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 |
74439 | 3 ;; Copyright (C) 1985, 1986, 1994, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
6 ;; Author: Richard Mlynarik <mly@ai.mit.edu> |
21045 | 7 ;; Maintainer: FSF |
31559 | 8 ;; Keywords: convenience |
475 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; 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
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
475 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
475 | 26 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2026
diff
changeset
|
29 ;; Who says one can't have typeout windows in GNU Emacs? The entry |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2026
diff
changeset
|
30 ;; point, `electric-buffer-list' works like ^r select buffer from the |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2026
diff
changeset
|
31 ;; ITS Emacs lunar or tmacs libraries. |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
32 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
33 ;;; Code: |
475 | 34 |
35 (require 'electric) | |
36 | |
37 ;; this depends on the format of list-buffers (from src/buffer.c) and | |
38 ;; on stuff in lisp/buff-menu.el | |
39 | |
40 (defvar electric-buffer-menu-mode-map nil) | |
41 | |
58120 | 42 (defvar electric-buffer-menu-mode-hook nil |
43 "Normal hook run by `electric-buffer-list'.") | |
44 | |
475 | 45 ;;;###autoload |
46 (defun electric-buffer-list (arg) | |
58120 | 47 "Pop up a buffer describing the set of Emacs buffers. |
475 | 48 Vaguely like ITS lunar select buffer; combining typeoutoid buffer |
49 listing with menuoid buffer selection. | |
50 | |
51 If the very next character typed is a space then the buffer list | |
52 window disappears. Otherwise, one may move around in the buffer list | |
53 window, marking buffers to be selected, saved or deleted. | |
54 | |
55 To exit and select a new buffer, type a space when the cursor is on | |
56 the appropriate line of the buffer-list window. Other commands are | |
58120 | 57 much like those of `Buffer-menu-mode'. |
475 | 58 |
58120 | 59 Run hooks in `electric-buffer-menu-mode-hook' on entry. |
475 | 60 |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41016
diff
changeset
|
61 \\{electric-buffer-menu-mode-map}" |
475 | 62 (interactive "P") |
63 (let (select buffer) | |
64 (save-window-excursion | |
38928
86b624b00b77
(electric-buffer-list): Use list-buffers-noselect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31559
diff
changeset
|
65 (setq buffer (list-buffers-noselect arg)) |
86b624b00b77
(electric-buffer-list): Use list-buffers-noselect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31559
diff
changeset
|
66 (Electric-pop-up-window buffer) |
475 | 67 (unwind-protect |
68 (progn | |
69 (set-buffer buffer) | |
70 (Electric-buffer-menu-mode) | |
41016
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
71 (electric-buffer-update-highlight) |
475 | 72 (setq select |
73 (catch 'electric-buffer-menu-select | |
8122
2fae14e8ae5d
(electric-buffer-list): Change prompt message.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
74 (message "<<< Press Return 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
|
75 (if (eq (setq unread-command-events (list (read-event))) |
74225
5a4b0f0ec24a
(electric-buffer-list): "?\ " -> "?\s".
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
76 ?\s) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1607
diff
changeset
|
77 (progn (setq unread-command-events nil) |
475 | 78 (throw 'electric-buffer-menu-select nil))) |
12568
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
79 (let ((start-point (point)) |
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
80 (first (progn (goto-char (point-min)) |
50035
af49d6f1e6cc
(electric-buffer-list): Respect `Buffer-menu-use-header-line'.
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
81 (unless Buffer-menu-use-header-line |
af49d6f1e6cc
(electric-buffer-list): Respect `Buffer-menu-use-header-line'.
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
82 (forward-line 2)) |
475 | 83 (point))) |
84 (last (progn (goto-char (point-max)) | |
85 (forward-line -1) | |
86 (point))) | |
87 (goal-column 0)) | |
12568
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
88 ;; Use start-point if it is meaningful. |
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
89 (goto-char (if (or (< start-point first) |
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
90 (> start-point last)) |
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
91 first |
94ee086557db
(electric-buffer-list): Save point before
Karl Heuer <kwzh@gnu.org>
parents:
11275
diff
changeset
|
92 start-point)) |
475 | 93 (Electric-command-loop 'electric-buffer-menu-select |
94 nil | |
95 t | |
96 'electric-buffer-menu-looper | |
97 (cons first last)))))) | |
98 (set-buffer buffer) | |
99 (Buffer-menu-mode) | |
100 (bury-buffer buffer) | |
101 (message ""))) | |
102 (if select | |
103 (progn (set-buffer buffer) | |
104 (let ((opoint (point-marker))) | |
105 (Buffer-menu-execute) | |
106 (goto-char (point-min)) | |
107 (if (prog1 (search-forward "\n>" nil t) | |
108 (goto-char opoint) (set-marker opoint nil)) | |
109 (Buffer-menu-select) | |
110 (switch-to-buffer (Buffer-menu-buffer t)))))))) | |
111 | |
112 (defun electric-buffer-menu-looper (state condition) | |
113 (cond ((and condition | |
114 (not (memq (car condition) '(buffer-read-only | |
115 end-of-buffer | |
116 beginning-of-buffer)))) | |
117 (signal (car condition) (cdr condition))) | |
118 ((< (point) (car state)) | |
119 (goto-char (point-min)) | |
50035
af49d6f1e6cc
(electric-buffer-list): Respect `Buffer-menu-use-header-line'.
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
120 (unless Buffer-menu-use-header-line |
af49d6f1e6cc
(electric-buffer-list): Respect `Buffer-menu-use-header-line'.
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
121 (forward-line 2))) |
475 | 122 ((> (point) (cdr state)) |
123 (goto-char (point-max)) | |
124 (forward-line -1) | |
125 (if (pos-visible-in-window-p (point-max)) | |
41016
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
126 (recenter -1)))) |
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
127 (electric-buffer-update-highlight)) |
475 | 128 |
64798
b61d2aa00716
(Helper-return-blurb): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
129 (defvar Helper-return-blurb) |
b61d2aa00716
(Helper-return-blurb): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
130 |
475 | 131 (put 'Electric-buffer-menu-mode 'mode-class 'special) |
132 (defun Electric-buffer-menu-mode () | |
133 "Major mode for editing a list of buffers. | |
134 Each line describes one of the buffers in Emacs. | |
135 Letters do not insert themselves; instead, they are commands. | |
136 \\<electric-buffer-menu-mode-map> | |
137 \\[keyboard-quit] or \\[Electric-buffer-menu-quit] -- exit buffer menu, returning to previous window and buffer | |
138 configuration. If the very first character typed is a space, it | |
139 also has this effect. | |
140 \\[Electric-buffer-menu-select] -- select buffer of line point is on. | |
141 Also show buffers marked with m in other windows, | |
142 deletes buffers marked with \"D\", and saves those marked with \"S\". | |
143 \\[Buffer-menu-mark] -- mark buffer to be displayed. | |
144 \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. | |
145 \\[Buffer-menu-save] -- mark that buffer to be saved. | |
146 \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. | |
147 \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. | |
148 \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. | |
149 \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. | |
150 | |
151 \\{electric-buffer-menu-mode-map} | |
152 | |
58120 | 153 Entry to this mode via command `electric-buffer-list' calls the value of |
154 `electric-buffer-menu-mode-hook'." | |
59453
1312906d3476
(Electric-buffer-menu-mode):
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
58120
diff
changeset
|
155 (let ((saved header-line-format)) |
1312906d3476
(Electric-buffer-menu-mode):
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
58120
diff
changeset
|
156 (kill-all-local-variables) |
1312906d3476
(Electric-buffer-menu-mode):
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
58120
diff
changeset
|
157 (setq header-line-format saved)) |
475 | 158 (use-local-map electric-buffer-menu-mode-map) |
159 (setq mode-name "Electric Buffer Menu") | |
160 (setq mode-line-buffer-identification "Electric Buffer List") | |
161 (make-local-variable 'Helper-return-blurb) | |
162 (setq Helper-return-blurb "return to buffer editing") | |
163 (setq truncate-lines t) | |
164 (setq buffer-read-only t) | |
165 (setq major-mode 'Electric-buffer-menu-mode) | |
166 (goto-char (point-min)) | |
167 (if (search-forward "\n." nil t) (forward-char -1)) | |
62726
3b4e0fdb401f
(Electric-buffer-menu-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
59453
diff
changeset
|
168 (run-mode-hooks 'electric-buffer-menu-mode-hook)) |
475 | 169 |
170 ;; generally the same as Buffer-menu-mode-map | |
171 ;; (except we don't indirect to global-map) | |
172 (put 'Electric-buffer-menu-undefined 'suppress-keymap t) | |
173 (if electric-buffer-menu-mode-map | |
174 nil | |
23007
62da6fd2d526
(electric-buffer-menu-mode-map): Don't wipe out all Meta keys.
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
175 (let ((map (make-keymap))) |
2397
2b34a2ef4d63
(electric-buffer-menu-mode-map): fillarray isn't a valid operation on maps
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
176 (fillarray (car (cdr map)) 'Electric-buffer-menu-undefined) |
23007
62da6fd2d526
(electric-buffer-menu-mode-map): Don't wipe out all Meta keys.
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
177 (define-key map "\e" nil) |
475 | 178 (define-key map "\C-z" 'suspend-emacs) |
179 (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
|
180 (define-key map (char-to-string help-char) 'Helper-help) |
475 | 181 (define-key map "?" 'Helper-describe-bindings) |
182 (define-key map "\C-c" nil) | |
183 (define-key map "\C-c\C-c" 'Electric-buffer-menu-quit) | |
184 (define-key map "\C-]" 'Electric-buffer-menu-quit) | |
185 (define-key map "q" 'Electric-buffer-menu-quit) | |
186 (define-key map " " 'Electric-buffer-menu-select) | |
8122
2fae14e8ae5d
(electric-buffer-list): Change prompt message.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
187 (define-key map "\C-m" 'Electric-buffer-menu-select) |
475 | 188 (define-key map "\C-l" 'recenter) |
189 (define-key map "s" 'Buffer-menu-save) | |
190 (define-key map "d" 'Buffer-menu-delete) | |
191 (define-key map "k" 'Buffer-menu-delete) | |
192 (define-key map "\C-d" 'Buffer-menu-delete-backwards) | |
193 ;(define-key map "\C-k" 'Buffer-menu-delete) | |
194 (define-key map "\177" 'Buffer-menu-backup-unmark) | |
195 (define-key map "~" 'Buffer-menu-not-modified) | |
196 (define-key map "u" 'Buffer-menu-unmark) | |
197 (let ((i ?0)) | |
198 (while (<= i ?9) | |
199 (define-key map (char-to-string i) 'digit-argument) | |
200 (define-key map (concat "\e" (char-to-string i)) 'digit-argument) | |
201 (setq i (1+ i)))) | |
202 (define-key map "-" 'negative-argument) | |
203 (define-key map "\e-" 'negative-argument) | |
204 (define-key map "m" 'Buffer-menu-mark) | |
205 (define-key map "\C-u" 'universal-argument) | |
206 (define-key map "\C-p" 'previous-line) | |
207 (define-key map "\C-n" 'next-line) | |
208 (define-key map "p" 'previous-line) | |
209 (define-key map "n" 'next-line) | |
210 (define-key map "\C-v" 'scroll-up) | |
211 (define-key map "\ev" 'scroll-down) | |
212 (define-key map ">" 'scroll-right) | |
213 (define-key map "<" 'scroll-left) | |
214 (define-key map "\e\C-v" 'scroll-other-window) | |
215 (define-key map "\e>" 'end-of-buffer) | |
216 (define-key map "\e<" 'beginning-of-buffer) | |
11275
53f0ebe096f5
(electric-buffer-menu-mode-map): Undefine ESC ESC
Richard M. Stallman <rms@gnu.org>
parents:
10115
diff
changeset
|
217 (define-key map "\e\e" nil) |
10115
e55ee438bd10
(electric-buffer-menu-mode-map):
Richard M. Stallman <rms@gnu.org>
parents:
8122
diff
changeset
|
218 (define-key map "\e\e\e" 'Electric-buffer-menu-quit) |
e55ee438bd10
(electric-buffer-menu-mode-map):
Richard M. Stallman <rms@gnu.org>
parents:
8122
diff
changeset
|
219 (define-key map [escape escape escape] 'Electric-buffer-menu-quit) |
7006
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
220 (define-key map [mouse-2] 'Electric-buffer-menu-mouse-select) |
475 | 221 (setq electric-buffer-menu-mode-map map))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41016
diff
changeset
|
222 |
475 | 223 (defun Electric-buffer-menu-exit () |
224 (interactive) | |
2026
3514a9bf50c5
(electric-buffer-list): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
225 (setq unread-command-events (listify-key-sequence (this-command-keys))) |
475 | 226 ;; for robustness |
227 (condition-case () | |
228 (throw 'electric-buffer-menu-select nil) | |
229 (error (Buffer-menu-mode) | |
230 (other-buffer)))) | |
231 | |
232 (defun Electric-buffer-menu-select () | |
233 "Leave Electric Buffer Menu, selecting buffers and executing changes. | |
58120 | 234 Save buffers marked \"S\". Delete buffers marked \"K\". |
235 Select buffer at point and display buffers marked \">\" in other windows." | |
475 | 236 (interactive) |
237 (throw 'electric-buffer-menu-select (point))) | |
238 | |
7006
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
239 (defun Electric-buffer-menu-mouse-select (event) |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
240 (interactive "e") |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
241 (select-window (posn-window (event-end event))) |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
242 (set-buffer (window-buffer (selected-window))) |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
243 (goto-char (posn-point (event-end event))) |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
244 (throw 'electric-buffer-menu-select (point))) |
5f1e5be68fcd
(Electric-buffer-menu-mouse-select): New function.
Karl Heuer <kwzh@gnu.org>
parents:
2397
diff
changeset
|
245 |
475 | 246 (defun Electric-buffer-menu-quit () |
247 "Leave Electric Buffer Menu, restoring previous window configuration. | |
58120 | 248 Skip execution of select, save, and delete commands." |
475 | 249 (interactive) |
250 (throw 'electric-buffer-menu-select nil)) | |
251 | |
252 (defun Electric-buffer-menu-undefined () | |
253 (interactive) | |
254 (ding) | |
14310
49af6e2bfaa8
(Electric-buffer-menu-undefined): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
255 (message "%s" |
49af6e2bfaa8
(Electric-buffer-menu-undefined): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
256 (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit) |
475 | 257 (eq (key-binding " ") 'Electric-buffer-menu-select) |
919 | 258 (eq (key-binding (char-to-string help-char)) 'Helper-help) |
475 | 259 (eq (key-binding "?") 'Helper-describe-bindings)) |
916
938f166a0874
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
915
diff
changeset
|
260 (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands") |
475 | 261 (substitute-command-keys "\ |
262 Type \\[Electric-buffer-menu-quit] to exit, \ | |
263 \\[Electric-buffer-menu-select] to select, \ | |
264 \\[Helper-help] for help, \\[Helper-describe-bindings] for commands."))) | |
265 (sit-for 4)) | |
266 | |
267 (defun Electric-buffer-menu-mode-view-buffer () | |
268 "View buffer on current line in Electric Buffer Menu. | |
58120 | 269 Return to Electric Buffer Menu when done." |
475 | 270 (interactive) |
271 (let ((bufnam (Buffer-menu-buffer nil))) | |
272 (if bufnam | |
273 (view-buffer bufnam) | |
274 (ding) | |
275 (message "Buffer %s does not exist!" bufnam) | |
276 (sit-for 4)))) | |
277 | |
41016
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
278 (defvar electric-buffer-overlay nil) |
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
279 (defun electric-buffer-update-highlight () |
50068
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
280 (when (eq major-mode 'Electric-buffer-menu-mode) |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
281 ;; Make sure we have an overlay to use. |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
282 (or electric-buffer-overlay |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
283 (progn |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
284 (make-local-variable 'electric-buffer-overlay) |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
285 (setq electric-buffer-overlay (make-overlay (point) (point))))) |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
286 (move-overlay electric-buffer-overlay |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
287 (save-excursion (beginning-of-line) (point)) |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
288 (save-excursion (end-of-line) (point))) |
9fa70ec97b76
(electric-buffer-update-highlight): Do nothing
John Paul Wallington <jpw@pobox.com>
parents:
50035
diff
changeset
|
289 (overlay-put electric-buffer-overlay 'face 'highlight))) |
41016
7cbfb84f7362
(electric-buffer-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38928
diff
changeset
|
290 |
18383 | 291 (provide 'ebuff-menu) |
292 | |
52401 | 293 ;;; arch-tag: 1d4509b3-eece-4d4f-95ea-77c83eaf0275 |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
294 ;;; ebuff-menu.el ends here |