428
|
1 ;;; menubar-items.el --- Menubar and popup-menu content for XEmacs.
|
|
2
|
|
3 ;; Copyright (C) 1991-1995, 1997-1998 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
|
|
5 ;; Copyright (C) 1995 Sun Microsystems.
|
771
|
6 ;; Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing.
|
442
|
7 ;; Copyright (C) 1997 MORIOKA Tomohiko.
|
428
|
8
|
|
9 ;; Maintainer: XEmacs Development Team
|
|
10 ;; Keywords: frames, extensions, internal, dumped
|
|
11
|
|
12 ;; This file is part of XEmacs.
|
|
13
|
|
14 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
15 ;; under the terms of the GNU General Public License as published by
|
|
16 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
17 ;; any later version.
|
|
18
|
|
19 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
22 ;; General Public License for more details.
|
|
23
|
|
24 ;; You should have received a copy of the GNU General Public License
|
|
25 ;; along with Xmacs; see the file COPYING. If not, write to the
|
|
26 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
27 ;; Boston, MA 02111-1307, USA.
|
|
28
|
442
|
29 ;;; Authorship:
|
|
30
|
|
31 ;; Created c. 1991 for Lucid Emacs. Originally called x-menubar.el.
|
|
32 ;; Contained four menus -- File, Edit, Buffers, Help.
|
|
33 ;; Dynamic menu changes possible only through activate-menubar-hook.
|
|
34 ;; Also contained menu manipulation funs, e.g. find-menu-item, add-menu.
|
|
35 ;; Options menu added for 19.9 by Jamie Zawinski, late 1993.
|
|
36 ;; Major reorganization c. 1994 by Ben Wing; added many items and moved
|
|
37 ;; some items to two new menus, Apps and Tools. (for 19.10?)
|
|
38 ;; Generic menubar functions moved to new file, menubar.el, by Ben Wing,
|
|
39 ;; 1995, for 19.12; also, creation of current buffers menu options,
|
|
40 ;; and buffers menu changed from purely most-recent to sorted alphabetical,
|
|
41 ;; by mode. Also added mode-popup-menu support.
|
|
42 ;; New API (add-submenu, add-menu-button) and menu filter support added
|
|
43 ;; late summer 1995 by Stig, for 19.13. Also popup-menubar-menu.
|
|
44 ;; Renamed to menubar-items.el c. 1998, with MS Win support.
|
|
45 ;; Options menu rewritten to use custom c. 1999 by ? (Jan Vroonhof?).
|
|
46 ;; Major reorganization Mar. 2000 by Ben Wing; added many items and changed
|
|
47 ;; top-level menus to File, Edit, View, Cmds, Tools, Options, Buffers.
|
|
48 ;; Accelerator spec functionality added Mar. 2000 by Ben Wing.
|
|
49
|
428
|
50 ;;; Commentary:
|
|
51
|
|
52 ;; This file is dumped with XEmacs (when window system and menubar support is
|
|
53 ;; compiled in).
|
|
54
|
|
55 ;;; Code:
|
|
56
|
679
|
57 (defun Menubar-items-truncate-history (list count label-length)
|
|
58 "Truncate a history LIST to first COUNT items.
|
|
59 Return a list of (label value) lists with labels truncated to last
|
|
60 LABEL-LENGTH characters of value."
|
464
|
61 (mapcar #'(lambda (x)
|
679
|
62 (if (<= (length x) label-length)
|
|
63 (list x x)
|
|
64 (list
|
|
65 (concat "..." (substring x (- label-length))) x)))
|
|
66 (if (<= (length list) count)
|
464
|
67 list
|
679
|
68 (butlast list (- (length list) count)))))
|
442
|
69
|
|
70 (defun submenu-generate-accelerator-spec (list &optional omit-chars-list)
|
|
71 "Add auto-generated accelerator specifications to a submenu.
|
|
72 This can be used to add accelerators to the return value of a menu filter
|
|
73 function. It correctly ignores unselectable items. It will destructively
|
|
74 modify the list passed to it. If an item already has an auto-generated
|
|
75 accelerator spec, this will be removed before the new one is added, making
|
|
76 this function idempotent.
|
|
77
|
|
78 If OMIT-CHARS-LIST is given, it should be a list of lowercase characters,
|
|
79 which will not be used as accelerators."
|
|
80 (let ((n 0))
|
|
81 (dolist (item list list)
|
|
82 (cond
|
|
83 ((vectorp item)
|
|
84 (setq n (1+ n))
|
|
85 (aset item 0
|
|
86 (concat
|
|
87 (menu-item-generate-accelerator-spec n omit-chars-list)
|
|
88 (menu-item-strip-accelerator-spec (aref item 0)))))
|
|
89 ((consp item)
|
|
90 (setq n (1+ n))
|
|
91 (setcar item
|
|
92 (concat
|
|
93 (menu-item-generate-accelerator-spec n omit-chars-list)
|
|
94 (menu-item-strip-accelerator-spec (car item)))))))))
|
|
95
|
|
96 (defun menu-item-strip-accelerator-spec (item)
|
|
97 "Strip an auto-generated accelerator spec off of ITEM.
|
|
98 ITEM should be a string. This removes specs added by
|
|
99 `menu-item-generate-accelerator-spec' and `submenu-generate-accelerator-spec'."
|
|
100 (if (string-match "%_. " item)
|
|
101 (substring item 4)
|
|
102 item))
|
|
103
|
|
104 (defun menu-item-generate-accelerator-spec (n &optional omit-chars-list)
|
|
105 "Return an accelerator specification for use with auto-generated menus.
|
|
106 This should be concat'd onto the beginning of each menu line. The spec
|
|
107 allows the Nth line to be selected by the number N. '0' is used for the
|
|
108 10th line, and 'a' through 'z' are used for the following 26 lines.
|
|
109
|
|
110 If OMIT-CHARS-LIST is given, it should be a list of lowercase characters,
|
|
111 which will not be used as accelerators."
|
|
112 (cond ((< n 10) (concat "%_" (int-to-string n) " "))
|
|
113 ((= n 10) "%_0 ")
|
|
114 ((<= n 36)
|
|
115 (setq n (- n 10))
|
|
116 (let ((m 0))
|
|
117 (while (> n 0)
|
|
118 (setq m (1+ m))
|
|
119 (while (memq (int-to-char (+ m (- (char-to-int ?a) 1)))
|
|
120 omit-chars-list)
|
|
121 (setq m (1+ m)))
|
|
122 (setq n (1- n)))
|
|
123 (if (<= m 26)
|
|
124 (concat
|
|
125 "%_"
|
|
126 (char-to-string (int-to-char (+ m (- (char-to-int ?a) 1))))
|
|
127 " ")
|
|
128 "")))
|
|
129 (t "")))
|
428
|
130
|
771
|
131 (defcustom menu-max-items 25
|
|
132 "*Maximum number of items in generated menus.
|
|
133 If number of entries in such a menu is larger than this value, split menu
|
|
134 into submenus of nearly equal length (see `menu-submenu-max-items'). If
|
|
135 nil, never split menu into submenus."
|
|
136 :group 'menu
|
|
137 :type '(choice (const :tag "no submenus" nil)
|
|
138 (integer)))
|
|
139
|
|
140 (defcustom menu-submenu-max-items 20
|
|
141 "*Maximum number of items in submenus when splitting menus.
|
|
142 We split large menus into submenus of this many items, and then balance
|
|
143 them out as much as possible (otherwise the last submenu may have very few
|
|
144 items)."
|
|
145 :group 'menu
|
|
146 :type 'integer)
|
|
147
|
|
148 (defcustom menu-submenu-name-format "%-12.12s ... %.12s"
|
|
149 "*Format specification of the submenu name when splitting menus.
|
|
150 Used by `menu-split-long-menu' if the number of entries in a menu is
|
|
151 larger than `menu-menu-max-items'.
|
|
152 This string should contain one %s for the name of the first entry and
|
|
153 one %s for the name of the last entry in the submenu.
|
|
154 If the value is a function, it should return the submenu name. The
|
|
155 function is be called with two arguments, the names of the first and
|
|
156 the last entry in the menu."
|
|
157 :group 'menu
|
|
158 :type '(choice (string :tag "Format string")
|
|
159 (function)))
|
|
160
|
|
161 (defun menu-split-long-menu (menu)
|
800
|
162 "Split MENU according to `menu-max-items' and add accelerator specs.
|
|
163
|
|
164 You should normally use the idiom
|
|
165
|
|
166 \(menu-split-long-menu (menu-sort-menu menu))
|
|
167
|
|
168 See also `menu-sort-menu'."
|
771
|
169 (let ((len (length menu)))
|
|
170 (if (or (null menu-max-items)
|
|
171 (<= len menu-max-items))
|
|
172 (submenu-generate-accelerator-spec menu)
|
|
173 (let* ((outer (/ (+ len (1- menu-submenu-max-items))
|
|
174 menu-submenu-max-items))
|
|
175 (inner (/ (+ len (1- outer)) outer))
|
|
176 (result nil))
|
|
177 (while menu
|
|
178 (let ((sub nil)
|
|
179 (from (car menu)))
|
|
180 (dotimes (foo (min inner len))
|
|
181 (setq sub (cons (car menu) sub)
|
|
182 menu (cdr menu)))
|
|
183 (setq len (- len inner))
|
|
184 (let ((to (car sub)))
|
|
185 (setq sub (nreverse sub))
|
|
186 (setq result
|
|
187 (cons (cons (if (stringp menu-submenu-name-format)
|
|
188 (format menu-submenu-name-format
|
|
189 (menu-item-strip-accelerator-spec
|
|
190 (aref from 0))
|
|
191 (menu-item-strip-accelerator-spec
|
|
192 (aref to 0)))
|
|
193 (funcall menu-submenu-name-format
|
|
194 (menu-item-strip-accelerator-spec
|
|
195 (aref from 0))
|
|
196 (menu-item-strip-accelerator-spec
|
|
197 (aref to 0))))
|
|
198 (submenu-generate-accelerator-spec sub))
|
|
199 result)))))
|
|
200 (submenu-generate-accelerator-spec (nreverse result))))))
|
|
201
|
|
202 (defun menu-sort-menu (menu)
|
800
|
203 "Sort MENU alphabetically.
|
|
204
|
|
205 You should normally use the idiom
|
|
206
|
|
207 \(menu-split-long-menu (menu-sort-menu menu))
|
|
208
|
|
209 See also `menu-split-long-menu'."
|
771
|
210 (sort menu
|
|
211 #'(lambda (a b) (string-lessp (aref a 0) (aref b 0)))))
|
|
212
|
|
213 (defun coding-system-menu-filter (fun active &optional dots)
|
|
214 "Filter for menu entries with a submenu listing all coding systems.
|
|
215 This is for operations that take a coding system as an argument. FUN
|
|
216 should be a function of one argument, which will be a coding system symbol.
|
|
217 ACTIVE should be a function one argument (again, a coding system symbol),
|
|
218 indicating whether the entry is active. If DOTS is given, the menu entries
|
|
219 will have three dots appended.
|
|
220
|
|
221 Write your filter like this:
|
|
222
|
|
223 :filter
|
|
224 (lambda (menu)
|
|
225 (lambda (entry) ...)
|
|
226 (lambda (entry) ...))
|
|
227 "
|
|
228 (menu-split-long-menu
|
|
229 (menu-sort-menu
|
|
230 (mapcar
|
|
231 #'(lambda (_csmf_entry)
|
|
232 `[ ,(concat (coding-system-description _csmf_entry)
|
|
233 (if dots "..." ""))
|
|
234 (funcall ,fun ',_csmf_entry)
|
|
235 :active (funcall ,active ',_csmf_entry)
|
|
236 ])
|
|
237 (delete-if
|
|
238 #'(lambda (name)
|
|
239 (or (coding-system-alias-p name)
|
|
240 (not (eq name (coding-system-name
|
|
241 (coding-system-base name))))))
|
|
242 (coding-system-list))))))
|
|
243
|
428
|
244 (defconst default-menubar
|
444
|
245 ; (purecopy-menubar ;purespace is dead
|
428
|
246 ;; note backquote.
|
|
247 `(
|
442
|
248 ("%_File"
|
|
249 ["%_Open..." find-file]
|
|
250 ["Open in Other %_Window..." find-file-other-window]
|
|
251 ["Open in New %_Frame..." find-file-other-frame]
|
771
|
252 ("Open with Specified %_Encoding"
|
|
253 :filter
|
|
254 (lambda (menu)
|
|
255 (coding-system-menu-filter
|
|
256 (lambda (entry)
|
|
257 (let ((coding-system-for-read entry))
|
|
258 (call-interactively 'find-file)))
|
|
259 (lambda (entry) t)
|
|
260 t))
|
|
261 )
|
442
|
262 ["%_Hex Edit File..." hexl-find-file
|
|
263 :active (fboundp 'hexl-find-file)]
|
|
264 ["%_Insert File..." insert-file]
|
|
265 ["%_View File..." view-file]
|
428
|
266 "------"
|
788
|
267 ["%_New Frame" make-frame]
|
|
268 ["Frame on Other %_Display..." make-frame-on-display
|
|
269 :active (fboundp 'make-frame-on-display)]
|
|
270 ["%_Close Frame" delete-frame
|
|
271 :active (not (eq (next-frame (selected-frame) 'nomini 'window-system)
|
|
272 (selected-frame)))]
|
|
273 "-----"
|
442
|
274 ["%_Save" save-buffer
|
428
|
275 :active (buffer-modified-p)
|
|
276 :suffix (if put-buffer-names-in-file-menu (buffer-name) "")]
|
442
|
277 ["Save %_As..." write-file]
|
|
278 ["Save So%_me Buffers" save-some-buffers]
|
428
|
279 "-----"
|
506
|
280 ,@(if (eq system-type 'windows-nt)
|
|
281 '(["Page Set%_up..." generic-page-setup]))
|
442
|
282 ["%_Print" generic-print-buffer
|
|
283 :active (or (valid-specifier-tag-p 'msprinter)
|
|
284 (and (not (eq system-type 'windows-nt))
|
506
|
285 (fboundp 'lpr-region)))
|
510
|
286 :suffix (if (region-active-p) "Selection..."
|
|
287 (if put-buffer-names-in-file-menu (concat (buffer-name) "...")
|
|
288 "..."))]
|
506
|
289 ,@(unless (eq system-type 'windows-nt)
|
|
290 '(["Prett%_y-Print" ps-print-buffer-with-faces
|
|
291 :active (fboundp 'ps-print-buffer-with-faces)
|
|
292 :suffix (if put-buffer-names-in-file-menu (buffer-name) "")]))
|
428
|
293 "-----"
|
442
|
294 ["%_Revert Buffer" revert-buffer
|
428
|
295 :active (or buffer-file-name revert-buffer-function)
|
|
296 :suffix (if put-buffer-names-in-file-menu (buffer-name) "")]
|
793
|
297 ("Rever%_t/Recover"
|
788
|
298 ("Revert Buffer with Specified %_Encoding"
|
771
|
299 :filter
|
|
300 (lambda (menu)
|
|
301 (coding-system-menu-filter
|
|
302 (lambda (entry)
|
|
303 (let ((coding-system-for-read entry))
|
|
304 (revert-buffer)))
|
|
305 (lambda (entry) (or buffer-file-name revert-buffer-function))
|
|
306 t))
|
|
307 )
|
788
|
308 ["Re%_cover Buffer from Autosave" (recover-file buffer-file-name)
|
|
309 :active buffer-file-name
|
|
310 :suffix (if put-buffer-names-in-file-menu (buffer-name) "")]
|
|
311 ["Recover %_Session..." recover-session]
|
|
312 )
|
428
|
313 "-----"
|
442
|
314 ["E%_xit XEmacs" save-buffers-kill-emacs]
|
428
|
315 )
|
|
316
|
442
|
317 ("%_Edit"
|
771
|
318 ["%_Undo" undo
|
428
|
319 :active (and (not (eq buffer-undo-list t))
|
|
320 (or buffer-undo-list pending-undo-list))
|
771
|
321 :suffix (if (eq last-command 'undo) "More" "")]
|
442
|
322 ["%_Redo" redo
|
428
|
323 :included (fboundp 'redo)
|
|
324 :active (not (or (eq buffer-undo-list t)
|
438
|
325 (eq last-buffer-undo-list nil)
|
|
326 (not (or (eq last-buffer-undo-list buffer-undo-list)
|
|
327 (and (null (car-safe buffer-undo-list))
|
|
328 (eq last-buffer-undo-list
|
|
329 (cdr-safe buffer-undo-list)))))
|
|
330 (or (eq buffer-undo-list pending-undo-list)
|
|
331 (eq (cdr buffer-undo-list) pending-undo-list))))
|
428
|
332 :suffix (if (eq last-command 'redo) "More" "")]
|
442
|
333 "----"
|
|
334 ["Cu%_t" kill-primary-selection
|
428
|
335 :active (selection-owner-p)]
|
442
|
336 ["%_Copy" copy-primary-selection
|
|
337 :active (selection-owner-p)]
|
|
338 ["%_Paste" yank-clipboard-selection
|
428
|
339 :active (selection-exists-p 'CLIPBOARD)]
|
442
|
340 ["%_Delete" delete-primary-selection
|
428
|
341 :active (selection-owner-p)]
|
|
342 "----"
|
442
|
343 ["Select %_All" mark-whole-buffer]
|
|
344 ["Select Pa%_ge" mark-page]
|
502
|
345 ["Select Paragrap%_h" mark-paragraph]
|
|
346 ["Re%_select Region" activate-region :active (mark t)]
|
428
|
347 "----"
|
442
|
348 ["%_Find..." make-search-dialog]
|
|
349 ["R%_eplace..." query-replace]
|
|
350 ["Replace (Rege%_xp)..." query-replace-regexp]
|
771
|
351 ["List %_Matching Lines..." list-matching-lines]
|
442
|
352 )
|
428
|
353
|
442
|
354 ("%_View"
|
|
355 ["%_Split Window" split-window-vertically]
|
|
356 ["S%_plit Window (Side by Side)" split-window-horizontally]
|
|
357 ["%_Un-Split (Keep This)" delete-other-windows
|
|
358 :active (not (one-window-p t))]
|
|
359 ["Un-Split (Keep %_Others)" delete-window
|
|
360 :active (not (one-window-p t))]
|
793
|
361 ["Balance %_Windows" balance-windows
|
|
362 :active (not (one-window-p t))]
|
|
363 ["Shrink Window to %_Fit" shrink-window-if-larger-than-buffer]
|
428
|
364 "----"
|
442
|
365 ("N%_arrow"
|
|
366 ["%_Narrow to Region" narrow-to-region :active (region-exists-p)]
|
|
367 ["Narrow to %_Page" narrow-to-page]
|
|
368 ["Narrow to %_Defun" narrow-to-defun]
|
|
369 "----"
|
|
370 ["%_Widen" widen :active (or (/= (point-min) 1)
|
|
371 (/= (point-max) (1+ (buffer-size))))]
|
|
372 )
|
428
|
373 "----"
|
442
|
374 ["%_Goto Line..." goto-line]
|
793
|
375 ["Beginning of %_Defun" beginning-of-defun]
|
|
376 ["%_End of Defun" end-of-defun]
|
|
377 ["%_Count Lines in Buffer" count-lines-buffer
|
|
378 :included (not (region-active-p))]
|
|
379 ["%_Count Lines in Region" count-lines-region
|
|
380 :included (region-active-p)]
|
442
|
381 "----"
|
|
382 ["%_Jump to Previous Mark" (set-mark-command t)
|
|
383 :active (mark t)]
|
793
|
384 ["Se%_t Bookmark" bookmark-set
|
|
385 :active (fboundp 'bookmark-set)]
|
|
386 ("%_Bookmarks"
|
|
387 :filter
|
|
388 (lambda (menu)
|
|
389 (let ((alist (and-boundp 'bookmark-alist
|
|
390 bookmark-alist)))
|
|
391 (if (not alist)
|
|
392 menu
|
|
393 (let ((items
|
|
394 (submenu-generate-accelerator-spec
|
|
395 (mapcar #'(lambda (bmk)
|
|
396 `[,bmk (bookmark-jump ',bmk)])
|
|
397 (bookmark-all-names)))))
|
|
398 (append menu '("---") items)))))
|
|
399 "---"
|
|
400 ["Insert %_Contents" bookmark-menu-insert
|
|
401 :active (fboundp 'bookmark-menu-insert)]
|
|
402 ["Insert L%_ocation" bookmark-menu-locate
|
|
403 :active (fboundp 'bookmark-menu-locate)]
|
|
404 "---"
|
|
405 ["%_Rename Bookmark" bookmark-menu-rename
|
|
406 :active (fboundp 'bookmark-menu-rename)]
|
|
407 ("%_Delete Bookmark"
|
|
408 :filter (lambda (menu)
|
|
409 (submenu-generate-accelerator-spec
|
|
410 (mapcar #'(lambda (bmk)
|
|
411 `[,bmk (bookmark-delete ',bmk)])
|
|
412 (bookmark-all-names)))))
|
|
413 ["%_Edit Bookmark List" bookmark-bmenu-list
|
|
414 :active (and-boundp 'bookmark-alist bookmark-alist)]
|
|
415 "---"
|
|
416 ["%_Save Bookmarks" bookmark-save
|
|
417 :active (and-boundp 'bookmark-alist bookmark-alist)]
|
|
418 ["Save Bookmarks %_As..." bookmark-write
|
|
419 :active (and-boundp 'bookmark-alist bookmark-alist)]
|
|
420 ["%_Load a Bookmark File" bookmark-load
|
|
421 :active (fboundp 'bookmark-load)]
|
|
422 )
|
442
|
423 )
|
428
|
424
|
793
|
425
|
442
|
426 ("C%_mds"
|
814
|
427 ["Repeat Last %_Complex Command..." repeat-complex-command]
|
442
|
428 ["E%_valuate Lisp Expression..." eval-expression]
|
|
429 ["Execute %_Named Command..." execute-extended-command]
|
|
430 "----"
|
814
|
431 ["Start %_Defining Macro" start-kbd-macro
|
442
|
432 :included (not defining-kbd-macro)]
|
814
|
433 ["Stop %_Defining Macro" end-kbd-macro
|
442
|
434 :included defining-kbd-macro]
|
|
435 ["E%_xecute Last Macro" call-last-kbd-macro
|
|
436 :active last-kbd-macro]
|
814
|
437 ("Other %_Macro"
|
793
|
438 ["Edit %_Last Macro" edit-last-kbd-macro
|
|
439 :active last-kbd-macro]
|
|
440 ["%_Edit Macro..." edit-kbd-macro]
|
442
|
441 ["%_Append to Last Macro" (start-kbd-macro t)
|
|
442 :active (and (not defining-kbd-macro) last-kbd-macro)]
|
|
443 "---"
|
|
444 ["%_Name Last Macro..." name-last-kbd-macro
|
|
445 :active last-kbd-macro]
|
|
446 ["Assign Last Macro to %_Key..." assign-last-kbd-macro-to-key
|
|
447 :active (and last-kbd-macro
|
|
448 (fboundp 'assign-last-kbd-macro-to-key))]
|
|
449 "---"
|
793
|
450 ["E%_xecute Last Macro on Region Lines"
|
|
451 :active (and last-kbd-macro (region-exists-p))]
|
|
452 "---"
|
|
453 ["%_Query User During Macro" kbd-macro-query
|
|
454 :active defining-kbd-macro]
|
|
455 ["Enter %_Recursive Edit During Macro" (kbd-macro-query t)
|
|
456 :active defining-kbd-macro]
|
442
|
457 "---"
|
|
458 ["%_Insert Named Macro into Buffer..." insert-kbd-macro]
|
|
459 ["Read Macro from Re%_gion" read-kbd-macro
|
|
460 :active (region-exists-p)]
|
|
461 )
|
|
462 "----"
|
|
463 ["D%_ynamic Abbrev Expand" dabbrev-expand]
|
814
|
464 ["Define %_Global Abbrev for " add-global-abbrev
|
|
465 :suffix (truncate-string-with-continuation-dots
|
|
466 (abbrev-string-to-be-defined nil)
|
|
467 40)]
|
|
468 ("Other %_Abbrev"
|
442
|
469 ["Dynamic Abbrev %_Complete" dabbrev-completion]
|
|
470 ["Dynamic Abbrev Complete in %_All Buffers" (dabbrev-completion 16)]
|
|
471 "----"
|
|
472 "----"
|
|
473 ["%_Define Global Abbrev for " add-global-abbrev
|
814
|
474 :suffix (truncate-string-with-continuation-dots
|
|
475 (abbrev-string-to-be-defined nil)
|
|
476 40)]
|
442
|
477 ["Define %_Mode-Specific Abbrev for " add-mode-abbrev
|
814
|
478 :suffix (truncate-string-with-continuation-dots
|
|
479 (abbrev-string-to-be-defined nil)
|
|
480 40)]
|
442
|
481 ["Define Global Ex%_pansion for " inverse-add-global-abbrev
|
814
|
482 :suffix (truncate-string-with-continuation-dots
|
|
483 (inverse-abbrev-string-to-be-defined 1)
|
|
484 40)]
|
442
|
485 ["Define Mode-Specific Expa%_nsion for " inverse-add-mode-abbrev
|
814
|
486 :suffix (truncate-string-with-continuation-dots
|
|
487 (inverse-abbrev-string-to-be-defined 1)
|
|
488 40)]
|
442
|
489 "---"
|
|
490 ["E%_xpand Abbrev" expand-abbrev]
|
|
491 ["Expand Abbrevs in Re%_gion" expand-region-abbrevs
|
|
492 :active (region-exists-p)]
|
|
493 ["%_Unexpand Last Abbrev" unexpand-abbrev
|
|
494 :active (and (stringp last-abbrev-text)
|
|
495 (> last-abbrev-location 0))]
|
|
496 "---"
|
|
497 ["%_Kill All Abbrevs" kill-all-abbrevs]
|
|
498 ["%_Insert All Abbrevs into Buffer" insert-abbrevs]
|
|
499 ["%_List Abbrevs" list-abbrevs]
|
|
500 "---"
|
|
501 ["%_Edit Abbrevs" edit-abbrevs]
|
|
502 ["%_Redefine Abbrevs from Buffer" edit-abbrevs-redefine
|
|
503 :active (eq major-mode 'edit-abbrevs-mode)]
|
|
504 "---"
|
|
505 ["%_Save Abbrevs As..." write-abbrev-file]
|
|
506 ["L%_oad Abbrevs..." read-abbrev-file]
|
|
507 )
|
814
|
508 "---"
|
|
509 ["%_Kill Rectangle" kill-rectangle]
|
|
510 ("Other %_Rectangles/Register"
|
442
|
511 ["%_Yank Rectangle" yank-rectangle]
|
|
512 ["Rectangle %_to Register" copy-rectangle-to-register]
|
|
513 ["Rectangle %_from Register" insert-register]
|
|
514 ["%_Clear Rectangle" clear-rectangle]
|
|
515 ["%_Open Rectangle" open-rectangle]
|
|
516 ["%_Prefix Rectangle..." string-rectangle]
|
|
517 ["Rectangle %_Mousing"
|
|
518 (customize-set-variable 'mouse-track-rectangle-p
|
|
519 (not mouse-track-rectangle-p))
|
|
520 :style toggle :selected mouse-track-rectangle-p]
|
814
|
521 "---"
|
502
|
522 ["%_Copy to Register..." copy-to-register :active (region-exists-p)]
|
|
523 ["%_Paste Register..." insert-register]
|
|
524 "---"
|
|
525 ["%_Save Point to Register" point-to-register]
|
|
526 ["%_Jump to Register" register-to-point]
|
|
527 )
|
814
|
528 "---"
|
|
529 ["%_Sort Lines in Region" sort-lines :active (region-exists-p)]
|
|
530 ["%_Uppercase Region or Word" upcase-region-or-word]
|
|
531 ["%_Lowercase Region or Word" downcase-region-or-word]
|
|
532 ["%_Indent Region or Balanced Expression"
|
|
533 indent-region-or-balanced-expression]
|
|
534 ["%_Fill Paragraph or Region" fill-paragraph-or-region]
|
|
535 ("Other %_Text Commands"
|
|
536 ["Sort %_Paragraphs in Region" sort-paragraphs :active (region-exists-p)]
|
|
537 ["Sort Pa%_ges in Region" sort-pages :active (region-exists-p)]
|
|
538 ["Sort C%_olumns in Region" sort-columns :active (region-exists-p)]
|
|
539 ["Sort %_Regexp..." sort-regexp-fields :active (region-exists-p)]
|
|
540 "---"
|
|
541 ["%_Capitalize Region" capitalize-region :active (region-exists-p)]
|
|
542 ["Title-C%_ase Region" capitalize-region-as-title
|
|
543 :active (region-exists-p)]
|
|
544 "----"
|
|
545 ["C%_enter Region or Paragraph"
|
|
546 (if (region-active-p) (center-region) (center-line))]
|
|
547 ["Center %_Line" center-line]
|
|
548 "---"
|
|
549 ["%_Indent Region Rigidly" indent-rigidly :active (region-exists-p)]
|
|
550 ["In%_dent To Column..." indent-to-column]
|
|
551 "---"
|
|
552 ["%_Untabify (Tabs to Spaces)" untabify :active (and (region-exists-p)
|
|
553 (fboundp 'untabify))]
|
|
554 ["%_Tabify (Spaces to Tabs)" tabify :active (and (region-exists-p)
|
|
555 (fboundp 'tabify))]
|
|
556 ["Tab to Tab %_Stop" tab-to-tab-stop]
|
|
557 ["Edit Ta%_b Stops" edit-tab-stops]
|
|
558 )
|
|
559 "---"
|
|
560 ("S%_pell-Check"
|
|
561 ["%_Buffer" ispell-buffer
|
|
562 :active (fboundp 'ispell-buffer)]
|
|
563 "---"
|
|
564 ["%_Word" ispell-word]
|
|
565 ["%_Complete Word" ispell-complete-word]
|
|
566 ["%_Region" ispell-region]
|
|
567 )
|
442
|
568 )
|
814
|
569
|
442
|
570 ("%_Tools"
|
|
571 ("%_Packages"
|
|
572 ("%_Add Download Site"
|
428
|
573 :filter (lambda (&rest junk)
|
442
|
574 (submenu-generate-accelerator-spec
|
|
575 (package-get-download-menu))))
|
|
576 ["%_Update Package Index" package-get-update-base]
|
|
577 ["%_List and Install" pui-list-packages]
|
|
578 ["U%_pdate Installed Packages" package-get-update-all]
|
440
|
579 ;; hack-o-matic, we can't force a load of package-base here
|
428
|
580 ;; since it triggers dialog box interactions which we can't
|
440
|
581 ;; deal with while using a menu
|
454
|
582 ("Using %_Custom"
|
428
|
583 :filter (lambda (&rest junk)
|
|
584 (if package-get-base
|
442
|
585 (submenu-generate-accelerator-spec
|
|
586 (cdr (custom-menu-create 'packages)))
|
|
587 '("Please load Package Index"))))
|
454
|
588
|
442
|
589 ["%_Help" (Info-goto-node "(xemacs)Packages")])
|
|
590 ("%_Internet"
|
|
591 ["Read Mail %_1 (VM)..." vm
|
|
592 :active (fboundp 'vm)]
|
|
593 ["Read Mail %_2 (MH)..." (mh-rmail t)
|
|
594 :active (fboundp 'mh-rmail)]
|
|
595 ["Send %_Mail..." compose-mail
|
|
596 :active (fboundp 'compose-mail)]
|
|
597 ["Usenet %_News" gnus
|
|
598 :active (fboundp 'gnus)]
|
|
599 ["Browse the %_Web" w3
|
|
600 :active (fboundp 'w3)])
|
|
601 "---"
|
|
602 ("%_Grep"
|
|
603 :filter
|
|
604 (lambda (menu)
|
|
605 (if (or (not (boundp 'grep-history)) (null grep-history))
|
|
606 menu
|
|
607 (let ((items
|
|
608 (submenu-generate-accelerator-spec
|
679
|
609 (mapcar #'(lambda (label-value)
|
|
610 (vector (first label-value)
|
|
611 (list 'grep (second label-value))))
|
|
612 (Menubar-items-truncate-history
|
|
613 grep-history 10 50)))))
|
442
|
614 (append menu '("---") items))))
|
|
615 ["%_Grep..." grep :active (fboundp 'grep)]
|
|
616 ["%_Kill Grep" kill-compilation
|
|
617 :active (and (fboundp 'kill-compilation)
|
|
618 (fboundp 'compilation-find-buffer)
|
|
619 (let ((buffer (condition-case nil
|
|
620 (compilation-find-buffer)
|
|
621 (error nil))))
|
|
622 (and buffer (get-buffer-process buffer))))]
|
|
623 "---"
|
|
624 ["Grep %_All Files in Current Directory..."
|
771
|
625 grep-all-files-in-current-directory
|
|
626 :active (fboundp 'grep-all-files-in-current-directory)]
|
793
|
627 ["Grep All Files in Current Directory %_Recursively..."
|
771
|
628 grep-all-files-in-current-directory-and-below
|
|
629 :active (fboundp 'grep-all-files-in-current-directory-and-below)]
|
|
630 "---"
|
442
|
631 ["Grep %_C and C Header Files in Current Directory..."
|
|
632 (progn
|
|
633 (require 'compile)
|
|
634 (let ((grep-command
|
|
635 (cons (concat grep-command " *.[chCH]"
|
|
636 ; i wanted to also use *.cc and *.hh.
|
|
637 ; see long comment below under Perl.
|
|
638 )
|
|
639 (length grep-command))))
|
|
640 (call-interactively 'grep)))
|
|
641 :active (fboundp 'grep)]
|
|
642 ["Grep C Hea%_der Files in Current Directory..."
|
|
643 (progn
|
|
644 (require 'compile)
|
|
645 (let ((grep-command
|
|
646 (cons (concat grep-command " *.[hH]"
|
|
647 ; i wanted to also use *.hh.
|
|
648 ; see long comment below under Perl.
|
|
649 )
|
|
650 (length grep-command))))
|
|
651 (call-interactively 'grep)))
|
|
652 :active (fboundp 'grep)]
|
|
653 ["Grep %_E-Lisp Files in Current Directory..."
|
|
654 (progn
|
|
655 (require 'compile)
|
|
656 (let ((grep-command
|
|
657 (cons (concat grep-command " *.el")
|
|
658 (length grep-command))))
|
|
659 (call-interactively 'grep)))
|
|
660 :active (fboundp 'grep)]
|
|
661 ["Grep %_Perl Files in Current Directory..."
|
|
662 (progn
|
|
663 (require 'compile)
|
|
664 (let ((grep-command
|
|
665 (cons (concat grep-command " *.pl"
|
|
666 ; i wanted to use this:
|
|
667 ; " *.pl *.pm *.am"
|
|
668 ; but grep complains if it can't
|
|
669 ; match anything in a glob, and
|
|
670 ; that screws other things up.
|
|
671 ; perhaps we need to first scan
|
|
672 ; each separate glob in the directory
|
|
673 ; to see if there are any files in
|
|
674 ; that glob, and if not, omit it.
|
|
675 )
|
|
676 (length grep-command))))
|
|
677 (call-interactively 'grep)))
|
|
678 :active (fboundp 'grep)]
|
|
679 ["Grep %_HTML Files in Current Directory..."
|
|
680 (progn
|
|
681 (require 'compile)
|
|
682 (let ((grep-command
|
|
683 (cons (concat grep-command " *.*htm*")
|
|
684 (length grep-command))))
|
|
685 (call-interactively 'grep)))
|
|
686 :active (fboundp 'grep)]
|
|
687 "---"
|
|
688 ["%_Next Match" next-error
|
|
689 :active (and (fboundp 'compilation-errors-exist-p)
|
|
690 (compilation-errors-exist-p))]
|
|
691 ["Pre%_vious Match" previous-error
|
|
692 :active (and (fboundp 'compilation-errors-exist-p)
|
|
693 (compilation-errors-exist-p))]
|
|
694 ["%_First Match" first-error
|
|
695 :active (and (fboundp 'compilation-errors-exist-p)
|
|
696 (compilation-errors-exist-p))]
|
|
697 ["G%_oto Match" compile-goto-error
|
|
698 :active (and (fboundp 'compilation-errors-exist-p)
|
|
699 (compilation-errors-exist-p))]
|
|
700 "---"
|
|
701 ["%_Set Grep Command..."
|
|
702 (progn
|
|
703 (require 'compile)
|
|
704 (customize-set-variable
|
|
705 'grep-command
|
|
706 (read-shell-command "Default Grep Command: " grep-command)))
|
|
707 :active (fboundp 'grep)
|
|
708 ]
|
|
709 )
|
|
710 ("%_Compile"
|
|
711 :filter
|
|
712 (lambda (menu)
|
|
713 (if (or (not (boundp 'compile-history)) (null compile-history))
|
|
714 menu
|
|
715 (let ((items
|
|
716 (submenu-generate-accelerator-spec
|
679
|
717 (mapcar #'(lambda (label-value)
|
|
718 (vector (first label-value)
|
|
719 (list 'compile (second label-value))))
|
|
720 (Menubar-items-truncate-history
|
|
721 compile-history 10 50)))))
|
442
|
722 (append menu '("---") items))))
|
|
723 ["%_Compile..." compile :active (fboundp 'compile)]
|
|
724 ["%_Repeat Compilation" recompile :active (fboundp 'recompile)]
|
|
725 ["%_Kill Compilation" kill-compilation
|
|
726 :active (and (fboundp 'kill-compilation)
|
|
727 (fboundp 'compilation-find-buffer)
|
|
728 (let ((buffer (condition-case nil
|
|
729 (compilation-find-buffer)
|
|
730 (error nil))))
|
|
731 (and buffer (get-buffer-process buffer))))]
|
|
732 "---"
|
|
733 ["%_Next Error" next-error
|
|
734 :active (and (fboundp 'compilation-errors-exist-p)
|
|
735 (compilation-errors-exist-p))]
|
|
736 ["Pre%_vious Error" previous-error
|
|
737 :active (and (fboundp 'compilation-errors-exist-p)
|
|
738 (compilation-errors-exist-p))]
|
|
739 ["%_First Error" first-error
|
|
740 :active (and (fboundp 'compilation-errors-exist-p)
|
|
741 (compilation-errors-exist-p))]
|
|
742 ["G%_oto Error" compile-goto-error
|
|
743 :active (and (fboundp 'compilation-errors-exist-p)
|
|
744 (compilation-errors-exist-p))]
|
|
745 )
|
|
746 ("%_Debug"
|
|
747 ["%_GDB..." gdb
|
|
748 :active (fboundp 'gdb)]
|
|
749 ["%_DBX..." dbx
|
|
750 :active (fboundp 'dbx)])
|
|
751 ("%_Shell"
|
|
752 ["%_Shell" shell
|
|
753 :active (fboundp 'shell)]
|
|
754 ["S%_hell Command..." shell-command
|
|
755 :active (fboundp 'shell-command)]
|
|
756 ["Shell Command on %_Region..." shell-command-on-region
|
|
757 :active (and (fboundp 'shell-command-on-region) (region-exists-p))])
|
428
|
758
|
442
|
759 ("%_Tags"
|
|
760 ["%_Find Tag..." find-tag]
|
|
761 ["Find %_Other Window..." find-tag-other-window]
|
|
762 ["%_Next Tag..." (find-tag nil)]
|
|
763 ["N%_ext Other Window..." (find-tag-other-window nil)]
|
|
764 ["Next %_File" next-file]
|
|
765 "-----"
|
|
766 ["Tags %_Search..." tags-search]
|
|
767 ["Tags %_Replace..." tags-query-replace]
|
|
768 ["%_Continue Search/Replace" tags-loop-continue]
|
|
769 "-----"
|
|
770 ["%_Pop stack" pop-tag-mark]
|
|
771 ["%_Apropos..." tags-apropos]
|
|
772 "-----"
|
|
773 ["%_Set Tags Table File..." visit-tags-table]
|
|
774 )
|
|
775
|
|
776 "----"
|
|
777
|
|
778 ("Ca%_lendar"
|
|
779 ["%_3-Month Calendar" calendar
|
|
780 :active (fboundp 'calendar)]
|
|
781 ["%_Diary" diary
|
|
782 :active (fboundp 'diary)]
|
|
783 ["%_Holidays" holidays
|
|
784 :active (fboundp 'holidays)]
|
|
785 ;; we're all pagans at heart ...
|
|
786 ["%_Phases of the Moon" phases-of-moon
|
|
787 :active (fboundp 'phases-of-moon)]
|
|
788 ["%_Sunrise/Sunset" sunrise-sunset
|
|
789 :active (fboundp 'sunrise-sunset)])
|
428
|
790
|
442
|
791 ("Ga%_mes"
|
|
792 ["%_Mine Game" xmine
|
|
793 :active (fboundp 'xmine)]
|
|
794 ["%_Tetris" tetris
|
|
795 :active (fboundp 'tetris)]
|
|
796 ["%_Sokoban" sokoban
|
|
797 :active (fboundp 'sokoban)]
|
|
798 ["Quote from %_Zippy" yow
|
|
799 :active (fboundp 'yow)]
|
|
800 ["%_Psychoanalyst" doctor
|
|
801 :active (fboundp 'doctor)]
|
|
802 ["Ps%_ychoanalyze Zippy!" psychoanalyze-pinhead
|
|
803 :active (fboundp 'psychoanalyze-pinhead)]
|
|
804 ["%_Random Flames" flame
|
|
805 :active (fboundp 'flame)]
|
|
806 ["%_Dunnet (Adventure)" dunnet
|
|
807 :active (fboundp 'dunnet)]
|
|
808 ["Towers of %_Hanoi" hanoi
|
|
809 :active (fboundp 'hanoi)]
|
|
810 ["Game of %_Life" life
|
|
811 :active (fboundp 'life)]
|
|
812 ["M%_ultiplication Puzzle" mpuz
|
|
813 :active (fboundp 'mpuz)])
|
|
814
|
|
815 "----"
|
|
816 )
|
|
817
|
|
818 ("%_Options"
|
800
|
819 ("%_Behaviors"
|
|
820 :filter
|
|
821 (lambda (menu)
|
|
822 (menu-split-long-menu
|
|
823 (menu-sort-menu
|
|
824 (loop for behavior being the hash-keys in behavior-hash-table
|
|
825 using (hash-value plist)
|
|
826 collect (vector (format "%s (%s)" behavior
|
|
827 (getf plist :short-doc))
|
|
828 `(if (memq ',behavior enabled-behavior-list)
|
|
829 (disable-behavior ',behavior)
|
|
830 (enable-behavior ',behavior))
|
|
831 :style 'toggle
|
|
832 :selected `(memq ',behavior
|
|
833 enabled-behavior-list))
|
|
834 )))))
|
|
835
|
442
|
836 ("%_Advanced (Customize)"
|
|
837 ("%_Emacs" :filter (lambda (&rest junk)
|
|
838 (cdr (custom-menu-create 'emacs))))
|
|
839 ["%_Group..." customize-group]
|
|
840 ["%_Variable..." customize-variable]
|
|
841 ["%_Face..." customize-face]
|
|
842 ["%_Saved..." customize-saved]
|
|
843 ["Se%_t..." customize-customized]
|
|
844 ["%_Apropos..." customize-apropos]
|
|
845 ["%_Browse..." customize-browse])
|
|
846 "---"
|
|
847 ("%_Editing"
|
|
848 ["This Buffer %_Read Only" (toggle-read-only)
|
|
849 :style toggle :selected buffer-read-only]
|
|
850 ["%_Yank/Kill Interact With Clipboard"
|
|
851 (if (eq interprogram-cut-function 'own-clipboard)
|
|
852 (progn
|
|
853 (customize-set-variable 'interprogram-cut-function nil)
|
|
854 (customize-set-variable 'interprogram-paste-function nil))
|
|
855 (customize-set-variable 'interprogram-cut-function 'own-clipboard)
|
|
856 (customize-set-variable 'interprogram-paste-function 'get-clipboard))
|
|
857 :style toggle
|
|
858 :selected (eq interprogram-cut-function 'own-clipboard)]
|
|
859 ["%_Overstrike"
|
428
|
860 (progn
|
|
861 (setq overwrite-mode (if overwrite-mode nil 'overwrite-mode-textual))
|
|
862 (customize-set-variable 'overwrite-mode overwrite-mode))
|
|
863 :style toggle :selected overwrite-mode]
|
442
|
864 ["%_Abbrev Mode"
|
|
865 (customize-set-variable 'abbrev-mode
|
|
866 (not (default-value 'abbrev-mode)))
|
|
867 :style toggle
|
|
868 :selected (default-value 'abbrev-mode)]
|
|
869 ["Active Re%_gions"
|
|
870 (customize-set-variable 'zmacs-regions (not zmacs-regions))
|
|
871 :style toggle :selected zmacs-regions]
|
|
872 "---"
|
|
873 ["%_Case Sensitive Search"
|
428
|
874 (customize-set-variable 'case-fold-search
|
|
875 (setq case-fold-search (not case-fold-search)))
|
|
876 :style toggle :selected (not case-fold-search)]
|
442
|
877 ["Case %_Matching Replace"
|
428
|
878 (customize-set-variable 'case-replace (not case-replace))
|
|
879 :style toggle :selected case-replace]
|
442
|
880 "---"
|
|
881 ("%_Newline at End of File..."
|
|
882 ["%_Don't Require"
|
|
883 (customize-set-variable 'require-final-newline nil)
|
|
884 :style radio :selected (not require-final-newline)]
|
|
885 ["%_Require"
|
|
886 (customize-set-variable 'require-final-newline t)
|
|
887 :style radio :selected (eq require-final-newline t)]
|
|
888 ["%_Ask"
|
|
889 (customize-set-variable 'require-final-newline 'ask)
|
|
890 :style radio :selected (and require-final-newline
|
|
891 (not (eq require-final-newline t)))])
|
|
892 ["Add Newline When Moving Past %_End"
|
|
893 (customize-set-variable 'next-line-add-newlines
|
|
894 (not next-line-add-newlines))
|
|
895 :style toggle :selected next-line-add-newlines])
|
|
896 ("%_Keyboard and Mouse"
|
|
897 ["%_Delete Key Deletes Selection"
|
428
|
898 (customize-set-variable 'pending-delete-mode (not pending-delete-mode))
|
|
899 :style toggle
|
|
900 :selected (and (boundp 'pending-delete-mode) pending-delete-mode)
|
|
901 :active (boundp 'pending-delete-mode)]
|
462
|
902 ["`%_kill-line' Kills Whole Line at %_Beg"
|
|
903 (customize-set-variable 'kill-whole-line (not kill-whole-line))
|
|
904 :style toggle
|
|
905 :selected kill-whole-line]
|
442
|
906 ["Size for %_Block-Movement Commands..."
|
|
907 (customize-set-variable 'block-movement-size
|
|
908 (read-number "Block Movement Size: "
|
|
909 t block-movement-size))]
|
|
910 ["%_VI Emulation"
|
|
911 (progn
|
|
912 (toggle-viper-mode)
|
|
913 (customize-set-variable 'viper-mode viper-mode))
|
|
914 :style toggle :selected (and (boundp 'viper-mode) viper-mode)
|
|
915 :active (fboundp 'toggle-viper-mode)]
|
|
916 "----"
|
462
|
917 ["S%_hifted Motion Keys Select Region"
|
|
918 (customize-set-variable 'shifted-motion-keys-select-region
|
|
919 (not shifted-motion-keys-select-region))
|
|
920 :style toggle
|
|
921 :selected shifted-motion-keys-select-region]
|
|
922 ["%_After Shifted Motion, Unshifted Motion Keys Deselect"
|
|
923 (customize-set-variable 'unshifted-motion-keys-deselect-region
|
|
924 (not unshifted-motion-keys-deselect-region))
|
|
925 :style toggle
|
|
926 :selected unshifted-motion-keys-deselect-region]
|
|
927 "----"
|
442
|
928 ["%_Set Key..." global-set-key]
|
|
929 ["%_Unset Key..." global-unset-key]
|
|
930 "---"
|
|
931 ["%_Mouse Paste at Text Cursor (not Clicked Location)"
|
428
|
932 (customize-set-variable 'mouse-yank-at-point (not mouse-yank-at-point))
|
|
933 :style toggle :selected mouse-yank-at-point]
|
442
|
934 "---"
|
|
935 ["%_Teach Extended Commands"
|
428
|
936 (customize-set-variable 'teach-extended-commands-p
|
|
937 (not teach-extended-commands-p))
|
|
938 :style toggle :selected teach-extended-commands-p]
|
|
939 )
|
442
|
940 ("%_Printing"
|
|
941 ["Set Printer %_Name for Generic Print Support..."
|
|
942 (customize-set-variable
|
|
943 'printer-name
|
|
944 (read-string "Set printer name: " printer-name))]
|
|
945 "---"
|
|
946 ["Command-Line %_Switches for `lpr'/`lp'..."
|
428
|
947 ;; better to directly open a customization buffer, since the value
|
|
948 ;; must be a list of strings, which is somewhat complex to prompt for.
|
|
949 (customize-variable 'lpr-switches)
|
|
950 (boundp 'lpr-switches)]
|
442
|
951 ("%_Pretty-Print Paper Size"
|
|
952 ["%_Letter"
|
428
|
953 (customize-set-variable 'ps-paper-type 'letter)
|
|
954 :style radio
|
|
955 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'letter))
|
|
956 :active (boundp 'ps-paper-type)]
|
442
|
957 ["Lette%_r-Small"
|
428
|
958 (customize-set-variable 'ps-paper-type 'letter-small)
|
|
959 :style radio
|
|
960 :selected (and (boundp 'ps-paper-type)
|
|
961 (eq ps-paper-type 'letter-small))
|
|
962 :active (boundp 'ps-paper-type)]
|
442
|
963 ["Le%_gal"
|
428
|
964 (customize-set-variable 'ps-paper-type 'legal)
|
|
965 :style radio
|
|
966 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'legal))
|
|
967 :active (boundp 'ps-paper-type)]
|
442
|
968 ["%_Statement"
|
428
|
969 (customize-set-variable 'ps-paper-type 'statement)
|
|
970 :style radio
|
|
971 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'statement))
|
|
972 :active (boundp 'ps-paper-type)]
|
442
|
973 ["%_Executive"
|
428
|
974 (customize-set-variable 'ps-paper-type 'executive)
|
|
975 :style radio
|
|
976 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'executive))
|
|
977 :active (boundp 'ps-paper-type)]
|
442
|
978 ["%_Tabloid"
|
428
|
979 (customize-set-variable 'ps-paper-type 'tabloid)
|
|
980 :style radio
|
|
981 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'tabloid))
|
|
982 :active (boundp 'ps-paper-type)]
|
442
|
983 ["Le%_dger"
|
428
|
984 (customize-set-variable 'ps-paper-type 'ledger)
|
|
985 :style radio
|
|
986 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'ledger))
|
|
987 :active (boundp 'ps-paper-type)]
|
442
|
988 ["A%_3"
|
428
|
989 (customize-set-variable 'ps-paper-type 'a3)
|
|
990 :style radio
|
|
991 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'a3))
|
|
992 :active (boundp 'ps-paper-type)]
|
442
|
993 ["%_A4"
|
428
|
994 (customize-set-variable 'ps-paper-type 'a4)
|
|
995 :style radio
|
|
996 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'a4))
|
|
997 :active (boundp 'ps-paper-type)]
|
442
|
998 ["A4s%_mall"
|
428
|
999 (customize-set-variable 'ps-paper-type 'a4small)
|
|
1000 :style radio
|
|
1001 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'a4small))
|
|
1002 :active (boundp 'ps-paper-type)]
|
442
|
1003 ["B%_4"
|
428
|
1004 (customize-set-variable 'ps-paper-type 'b4)
|
|
1005 :style radio
|
|
1006 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'b4))
|
|
1007 :active (boundp 'ps-paper-type)]
|
442
|
1008 ["%_B5"
|
428
|
1009 (customize-set-variable 'ps-paper-type 'b5)
|
|
1010 :style radio
|
|
1011 :selected (and (boundp 'ps-paper-type) (eq ps-paper-type 'b5))
|
|
1012 :active (boundp 'ps-paper-type)]
|
|
1013 )
|
442
|
1014 ["%_Color Printing"
|
428
|
1015 (cond (ps-print-color-p
|
|
1016 (customize-set-variable 'ps-print-color-p nil)
|
440
|
1017 ;; I'm wondering whether all this muck is useful.
|
428
|
1018 (and (boundp 'original-face-background)
|
|
1019 original-face-background
|
|
1020 (set-face-background 'default original-face-background)))
|
|
1021 (t
|
|
1022 (customize-set-variable 'ps-print-color-p t)
|
|
1023 (setq original-face-background
|
|
1024 (face-background-instance 'default))
|
|
1025 (set-face-background 'default "white")))
|
|
1026 :style toggle
|
|
1027 :selected (and (boundp 'ps-print-color-p) ps-print-color-p)
|
|
1028 :active (boundp 'ps-print-color-p)])
|
442
|
1029 ("%_Internet"
|
|
1030 ("%_Compose Mail With"
|
|
1031 ["Default Emacs Mailer"
|
|
1032 (customize-set-variable 'mail-user-agent 'sendmail-user-agent)
|
|
1033 :style radio
|
|
1034 :selected (eq mail-user-agent 'sendmail-user-agent)]
|
|
1035 ["MH"
|
|
1036 (customize-set-variable 'mail-user-agent 'mh-e-user-agent)
|
|
1037 :style radio
|
|
1038 :selected (eq mail-user-agent 'mh-e-user-agent)
|
|
1039 :active (get 'mh-e-user-agent 'composefunc)]
|
|
1040 ["GNUS"
|
|
1041 (customize-set-variable 'mail-user-agent 'message-user-agent)
|
|
1042 :style radio
|
|
1043 :selected (eq mail-user-agent 'message-user-agent)
|
|
1044 :active (get 'message-user-agent 'composefunc)]
|
|
1045 )
|
|
1046 ["Set My %_Email Address..."
|
|
1047 (customize-set-variable
|
|
1048 'user-mail-address
|
|
1049 (read-string "Set email address: " user-mail-address))]
|
|
1050 ["Set %_Machine Email Name..."
|
428
|
1051 (customize-set-variable
|
442
|
1052 'mail-host-address
|
|
1053 (read-string "Set machine email name: " mail-host-address))]
|
|
1054 ["Set %_SMTP Server..."
|
|
1055 (progn
|
|
1056 (require 'smtpmail)
|
|
1057 (customize-set-variable
|
|
1058 'smtpmail-smtp-server
|
|
1059 (read-string "Set SMTP server: " smtpmail-smtp-server)))
|
|
1060 :active (and (boundp 'send-mail-function)
|
|
1061 (eq send-mail-function 'smtpmail-send-it))]
|
|
1062 ["SMTP %_Debug Info"
|
|
1063 (progn
|
|
1064 (require 'smtpmail)
|
|
1065 (customize-set-variable 'smtpmail-debug-info
|
|
1066 (not smtpmail-debug-info)))
|
428
|
1067 :style toggle
|
442
|
1068 :selected (and (boundp 'smtpmail-debug-info) smtpmail-debug-info)
|
|
1069 :active (and (boundp 'send-mail-function)
|
732
|
1070 (eq send-mail-function 'smtpmail-send-it))])
|
442
|
1071 ("%_Troubleshooting"
|
771
|
1072 ["%_Debug on Error [not saved]"
|
|
1073 (setq debug-on-error (not debug-on-error))
|
442
|
1074 :style toggle :selected debug-on-error]
|
771
|
1075 ["Debug on %_Quit [not saved]"
|
|
1076 (setq debug-on-quit (not debug-on-quit))
|
442
|
1077 :style toggle :selected debug-on-quit]
|
771
|
1078 ["Debug on S%_ignal [not saved]"
|
|
1079 (setq debug-on-signal (not debug-on-signal))
|
442
|
1080 :style toggle :selected debug-on-signal]
|
771
|
1081 ["%_Stack Trace on Error [not saved]"
|
|
1082 (setq stack-trace-on-error (not stack-trace-on-error))
|
442
|
1083 :style toggle :selected stack-trace-on-error]
|
771
|
1084 ["Stack Trace on Si%_gnal [not saved]"
|
|
1085 (setq stack-trace-on-signal (not stack-trace-on-signal))
|
442
|
1086 :style toggle :selected stack-trace-on-signal]
|
428
|
1087 )
|
771
|
1088 ("Encodin%_g"
|
|
1089 ["Automatic %_EOL Detection"
|
|
1090 (customize-set-variable 'eol-detection-enabled-p
|
|
1091 (not eol-detection-enabled-p))
|
|
1092 :style toggle
|
|
1093 :selected eol-detection-enabled-p
|
|
1094 :included (not (memq system-type '(windows-nt cygwin32)))]
|
|
1095 ("Set Coding System of %_Buffer File"
|
|
1096 :filter
|
|
1097 (lambda (menu)
|
|
1098 (coding-system-menu-filter
|
|
1099 (lambda (entry)
|
|
1100 (set-buffer-file-coding-system entry))
|
|
1101 (lambda (entry) t)
|
|
1102 ))
|
|
1103 )
|
|
1104 ;; not implemented yet
|
|
1105 ("Set Coding System of %_Terminal"
|
|
1106 :filter
|
|
1107 (lambda (menu)
|
|
1108 (coding-system-menu-filter
|
|
1109 (lambda (entry)
|
|
1110 (set-terminal-coding-system entry))
|
|
1111 (lambda (entry) nil)
|
|
1112 ))
|
|
1113 )
|
|
1114 ;; not implemented yet
|
|
1115 ("Set Coding System of %_Keyboard"
|
|
1116 :filter
|
|
1117 (lambda (menu)
|
|
1118 (coding-system-menu-filter
|
|
1119 (lambda (entry)
|
|
1120 (set-keyboard-coding-system entry))
|
|
1121 (lambda (entry) nil)
|
|
1122 ))
|
|
1123 )
|
|
1124 ("Set Coding System of %_Process"
|
|
1125 :filter
|
|
1126 (lambda (menu)
|
|
1127 (coding-system-menu-filter
|
|
1128 (lambda (entry)
|
|
1129 (set-buffer-process-coding-system entry))
|
|
1130 (lambda (entry) (get-buffer-process (current-buffer)))
|
|
1131 ))
|
|
1132 )
|
|
1133 )
|
|
1134 ,@(when (featurep 'mule)
|
|
1135 '(("Internationa%_l"
|
|
1136 ("Set %_Language Environment"
|
|
1137 :filter
|
|
1138 (lambda (menu)
|
|
1139 (menu-split-long-menu
|
|
1140 (menu-sort-menu
|
|
1141 (mapcar #'(lambda (entry)
|
|
1142 `[ ,(car entry)
|
|
1143 (set-language-environment ',(car entry))
|
|
1144 :style radio
|
|
1145 :selected
|
|
1146 ,(equal (car entry)
|
|
1147 current-language-environment)])
|
|
1148 language-info-alist)
|
|
1149 ))))
|
|
1150 ["%_Toggle Input Method" toggle-input-method]
|
|
1151 ["Select %_Input Method" set-input-method]
|
|
1152 )))
|
428
|
1153 "-----"
|
442
|
1154 ("%_Display"
|
|
1155 ,@(if (featurep 'scrollbar)
|
|
1156 '(["%_Scrollbars"
|
|
1157 (customize-set-variable 'scrollbars-visible-p
|
|
1158 (not scrollbars-visible-p))
|
|
1159 :style toggle
|
|
1160 :selected scrollbars-visible-p]))
|
|
1161 ["%_Wrap Long Lines"
|
|
1162 (progn;; becomes buffer-local
|
|
1163 (setq truncate-lines (not truncate-lines))
|
|
1164 (customize-set-variable 'truncate-lines truncate-lines))
|
|
1165 :style toggle
|
|
1166 :selected (not truncate-lines)]
|
454
|
1167 "----"
|
|
1168 ["%_3D Modeline"
|
|
1169 (customize-set-variable 'modeline-3d-p
|
|
1170 (not modeline-3d-p))
|
|
1171 :style toggle
|
|
1172 :selected modeline-3d-p]
|
|
1173 ("Modeline %_Horizontal Scrolling"
|
|
1174 ["%_None"
|
|
1175 (customize-set-variable 'modeline-scrolling-method nil)
|
|
1176 :style radio
|
|
1177 :selected (not modeline-scrolling-method)]
|
|
1178 ["As %_Text"
|
|
1179 (customize-set-variable 'modeline-scrolling-method t)
|
|
1180 :style radio
|
|
1181 :selected (eq modeline-scrolling-method t)]
|
|
1182 ["As %_Scrollbar"
|
|
1183 (customize-set-variable 'modeline-scrolling-method 'scrollbar)
|
|
1184 :style radio
|
|
1185 :selected (eq modeline-scrolling-method 'scrollbar)]
|
|
1186 )
|
442
|
1187 ,@(if (featurep 'toolbar)
|
|
1188 '("---"
|
|
1189 ["%_Toolbars Visible"
|
|
1190 (customize-set-variable 'toolbar-visible-p
|
|
1191 (not toolbar-visible-p))
|
|
1192 :style toggle
|
|
1193 :selected toolbar-visible-p]
|
|
1194 ["Toolbars Ca%_ptioned"
|
|
1195 (customize-set-variable 'toolbar-captioned-p
|
|
1196 (not toolbar-captioned-p))
|
|
1197 :style toggle
|
|
1198 :active toolbar-visible-p
|
|
1199 :selected toolbar-captioned-p]
|
|
1200 ("Default Toolba%_r Location"
|
|
1201 ["%_Top"
|
|
1202 (customize-set-variable 'default-toolbar-position 'top)
|
|
1203 :style radio
|
|
1204 :active toolbar-visible-p
|
|
1205 :selected (eq default-toolbar-position 'top)]
|
|
1206 ["%_Bottom"
|
|
1207 (customize-set-variable 'default-toolbar-position 'bottom)
|
|
1208 :style radio
|
|
1209 :active toolbar-visible-p
|
|
1210 :selected (eq default-toolbar-position 'bottom)]
|
|
1211 ["%_Left"
|
|
1212 (customize-set-variable 'default-toolbar-position 'left)
|
|
1213 :style radio
|
|
1214 :active toolbar-visible-p
|
|
1215 :selected (eq default-toolbar-position 'left)]
|
|
1216 ["%_Right"
|
|
1217 (customize-set-variable 'default-toolbar-position 'right)
|
|
1218 :style radio
|
|
1219 :active toolbar-visible-p
|
|
1220 :selected (eq default-toolbar-position 'right)]
|
|
1221 )
|
|
1222 ))
|
|
1223 ,@(if (featurep 'gutter)
|
|
1224 '("---"
|
|
1225 ["B%_uffers Tab Visible"
|
|
1226 (customize-set-variable 'gutter-buffers-tab-visible-p
|
|
1227 (not gutter-buffers-tab-visible-p))
|
|
1228 :style toggle
|
|
1229 :selected gutter-buffers-tab-visible-p]
|
|
1230 ("Default %_Gutter Location"
|
|
1231 ["%_Top"
|
|
1232 (customize-set-variable 'default-gutter-position 'top)
|
|
1233 :style radio
|
|
1234 :selected (eq default-gutter-position 'top)]
|
|
1235 ["%_Bottom"
|
|
1236 (customize-set-variable 'default-gutter-position 'bottom)
|
|
1237 :style radio
|
|
1238 :selected (eq default-gutter-position 'bottom)]
|
|
1239 ["%_Left"
|
|
1240 (customize-set-variable 'default-gutter-position 'left)
|
|
1241 :style radio
|
|
1242 :selected (eq default-gutter-position 'left)]
|
|
1243 ["%_Right"
|
|
1244 (customize-set-variable 'default-gutter-position 'right)
|
|
1245 :style radio
|
|
1246 :selected (eq default-gutter-position 'right)]
|
|
1247 )
|
|
1248 ))
|
|
1249 "-----"
|
|
1250 ["%_Blinking Cursor"
|
|
1251 (customize-set-variable 'blink-cursor-mode (not blink-cursor-mode))
|
|
1252 :style toggle
|
|
1253 :selected (and (boundp 'blink-cursor-mode) blink-cursor-mode)
|
|
1254 :active (boundp 'blink-cursor-mode)]
|
|
1255 ["Bl%_ock Cursor"
|
|
1256 (progn
|
|
1257 (customize-set-variable 'bar-cursor nil)
|
|
1258 (force-cursor-redisplay))
|
|
1259 :style radio
|
|
1260 :selected (null bar-cursor)]
|
|
1261 ["Bar Cursor (%_1 Pixel)"
|
|
1262 (progn
|
|
1263 (customize-set-variable 'bar-cursor t)
|
|
1264 (force-cursor-redisplay))
|
|
1265 :style radio
|
|
1266 :selected (eq bar-cursor t)]
|
|
1267 ["Bar Cursor (%_2 Pixels)"
|
|
1268 (progn
|
|
1269 (customize-set-variable 'bar-cursor 2)
|
|
1270 (force-cursor-redisplay))
|
|
1271 :style radio
|
|
1272 :selected (and bar-cursor (not (eq bar-cursor t)))]
|
|
1273 "----"
|
|
1274 ("Pa%_ren Highlighting"
|
|
1275 ["%_None"
|
|
1276 (customize-set-variable 'paren-mode nil)
|
|
1277 :style radio
|
|
1278 :selected (and (boundp 'paren-mode) (not paren-mode))
|
|
1279 :active (boundp 'paren-mode)]
|
|
1280 ["%_Blinking Paren"
|
|
1281 (customize-set-variable 'paren-mode 'blink-paren)
|
|
1282 :style radio
|
|
1283 :selected (and (boundp 'paren-mode) (eq paren-mode 'blink-paren))
|
|
1284 :active (boundp 'paren-mode)]
|
|
1285 ["%_Steady Paren"
|
|
1286 (customize-set-variable 'paren-mode 'paren)
|
|
1287 :style radio
|
|
1288 :selected (and (boundp 'paren-mode) (eq paren-mode 'paren))
|
|
1289 :active (boundp 'paren-mode)]
|
|
1290 ["%_Expression"
|
|
1291 (customize-set-variable 'paren-mode 'sexp)
|
|
1292 :style radio
|
|
1293 :selected (and (boundp 'paren-mode) (eq paren-mode 'sexp))
|
|
1294 :active (boundp 'paren-mode)]
|
|
1295 ;; ["Nes%_ted Shading"
|
|
1296 ;; (customize-set-variable 'paren-mode 'nested)
|
|
1297 ;; :style radio
|
|
1298 ;; :selected (and (boundp 'paren-mode) (eq paren-mode 'nested))
|
|
1299 ;; :active (boundp 'paren-mode)]
|
|
1300 )
|
|
1301 "------"
|
|
1302 ["%_Line Numbers"
|
|
1303 (progn
|
|
1304 (customize-set-variable 'line-number-mode (not line-number-mode))
|
|
1305 (redraw-modeline))
|
|
1306 :style toggle :selected line-number-mode]
|
|
1307 ["%_Column Numbers"
|
|
1308 (progn
|
|
1309 (customize-set-variable 'column-number-mode
|
|
1310 (not column-number-mode))
|
|
1311 (redraw-modeline))
|
|
1312 :style toggle :selected column-number-mode]
|
454
|
1313
|
442
|
1314 ("\"Other %_Window\" Location"
|
|
1315 ["%_Always in Same Frame"
|
|
1316 (customize-set-variable
|
|
1317 'get-frame-for-buffer-default-instance-limit nil)
|
|
1318 :style radio
|
|
1319 :selected (null get-frame-for-buffer-default-instance-limit)]
|
|
1320 ["Other Frame (%_2 Frames Max)"
|
|
1321 (customize-set-variable 'get-frame-for-buffer-default-instance-limit
|
|
1322 2)
|
|
1323 :style radio
|
|
1324 :selected (eq 2 get-frame-for-buffer-default-instance-limit)]
|
|
1325 ["Other Frame (%_3 Frames Max)"
|
|
1326 (customize-set-variable 'get-frame-for-buffer-default-instance-limit
|
|
1327 3)
|
|
1328 :style radio
|
|
1329 :selected (eq 3 get-frame-for-buffer-default-instance-limit)]
|
|
1330 ["Other Frame (%_4 Frames Max)"
|
|
1331 (customize-set-variable 'get-frame-for-buffer-default-instance-limit
|
|
1332 4)
|
|
1333 :style radio
|
|
1334 :selected (eq 4 get-frame-for-buffer-default-instance-limit)]
|
|
1335 ["Other Frame (%_5 Frames Max)"
|
|
1336 (customize-set-variable 'get-frame-for-buffer-default-instance-limit
|
|
1337 5)
|
|
1338 :style radio
|
|
1339 :selected (eq 5 get-frame-for-buffer-default-instance-limit)]
|
|
1340 ["Always Create %_New Frame"
|
|
1341 (customize-set-variable 'get-frame-for-buffer-default-instance-limit
|
|
1342 0)
|
|
1343 :style radio
|
|
1344 :selected (eq 0 get-frame-for-buffer-default-instance-limit)]
|
|
1345 "-----"
|
|
1346 ["%_Temp Buffers Always in Same Frame"
|
|
1347 (customize-set-variable 'temp-buffer-show-function
|
|
1348 'show-temp-buffer-in-current-frame)
|
|
1349 :style radio
|
|
1350 :selected (eq temp-buffer-show-function
|
|
1351 'show-temp-buffer-in-current-frame)]
|
|
1352 ["Temp Buffers %_Like Other Buffers"
|
|
1353 (customize-set-variable 'temp-buffer-show-function nil)
|
|
1354 :style radio
|
|
1355 :selected (null temp-buffer-show-function)]
|
|
1356 "-----"
|
|
1357 ["%_Make Current Frame Gnuserv Target"
|
|
1358 (customize-set-variable 'gnuserv-frame (if (eq gnuserv-frame t) nil
|
|
1359 t))
|
|
1360 :style toggle
|
|
1361 :selected (and (boundp 'gnuserv-frame) (eq gnuserv-frame t))
|
|
1362 :active (boundp 'gnuserv-frame)]
|
|
1363 )
|
454
|
1364 )
|
442
|
1365 ("%_Menubars"
|
|
1366 ["%_Frame-Local Font Menu"
|
|
1367 (customize-set-variable 'font-menu-this-frame-only-p
|
|
1368 (not font-menu-this-frame-only-p))
|
|
1369 :style toggle
|
|
1370 :selected (and (boundp 'font-menu-this-frame-only-p)
|
|
1371 font-menu-this-frame-only-p)]
|
|
1372 ["%_Alt/Meta Selects Menu Items"
|
|
1373 (if (eq menu-accelerator-enabled 'menu-force)
|
|
1374 (customize-set-variable 'menu-accelerator-enabled nil)
|
|
1375 (customize-set-variable 'menu-accelerator-enabled 'menu-force))
|
|
1376 :style toggle
|
|
1377 :selected (eq menu-accelerator-enabled 'menu-force)]
|
|
1378 "----"
|
|
1379 ["Buffers Menu %_Length..."
|
|
1380 (customize-set-variable
|
|
1381 'buffers-menu-max-size
|
|
1382 ;; would it be better to open a customization buffer ?
|
|
1383 (let ((val
|
|
1384 (read-number
|
|
1385 "Enter number of buffers to display (or 0 for unlimited): ")))
|
|
1386 (if (eq val 0) nil val)))]
|
|
1387 ["%_Multi-Operation Buffers Sub-Menus"
|
|
1388 (customize-set-variable 'complex-buffers-menu-p
|
|
1389 (not complex-buffers-menu-p))
|
|
1390 :style toggle
|
|
1391 :selected complex-buffers-menu-p]
|
|
1392 ["S%_ubmenus for Buffer Groups"
|
|
1393 (customize-set-variable 'buffers-menu-submenus-for-groups-p
|
|
1394 (not buffers-menu-submenus-for-groups-p))
|
|
1395 :style toggle
|
|
1396 :selected buffers-menu-submenus-for-groups-p]
|
|
1397 ["%_Verbose Buffer Menu Entries"
|
|
1398 (if (eq buffers-menu-format-buffer-line-function
|
|
1399 'slow-format-buffers-menu-line)
|
|
1400 (customize-set-variable 'buffers-menu-format-buffer-line-function
|
|
1401 'format-buffers-menu-line)
|
|
1402 (customize-set-variable 'buffers-menu-format-buffer-line-function
|
|
1403 'slow-format-buffers-menu-line))
|
|
1404 :style toggle
|
|
1405 :selected (eq buffers-menu-format-buffer-line-function
|
|
1406 'slow-format-buffers-menu-line)]
|
|
1407 ("Buffers Menu %_Sorting"
|
|
1408 ["%_Most Recently Used"
|
|
1409 (progn
|
|
1410 (customize-set-variable 'buffers-menu-sort-function nil)
|
|
1411 (customize-set-variable 'buffers-menu-grouping-function nil))
|
|
1412 :style radio
|
|
1413 :selected (null buffers-menu-sort-function)]
|
|
1414 ["%_Alphabetically"
|
|
1415 (progn
|
|
1416 (customize-set-variable 'buffers-menu-sort-function
|
|
1417 'sort-buffers-menu-alphabetically)
|
|
1418 (customize-set-variable 'buffers-menu-grouping-function nil))
|
|
1419 :style radio
|
|
1420 :selected (eq 'sort-buffers-menu-alphabetically
|
|
1421 buffers-menu-sort-function)]
|
|
1422 ["%_By Major Mode, Then Alphabetically"
|
|
1423 (progn
|
|
1424 (customize-set-variable
|
|
1425 'buffers-menu-sort-function
|
|
1426 'sort-buffers-menu-by-mode-then-alphabetically)
|
|
1427 (customize-set-variable
|
|
1428 'buffers-menu-grouping-function
|
|
1429 'group-buffers-menu-by-mode-then-alphabetically))
|
|
1430 :style radio
|
|
1431 :selected (eq 'sort-buffers-menu-by-mode-then-alphabetically
|
|
1432 buffers-menu-sort-function)])
|
|
1433 "---"
|
|
1434 ["%_Ignore Scaled Fonts"
|
|
1435 (customize-set-variable 'font-menu-ignore-scaled-fonts
|
|
1436 (not font-menu-ignore-scaled-fonts))
|
|
1437 :style toggle
|
|
1438 :selected (and (boundp 'font-menu-ignore-scaled-fonts)
|
|
1439 font-menu-ignore-scaled-fonts)]
|
|
1440 )
|
|
1441 ("S%_yntax Highlighting"
|
|
1442 ["%_In This Buffer"
|
|
1443 (progn;; becomes buffer local
|
428
|
1444 (font-lock-mode)
|
|
1445 (customize-set-variable 'font-lock-mode font-lock-mode))
|
|
1446 :style toggle
|
|
1447 :selected (and (boundp 'font-lock-mode) font-lock-mode)
|
|
1448 :active (boundp 'font-lock-mode)]
|
442
|
1449 ["%_Automatic"
|
428
|
1450 (customize-set-variable 'font-lock-auto-fontify
|
|
1451 (not font-lock-auto-fontify))
|
|
1452 :style toggle
|
|
1453 :selected (and (boundp 'font-lock-auto-fontify) font-lock-auto-fontify)
|
|
1454 :active (fboundp 'font-lock-mode)]
|
|
1455 "-----"
|
442
|
1456 ["Force %_Rehighlight in this Buffer"
|
|
1457 (customize-set-variable 'font-lock-auto-fontify
|
|
1458 (not font-lock-auto-fontify))
|
|
1459 :style toggle
|
|
1460 :selected (and (boundp 'font-lock-auto-fontify) font-lock-auto-fontify)
|
|
1461 :active (fboundp 'font-lock-mode)]
|
|
1462 "-----"
|
|
1463 ["%_Fonts"
|
428
|
1464 (progn
|
|
1465 (require 'font-lock)
|
|
1466 (font-lock-use-default-fonts)
|
|
1467 (customize-set-variable 'font-lock-use-fonts t)
|
|
1468 (customize-set-variable 'font-lock-use-colors nil)
|
|
1469 (font-lock-mode 1))
|
|
1470 :style radio
|
|
1471 :selected (and (boundp 'font-lock-use-fonts) font-lock-use-fonts)
|
|
1472 :active (fboundp 'font-lock-mode)]
|
442
|
1473 ["%_Colors"
|
428
|
1474 (progn
|
|
1475 (require 'font-lock)
|
|
1476 (font-lock-use-default-colors)
|
|
1477 (customize-set-variable 'font-lock-use-colors t)
|
|
1478 (customize-set-variable 'font-lock-use-fonts nil)
|
|
1479 (font-lock-mode 1))
|
|
1480 :style radio
|
|
1481 :selected (and (boundp 'font-lock-use-colors) font-lock-use-colors)
|
|
1482 :active (boundp 'font-lock-mode)]
|
|
1483 "-----"
|
442
|
1484 ["%_1 Least"
|
428
|
1485 (progn
|
|
1486 (require 'font-lock)
|
|
1487 (if (or (and (not (integerp font-lock-maximum-decoration))
|
|
1488 (not (eq t font-lock-maximum-decoration)))
|
|
1489 (and (integerp font-lock-maximum-decoration)
|
|
1490 (<= font-lock-maximum-decoration 0)))
|
|
1491 nil
|
|
1492 (customize-set-variable 'font-lock-maximum-decoration nil)
|
|
1493 (font-lock-recompute-variables)))
|
|
1494 :style radio
|
|
1495 :active (fboundp 'font-lock-mode)
|
442
|
1496 :selected (and (boundp 'font-lock-maximum-decoration)
|
428
|
1497 (or (and (not (integerp font-lock-maximum-decoration))
|
|
1498 (not (eq t font-lock-maximum-decoration)))
|
|
1499 (and (integerp font-lock-maximum-decoration)
|
|
1500 (<= font-lock-maximum-decoration 0))))]
|
442
|
1501 ["%_2 More"
|
428
|
1502 (progn
|
|
1503 (require 'font-lock)
|
|
1504 (if (and (integerp font-lock-maximum-decoration)
|
|
1505 (= 1 font-lock-maximum-decoration))
|
|
1506 nil
|
|
1507 (customize-set-variable 'font-lock-maximum-decoration 1)
|
|
1508 (font-lock-recompute-variables)))
|
|
1509 :style radio
|
|
1510 :active (fboundp 'font-lock-mode)
|
442
|
1511 :selected (and (boundp 'font-lock-maximum-decoration)
|
428
|
1512 (integerp font-lock-maximum-decoration)
|
|
1513 (= 1 font-lock-maximum-decoration))]
|
442
|
1514 ["%_3 Even More"
|
428
|
1515 (progn
|
|
1516 (require 'font-lock)
|
|
1517 (if (and (integerp font-lock-maximum-decoration)
|
|
1518 (= 2 font-lock-maximum-decoration))
|
|
1519 nil
|
|
1520 (customize-set-variable 'font-lock-maximum-decoration 2)
|
|
1521 (font-lock-recompute-variables)))
|
|
1522 :style radio
|
|
1523 :active (fboundp 'font-lock-mode)
|
|
1524 :selected (and (boundp 'font-lock-maximum-decoration)
|
|
1525 (integerp font-lock-maximum-decoration)
|
|
1526 (= 2 font-lock-maximum-decoration))]
|
442
|
1527 ["%_4 Most"
|
428
|
1528 (progn
|
|
1529 (require 'font-lock)
|
|
1530 (if (or (eq font-lock-maximum-decoration t)
|
|
1531 (and (integerp font-lock-maximum-decoration)
|
|
1532 (>= font-lock-maximum-decoration 3)))
|
|
1533 nil
|
|
1534 (customize-set-variable 'font-lock-maximum-decoration t)
|
|
1535 (font-lock-recompute-variables)))
|
|
1536 :style radio
|
|
1537 :active (fboundp 'font-lock-mode)
|
|
1538 :selected (and (boundp 'font-lock-maximum-decoration)
|
|
1539 (or (eq font-lock-maximum-decoration t)
|
|
1540 (and (integerp font-lock-maximum-decoration)
|
|
1541 (>= font-lock-maximum-decoration 3))))]
|
|
1542 "-----"
|
442
|
1543 ["Lazy %_Lock"
|
|
1544 (progn;; becomes buffer local
|
|
1545 (lazy-lock-mode)
|
|
1546 (customize-set-variable 'lazy-lock-mode lazy-lock-mode)
|
|
1547 ;; this shouldn't be necessary so there has to
|
|
1548 ;; be a redisplay bug lurking somewhere (or
|
|
1549 ;; possibly another event handler bug)
|
|
1550 (redraw-modeline))
|
|
1551 :active (and (boundp 'font-lock-mode) (boundp 'lazy-lock-mode)
|
|
1552 font-lock-mode)
|
|
1553 :style toggle
|
|
1554 :selected (and (boundp 'lazy-lock-mode) lazy-lock-mode)]
|
|
1555 ["Lazy %_Shot"
|
|
1556 (progn;; becomes buffer local
|
428
|
1557 (lazy-shot-mode)
|
|
1558 (customize-set-variable 'lazy-shot-mode lazy-shot-mode)
|
|
1559 ;; this shouldn't be necessary so there has to
|
|
1560 ;; be a redisplay bug lurking somewhere (or
|
|
1561 ;; possibly another event handler bug)
|
|
1562 (redraw-modeline))
|
|
1563 :active (and (boundp 'font-lock-mode) (boundp 'lazy-shot-mode)
|
|
1564 font-lock-mode)
|
|
1565 :style toggle
|
|
1566 :selected (and (boundp 'lazy-shot-mode) lazy-shot-mode)]
|
442
|
1567 ["Cac%_hing"
|
|
1568 (progn;; becomes buffer local
|
428
|
1569 (fast-lock-mode)
|
|
1570 (customize-set-variable 'fast-lock-mode fast-lock-mode)
|
|
1571 ;; this shouldn't be necessary so there has to
|
|
1572 ;; be a redisplay bug lurking somewhere (or
|
|
1573 ;; possibly another event handler bug)
|
|
1574 (redraw-modeline))
|
|
1575 :active (and (boundp 'font-lock-mode) (boundp 'fast-lock-mode)
|
|
1576 font-lock-mode)
|
|
1577 :style toggle
|
|
1578 :selected (and (boundp 'fast-lock-mode) fast-lock-mode)]
|
|
1579 )
|
442
|
1580 ("%_Font" :filter font-menu-family-constructor)
|
|
1581 ("Font Si%_ze" :filter font-menu-size-constructor)
|
|
1582 ;; ("Font Weig%_ht" :filter font-menu-weight-constructor)
|
|
1583 ["Edit Fa%_ces..." (customize-face nil)]
|
428
|
1584 "-----"
|
442
|
1585 ["Edit I%_nit File"
|
|
1586 ;; #### there should be something that holds the name that the init
|
|
1587 ;; file should be created as, when it's not present.
|
502
|
1588 (let ((el-file (or user-init-file "~/.xemacs/init.el")))
|
|
1589 (if (string-match "\\.elc$" el-file)
|
|
1590 (setq el-file
|
|
1591 (substring user-init-file 0 (1- (length el-file)))))
|
|
1592 (find-file el-file)
|
|
1593 (or (eq major-mode 'emacs-lisp-mode)
|
|
1594 (emacs-lisp-mode)))]
|
442
|
1595 ["%_Save Options to Init File" customize-save-customized]
|
|
1596 )
|
|
1597
|
|
1598 ("%_Buffers"
|
|
1599 :filter buffers-menu-filter
|
|
1600 ["Go To %_Previous Buffer" switch-to-other-buffer]
|
|
1601 ["Go To %_Buffer..." switch-to-buffer]
|
|
1602 "----"
|
792
|
1603 ["%_List All Buffers" list-all-buffers]
|
442
|
1604 ["%_Delete Buffer" kill-this-buffer
|
|
1605 :suffix (if put-buffer-names-in-file-menu (buffer-name) "")]
|
|
1606 "----"
|
428
|
1607 )
|
|
1608
|
442
|
1609 nil ; the partition: menus after this are flushright
|
428
|
1610
|
442
|
1611 ("%_Help"
|
|
1612 ["%_About XEmacs..." about-xemacs]
|
502
|
1613 ["%_Home Page (www.xemacs.org)" xemacs-www-page
|
|
1614 :active (fboundp 'browse-url)]
|
479
|
1615 ["What's %_New in XEmacs" view-emacs-news]
|
428
|
1616 "-----"
|
442
|
1617 ("%_Info (Online Docs)"
|
502
|
1618 ["Info Con%_tents" (Info-goto-node "(dir)")]
|
|
1619 "-----"
|
|
1620 ["XEmacs %_User's Manual" (Info-goto-node "(XEmacs)")]
|
|
1621 ["XEmacs %_Lisp Reference Manual" (Info-goto-node "(Lispref)")]
|
|
1622 ["All About %_Packages" (Info-goto-node "(xemacs)Packages")]
|
|
1623 ["%_Getting Started with XEmacs" (Info-goto-node "(New-Users-Guide)")]
|
|
1624 ["XEmacs In%_ternals Manual" (Info-goto-node "(Internals)")]
|
|
1625 ["%_How to Use Info" (Info-goto-node "(Info)")]
|
|
1626 "-----"
|
|
1627 ["Lookup %_Key Sequence in User's Manual..."
|
|
1628 Info-goto-emacs-key-command-node]
|
|
1629 ["Lookup %_Command in User's Manual..." Info-goto-emacs-command-node]
|
|
1630 ["Lookup %_Function in Lisp Reference..." Info-elisp-ref]
|
|
1631 "-----"
|
|
1632 ["Search %_Index in User's Manual/Lispref..."
|
|
1633 Info-search-index-in-xemacs-and-lispref]
|
|
1634 ["%_Search Text in User's Manual..." Info-search-text-in-xemacs]
|
|
1635 ["S%_earch Text in Lisp Reference..."
|
|
1636 Info-search-text-in-lispref]
|
|
1637 )
|
442
|
1638 ("XEmacs %_FAQ"
|
|
1639 ["%_FAQ (local)" xemacs-local-faq]
|
|
1640 ["FAQ via %_WWW" xemacs-www-faq
|
|
1641 :active (fboundp 'browse-url)])
|
|
1642 ("%_Tutorials"
|
|
1643 :filter tutorials-menu-filter)
|
|
1644 ("%_Samples"
|
502
|
1645 ["View Sample %_init.el" view-sample-init-el
|
462
|
1646 :active (locate-data-file "sample.init.el")]
|
502
|
1647 ["View Sample .%_gtkrc"
|
|
1648 (Help-find-file (locate-data-file "sample.gtkrc"))
|
462
|
1649 :included (featurep 'gtk)
|
|
1650 :active (locate-data-file "sample.gtkrc")]
|
502
|
1651 ["View Sample .%_Xdefaults"
|
|
1652 (Help-find-file (locate-data-file "sample.Xdefaults"))
|
462
|
1653 :included (featurep 'x)
|
442
|
1654 :active (locate-data-file "sample.Xdefaults")]
|
502
|
1655 ["View Sample %_enriched.doc"
|
|
1656 (Help-find-file (locate-data-file "enriched.doc"))
|
442
|
1657 :active (locate-data-file "enriched.doc")])
|
502
|
1658 ("%_Commands, Variables, Keys"
|
|
1659 ["Describe %_Mode" describe-mode]
|
442
|
1660 ["%_Apropos..." hyper-apropos]
|
502
|
1661 ["%_Command-Only Apropos..." command-hyper-apropos]
|
442
|
1662 ["Apropos %_Docs..." apropos-documentation]
|
428
|
1663 "-----"
|
502
|
1664 ["Describe %_Key..." describe-key]
|
|
1665 ["Show %_Bindings" describe-bindings]
|
|
1666 ["Show M%_ouse Bindings" describe-pointer]
|
428
|
1667 "-----"
|
502
|
1668 ["Describe %_Function..." describe-function]
|
|
1669 ["Describe %_Variable..." describe-variable]
|
|
1670 ["%_Locate Command in Keymap..." where-is])
|
771
|
1671 ,@(when (featurep 'mule)
|
|
1672 '(("Internationa%_l"
|
|
1673 ("Describe %_Language Support"
|
|
1674 :filter
|
|
1675 (lambda (menu)
|
|
1676 (menu-split-long-menu
|
|
1677 (menu-sort-menu
|
|
1678 (mapcar #'(lambda (entry)
|
|
1679 `[ ,(car entry)
|
|
1680 (describe-language-environment
|
|
1681 ',(car entry))
|
|
1682 :style radio
|
|
1683 :selected
|
|
1684 ,(equal (car entry)
|
|
1685 current-language-environment)])
|
|
1686 language-info-alist)
|
|
1687 ))))
|
|
1688 ["Describe %_Input Method" describe-input-method]
|
|
1689 ["Describe Current %_Coding Systems"
|
|
1690 describe-current-coding-system]
|
|
1691 ["Show Character %_Table" view-charset-by-menu]
|
|
1692 ;; not implemented yet
|
|
1693 ["Show %_Diagnosis for MULE" mule-diag :active nil]
|
|
1694 ["Show \"%_hello\" in Many Languages" view-hello-file]
|
|
1695 )))
|
793
|
1696 ("%_Other"
|
442
|
1697 ["%_Current Installation Info" describe-installation
|
428
|
1698 :active (boundp 'Installation-string)]
|
442
|
1699 ["%_No Warranty" describe-no-warranty]
|
|
1700 ["XEmacs %_License" describe-copying]
|
|
1701 ["Find %_Packages" finder-by-keyword]
|
|
1702 ["View %_Splash Screen" xemacs-splash-buffer]
|
|
1703 ["%_Unix Manual..." manual-entry])
|
502
|
1704 "-----"
|
793
|
1705 ["Recent %_Messages" (view-lossage t)]
|
|
1706 ["Recent %_Keystrokes" view-lossage]
|
|
1707 ["Recent %_Warnings" view-warnings]
|
644
|
1708 ["Send %_Bug Report..." report-xemacs-bug
|
|
1709 :active (fboundp 'report-xemacs-bug)])))
|
428
|
1710
|
|
1711
|
771
|
1712 (defun init-menubar-at-startup ()
|
428
|
1713 "Don't call this.
|
|
1714 Adds `Load .emacs' button to menubar when starting up with -q."
|
442
|
1715 (when (and (not load-user-init-file-p)
|
|
1716 (file-exists-p (expand-file-name ".emacs" "~")))
|
|
1717 (add-menu-button
|
|
1718 nil
|
|
1719 ["%_Load .emacs"
|
|
1720 (progn
|
|
1721 (mapc #'(lambda (buf)
|
|
1722 (with-current-buffer buf
|
|
1723 (delete-menu-item '("Load .emacs"))))
|
|
1724 (buffer-list))
|
|
1725 (load-user-init-file))
|
|
1726 ]
|
|
1727 "Help")))
|
428
|
1728
|
|
1729
|
|
1730 ;;; The File menu
|
|
1731
|
|
1732 (defvar put-buffer-names-in-file-menu t)
|
|
1733
|
|
1734 ;;; The Buffers menu
|
|
1735
|
|
1736 (defgroup buffers-menu nil
|
|
1737 "Customization of `Buffers' menu."
|
|
1738 :group 'menu)
|
|
1739
|
442
|
1740 (defvar buffers-menu-omit-chars-list '(?b ?p ?l ?d))
|
|
1741
|
428
|
1742 (defcustom buffers-menu-max-size 25
|
|
1743 "*Maximum number of entries which may appear on the \"Buffers\" menu.
|
|
1744 If this is 10, then only the ten most-recently-selected buffers will be
|
|
1745 shown. If this is nil, then all buffers will be shown. Setting this to
|
|
1746 a large number or nil will slow down menu responsiveness."
|
|
1747 :type '(choice (const :tag "Show all" nil)
|
|
1748 (integer 10))
|
|
1749 :group 'buffers-menu)
|
|
1750
|
|
1751 (defcustom complex-buffers-menu-p nil
|
|
1752 "*If non-nil, the buffers menu will contain several commands.
|
|
1753 Commands will be presented as submenus of each buffer line. If this
|
|
1754 is false, then there will be only one command: select that buffer."
|
|
1755 :type 'boolean
|
|
1756 :group 'buffers-menu)
|
|
1757
|
|
1758 (defcustom buffers-menu-submenus-for-groups-p nil
|
|
1759 "*If non-nil, the buffers menu will contain one submenu per group of buffers.
|
|
1760 The grouping function is specified in `buffers-menu-grouping-function'.
|
|
1761 If this is an integer, do not build submenus if the number of buffers
|
|
1762 is not larger than this value."
|
|
1763 :type '(choice (const :tag "No Subgroups" nil)
|
|
1764 (integer :tag "Max. submenus" 10)
|
|
1765 (sexp :format "%t\n" :tag "Allow Subgroups" :value t))
|
|
1766 :group 'buffers-menu)
|
|
1767
|
|
1768 (defcustom buffers-menu-switch-to-buffer-function 'switch-to-buffer
|
|
1769 "*The function to call to select a buffer from the buffers menu.
|
|
1770 `switch-to-buffer' is a good choice, as is `pop-to-buffer'."
|
|
1771 :type '(radio (function-item switch-to-buffer)
|
|
1772 (function-item pop-to-buffer)
|
|
1773 (function :tag "Other"))
|
|
1774 :group 'buffers-menu)
|
|
1775
|
|
1776 (defcustom buffers-menu-omit-function 'buffers-menu-omit-invisible-buffers
|
|
1777 "*If non-nil, a function specifying the buffers to omit from the buffers menu.
|
|
1778 This is passed a buffer and should return non-nil if the buffer should be
|
|
1779 omitted. The default value `buffers-menu-omit-invisible-buffers' omits
|
|
1780 buffers that are normally considered \"invisible\" (those whose name
|
|
1781 begins with a space)."
|
|
1782 :type '(choice (const :tag "None" nil)
|
|
1783 function)
|
|
1784 :group 'buffers-menu)
|
|
1785
|
|
1786 (defcustom buffers-menu-format-buffer-line-function 'format-buffers-menu-line
|
442
|
1787 "*The function to call to return a string to represent a buffer in
|
|
1788 the buffers menu. The function is passed a buffer and a number
|
|
1789 (starting with 1) indicating which buffer line in the menu is being
|
|
1790 processed and should return a string containing an accelerator
|
|
1791 spec. (Check out `menu-item-generate-accelerator-spec' as a convenient
|
|
1792 way of generating the accelerator specs.) The default value
|
|
1793 `format-buffers-menu-line' just returns the name of the buffer and
|
|
1794 uses the number as the accelerator. Also check out
|
|
1795 `slow-format-buffers-menu-line' which returns a whole bunch of info
|
|
1796 about a buffer.
|
|
1797
|
|
1798 Note: Gross Compatibility Hack: Older versions of this function prototype
|
|
1799 only expected one argument, not two. We deal gracefully with such
|
|
1800 functions by simply calling them with one argument and leaving out the
|
|
1801 line number. However, this may go away at any time, so make sure to
|
|
1802 update all of your functions of this type."
|
428
|
1803 :type 'function
|
|
1804 :group 'buffers-menu)
|
|
1805
|
|
1806 (defcustom buffers-menu-sort-function
|
|
1807 'sort-buffers-menu-by-mode-then-alphabetically
|
|
1808 "*If non-nil, a function to sort the list of buffers in the buffers menu.
|
|
1809 It will be passed two arguments (two buffers to compare) and should return
|
|
1810 t if the first is \"less\" than the second. One possible value is
|
|
1811 `sort-buffers-menu-alphabetically'; another is
|
|
1812 `sort-buffers-menu-by-mode-then-alphabetically'."
|
|
1813 :type '(choice (const :tag "None" nil)
|
|
1814 function)
|
|
1815 :group 'buffers-menu)
|
|
1816
|
|
1817 (defcustom buffers-menu-grouping-function
|
|
1818 'group-buffers-menu-by-mode-then-alphabetically
|
|
1819 "*If non-nil, a function to group buffers in the buffers menu together.
|
|
1820 It will be passed two arguments, successive members of the sorted buffers
|
|
1821 list after being passed through `buffers-menu-sort-function'. It should
|
|
1822 return non-nil if the second buffer begins a new group. The return value
|
|
1823 should be the name of the old group, which may be used in hierarchical
|
|
1824 buffers menus. The last invocation of the function contains nil as the
|
|
1825 second argument, so that the name of the last group can be determined.
|
|
1826
|
|
1827 The sensible values of this function are dependent on the value specified
|
|
1828 for `buffers-menu-sort-function'."
|
|
1829 :type '(choice (const :tag "None" nil)
|
|
1830 function)
|
|
1831 :group 'buffers-menu)
|
|
1832
|
792
|
1833 (defcustom list-all-buffers-function 'list-buffers
|
|
1834 "*Function that `list-all-buffers' calls."
|
|
1835 :type '(choice (const list-buffers)
|
|
1836 (const ibuffer)
|
|
1837 (const ibuffer-other-window)
|
|
1838 function)
|
|
1839 :group 'buffers-menu)
|
|
1840
|
428
|
1841 (defun sort-buffers-menu-alphabetically (buf1 buf2)
|
|
1842 "For use as a value of `buffers-menu-sort-function'.
|
|
1843 Sorts the buffers in alphabetical order by name, but puts buffers beginning
|
|
1844 with a star at the end of the list."
|
|
1845 (let* ((nam1 (buffer-name buf1))
|
|
1846 (nam2 (buffer-name buf2))
|
438
|
1847 (inv1p (not (null (string-match "\\` " nam1))))
|
|
1848 (inv2p (not (null (string-match "\\` " nam2))))
|
428
|
1849 (star1p (not (null (string-match "\\`*" nam1))))
|
|
1850 (star2p (not (null (string-match "\\`*" nam2)))))
|
438
|
1851 (cond ((not (eq inv1p inv2p))
|
|
1852 (not inv1p))
|
|
1853 ((not (eq star1p star2p))
|
|
1854 (not star1p))
|
|
1855 (t
|
|
1856 (string-lessp nam1 nam2)))))
|
428
|
1857
|
|
1858 (defun sort-buffers-menu-by-mode-then-alphabetically (buf1 buf2)
|
|
1859 "For use as a value of `buffers-menu-sort-function'.
|
|
1860 Sorts first by major mode and then alphabetically by name, but puts buffers
|
|
1861 beginning with a star at the end of the list."
|
|
1862 (let* ((nam1 (buffer-name buf1))
|
|
1863 (nam2 (buffer-name buf2))
|
438
|
1864 (inv1p (not (null (string-match "\\` " nam1))))
|
|
1865 (inv2p (not (null (string-match "\\` " nam2))))
|
428
|
1866 (star1p (not (null (string-match "\\`*" nam1))))
|
|
1867 (star2p (not (null (string-match "\\`*" nam2))))
|
|
1868 (mode1 (symbol-value-in-buffer 'major-mode buf1))
|
|
1869 (mode2 (symbol-value-in-buffer 'major-mode buf2)))
|
438
|
1870 (cond ((not (eq inv1p inv2p))
|
|
1871 (not inv1p))
|
|
1872 ((not (eq star1p star2p))
|
|
1873 (not star1p))
|
428
|
1874 ((and star1p star2p (string-lessp nam1 nam2)))
|
438
|
1875 ((string-lessp mode1 mode2)
|
|
1876 t)
|
|
1877 ((string-lessp mode2 mode1)
|
|
1878 nil)
|
|
1879 (t
|
|
1880 (string-lessp nam1 nam2)))))
|
428
|
1881
|
|
1882 ;; this version is too slow on some machines.
|
442
|
1883 ;; (vintage 1990, that is)
|
|
1884 (defun slow-format-buffers-menu-line (buffer n)
|
428
|
1885 "For use as a value of `buffers-menu-format-buffer-line-function'.
|
|
1886 This returns a string containing a bunch of info about the buffer."
|
442
|
1887 (concat (menu-item-generate-accelerator-spec n buffers-menu-omit-chars-list)
|
|
1888 (format "%s%s %-19s %6s %-15s %s"
|
|
1889 (if (buffer-modified-p buffer) "*" " ")
|
|
1890 (if (symbol-value-in-buffer 'buffer-read-only buffer)
|
|
1891 "%" " ")
|
|
1892 (buffer-name buffer)
|
|
1893 (buffer-size buffer)
|
|
1894 (symbol-value-in-buffer 'mode-name buffer)
|
|
1895 (or (buffer-file-name buffer) ""))))
|
428
|
1896
|
442
|
1897 (defun format-buffers-menu-line (buffer n)
|
428
|
1898 "For use as a value of `buffers-menu-format-buffer-line-function'.
|
|
1899 This just returns the buffer's name."
|
442
|
1900 (concat (menu-item-generate-accelerator-spec n buffers-menu-omit-chars-list)
|
|
1901 (buffer-name buffer)))
|
428
|
1902
|
|
1903 (defun group-buffers-menu-by-mode-then-alphabetically (buf1 buf2)
|
|
1904 "For use as a value of `buffers-menu-grouping-function'.
|
|
1905 This groups buffers by major mode. It only really makes sense if
|
|
1906 `buffers-menu-sorting-function' is
|
|
1907 `sort-buffers-menu-by-mode-then-alphabetically'."
|
|
1908 (cond ((string-match "\\`*" (buffer-name buf1))
|
|
1909 (and (null buf2) "*Misc*"))
|
|
1910 ((or (null buf2)
|
|
1911 (string-match "\\`*" (buffer-name buf2))
|
|
1912 (not (eq (symbol-value-in-buffer 'major-mode buf1)
|
|
1913 (symbol-value-in-buffer 'major-mode buf2))))
|
|
1914 (symbol-value-in-buffer 'mode-name buf1))
|
|
1915 (t nil)))
|
|
1916
|
|
1917 (defun buffer-menu-save-buffer (buffer)
|
|
1918 (save-excursion
|
|
1919 (set-buffer buffer)
|
|
1920 (save-buffer)))
|
|
1921
|
|
1922 (defun buffer-menu-write-file (buffer)
|
|
1923 (save-excursion
|
|
1924 (set-buffer buffer)
|
|
1925 (write-file (read-file-name
|
|
1926 (format "Write %s to file: "
|
|
1927 (buffer-name (current-buffer)))))))
|
|
1928
|
|
1929 (defsubst build-buffers-menu-internal (buffers)
|
442
|
1930 (let (name line (n 0))
|
428
|
1931 (mapcar
|
|
1932 #'(lambda (buffer)
|
|
1933 (if (eq buffer t)
|
|
1934 "---"
|
442
|
1935 (setq n (1+ n))
|
|
1936 (setq line
|
|
1937 ; #### a truly Kyle-friendly hack.
|
|
1938 (let ((fn buffers-menu-format-buffer-line-function))
|
|
1939 (if (= (function-max-args fn) 1)
|
|
1940 (funcall fn buffer)
|
|
1941 (funcall fn buffer n))))
|
428
|
1942 (if complex-buffers-menu-p
|
|
1943 (delq nil
|
|
1944 (list line
|
442
|
1945 (vector "S%_witch to Buffer"
|
428
|
1946 (list buffers-menu-switch-to-buffer-function
|
|
1947 (setq name (buffer-name buffer)))
|
|
1948 t)
|
|
1949 (if (eq buffers-menu-switch-to-buffer-function
|
|
1950 'switch-to-buffer)
|
442
|
1951 (vector "Switch to Buffer, Other %_Frame"
|
428
|
1952 (list 'switch-to-buffer-other-frame
|
|
1953 (setq name (buffer-name buffer)))
|
|
1954 t)
|
|
1955 nil)
|
|
1956 (if (and (buffer-modified-p buffer)
|
|
1957 (buffer-file-name buffer))
|
442
|
1958 (vector "%_Save Buffer"
|
428
|
1959 (list 'buffer-menu-save-buffer name) t)
|
442
|
1960 ["%_Save Buffer" nil nil]
|
428
|
1961 )
|
442
|
1962 (vector "Save %_As..."
|
428
|
1963 (list 'buffer-menu-write-file name) t)
|
442
|
1964 (vector "%_Delete Buffer" (list 'kill-buffer name)
|
428
|
1965 t)))
|
440
|
1966 ;; #### We don't want buffer names to be translated,
|
|
1967 ;; #### so we put the buffer name in the suffix.
|
|
1968 ;; #### Also, avoid losing with non-ASCII buffer names.
|
|
1969 ;; #### We still lose, however, if complex-buffers-menu-p. --mrb
|
428
|
1970 (vector ""
|
|
1971 (list buffers-menu-switch-to-buffer-function
|
|
1972 (buffer-name buffer))
|
|
1973 t line))))
|
|
1974 buffers)))
|
|
1975
|
|
1976 (defun buffers-menu-filter (menu)
|
|
1977 "This is the menu filter for the top-level buffers \"Buffers\" menu.
|
|
1978 It dynamically creates a list of buffers to use as the contents of the menu.
|
|
1979 Only the most-recently-used few buffers will be listed on the menu, for
|
|
1980 efficiency reasons. You can control how many buffers will be shown by
|
|
1981 setting `buffers-menu-max-size'. You can control the text of the menu
|
|
1982 items by redefining the function `format-buffers-menu-line'."
|
|
1983 (let ((buffers (delete-if buffers-menu-omit-function (buffer-list))))
|
|
1984 (and (integerp buffers-menu-max-size)
|
|
1985 (> buffers-menu-max-size 1)
|
|
1986 (> (length buffers) buffers-menu-max-size)
|
|
1987 ;; shorten list of buffers (not with submenus!)
|
|
1988 (not (and buffers-menu-grouping-function
|
|
1989 buffers-menu-submenus-for-groups-p))
|
|
1990 (setcdr (nthcdr buffers-menu-max-size buffers) nil))
|
|
1991 (if buffers-menu-sort-function
|
|
1992 (setq buffers (sort buffers buffers-menu-sort-function)))
|
|
1993 (if (and buffers-menu-grouping-function
|
|
1994 buffers-menu-submenus-for-groups-p
|
|
1995 (or (not (integerp buffers-menu-submenus-for-groups-p))
|
|
1996 (> (length buffers) buffers-menu-submenus-for-groups-p)))
|
|
1997 (let (groups groupnames current-group)
|
|
1998 (mapl
|
|
1999 #'(lambda (sublist)
|
|
2000 (let ((groupname (funcall buffers-menu-grouping-function
|
|
2001 (car sublist) (cadr sublist))))
|
|
2002 (setq current-group (cons (car sublist) current-group))
|
|
2003 (if groupname
|
|
2004 (progn
|
|
2005 (setq groups (cons (nreverse current-group)
|
|
2006 groups))
|
|
2007 (setq groupnames (cons groupname groupnames))
|
|
2008 (setq current-group nil)))))
|
|
2009 buffers)
|
|
2010 (setq buffers
|
|
2011 (mapcar*
|
|
2012 #'(lambda (groupname group)
|
|
2013 (cons groupname (build-buffers-menu-internal group)))
|
|
2014 (nreverse groupnames)
|
|
2015 (nreverse groups))))
|
|
2016 (if buffers-menu-grouping-function
|
|
2017 (progn
|
|
2018 (setq buffers
|
|
2019 (mapcon
|
|
2020 #'(lambda (sublist)
|
|
2021 (cond ((funcall buffers-menu-grouping-function
|
|
2022 (car sublist) (cadr sublist))
|
|
2023 (list (car sublist) t))
|
|
2024 (t (list (car sublist)))))
|
|
2025 buffers))
|
|
2026 ;; remove a trailing separator.
|
|
2027 (and (>= (length buffers) 2)
|
|
2028 (let ((lastcdr (nthcdr (- (length buffers) 2) buffers)))
|
|
2029 (if (eq t (cadr lastcdr))
|
|
2030 (setcdr lastcdr nil))))))
|
|
2031 (setq buffers (build-buffers-menu-internal buffers)))
|
|
2032 (append menu buffers)
|
|
2033 ))
|
|
2034
|
792
|
2035 (defun list-all-buffers ()
|
|
2036 "Display a list of buffers. Calls `list-all-buffers-function'."
|
|
2037 (interactive)
|
|
2038 (funcall (if (fboundp list-all-buffers-function)
|
|
2039 list-all-buffers-function
|
|
2040 'list-buffers)))
|
|
2041
|
428
|
2042
|
|
2043 ;;; The Options menu
|
|
2044
|
|
2045 ;; We'll keep those variables here for a while, in order to provide a
|
|
2046 ;; function for porting the old options file that a user may own to Custom.
|
|
2047
|
|
2048 (defvar options-save-faces nil
|
|
2049 "*Non-nil value means save-options will save information about faces.
|
|
2050 A nil value means save-options will not save face information.
|
|
2051 Set this non-nil only if you use M-x edit-faces to change face
|
|
2052 settings. If you use M-x customize-face or the \"Browse Faces...\"
|
|
2053 menu entry, you will see a button in the Customize Face buffer that you
|
|
2054 can use to permanently save your face changes.
|
|
2055
|
|
2056 M-x edit-faces is deprecated. Support for it and this variable will
|
|
2057 be discontinued in a future release.")
|
|
2058
|
|
2059 (defvar save-options-init-file nil
|
|
2060 "File into which to save forms to load the options file (nil for .emacs).
|
|
2061 Normally this is nil, which means save into your .emacs file (the value
|
|
2062 of `user-init-file'.")
|
|
2063
|
|
2064 (defvar save-options-file ".xemacs-options"
|
|
2065 "File to save options into.
|
|
2066 This file is loaded from your .emacs file.
|
|
2067 If this is a relative filename, it is put into the same directory as your
|
|
2068 .emacs file.")
|
|
2069
|
|
2070
|
|
2071
|
|
2072 ;;; The Help menu
|
|
2073
|
442
|
2074 (defun tutorials-menu-filter (menu-items)
|
|
2075 (declare (special language-info-alist
|
|
2076 current-language-environment
|
|
2077 tutorial-supported-languages))
|
|
2078 (append
|
|
2079 (if (featurep 'mule)
|
|
2080 (if (assq 'tutorial
|
|
2081 (assoc current-language-environment language-info-alist))
|
|
2082 `([,(concat "%_Default (" current-language-environment ")")
|
|
2083 help-with-tutorial]))
|
|
2084 '(["%_English" help-with-tutorial]))
|
|
2085 (submenu-generate-accelerator-spec
|
|
2086 (if (featurep 'mule)
|
|
2087 ;; Mule tutorials.
|
|
2088 (mapcan #'(lambda (lang)
|
|
2089 (let ((tut (assq 'tutorial lang)))
|
|
2090 (and tut
|
|
2091 (not (string= (car lang) "ASCII"))
|
|
2092 ;; skip current language, since we already
|
|
2093 ;; included it first
|
|
2094 (not (string= (car lang)
|
|
2095 current-language-environment))
|
|
2096 `([,(car lang)
|
771
|
2097 (help-with-tutorial nil ,(car lang))]))))
|
442
|
2098 language-info-alist)
|
|
2099 ;; Non mule tutorials.
|
|
2100 (mapcar #'(lambda (lang)
|
|
2101 `[,(car lang)
|
771
|
2102 (help-with-tutorial nil ,(car lang))])
|
442
|
2103 tutorial-supported-languages)))))
|
428
|
2104
|
|
2105 (set-menubar default-menubar)
|
|
2106
|
814
|
2107 (when (featurep 'menubar-items)
|
|
2108 (loop for buf being the buffers do
|
|
2109 (or (eq default-menubar (symbol-value-in-buffer 'current-menubar buf))
|
|
2110 (with-current-buffer buf
|
|
2111 (condition-case nil
|
|
2112 (funcall major-mode)
|
|
2113 (error (setq current-menubar default-menubar)))))))
|
|
2114
|
428
|
2115
|
|
2116 ;;; Popup menus.
|
|
2117
|
|
2118 (defconst default-popup-menu
|
|
2119 '("XEmacs Commands"
|
502
|
2120 ["%_Split Window" split-window-vertically]
|
|
2121 ["S%_plit Window (Side by Side)" split-window-horizontally]
|
|
2122 ["%_Un-Split (Keep This)" delete-other-windows
|
|
2123 :active (not (one-window-p t))]
|
|
2124 ["Un-Split (Keep %_Others)" delete-window
|
|
2125 :active (not (one-window-p t))]
|
428
|
2126 ))
|
|
2127
|
|
2128 ;; In an effort to avoid massive menu clutter, this mostly worthless menu is
|
440
|
2129 ;; superseded by any local popup menu...
|
428
|
2130 (setq-default mode-popup-menu default-popup-menu)
|
|
2131
|
442
|
2132
|
|
2133 ;; misc
|
428
|
2134
|
|
2135 (defun xemacs-splash-buffer ()
|
|
2136 "Redisplay XEmacs splash screen in a buffer."
|
|
2137 (interactive)
|
|
2138 (let ((buffer (get-buffer-create "*Splash*"))
|
|
2139 tmout)
|
|
2140 (set-buffer buffer)
|
|
2141 (setq buffer-read-only t)
|
|
2142 (erase-buffer buffer)
|
|
2143 (setq tmout (display-splash-frame))
|
|
2144 (when tmout
|
|
2145 (make-local-hook 'kill-buffer-hook)
|
|
2146 (add-hook 'kill-buffer-hook
|
|
2147 `(lambda ()
|
|
2148 (disable-timeout ,tmout))
|
|
2149 nil t))
|
|
2150 (pop-to-buffer buffer)
|
|
2151 (delete-other-windows)))
|
|
2152
|
|
2153
|
|
2154 ;;; backwards compatibility
|
|
2155 (provide 'x-menubar)
|
|
2156 (provide 'menubar-items)
|
|
2157
|
438
|
2158 ;;; menubar-items.el ends here.
|