annotate lisp/electric/auto-autoloads.el @ 183:e121b013d1f0 r20-3b18

Import from CVS: tag r20-3b18
author cvs
date Mon, 13 Aug 2007 09:54:23 +0200
parents 0132846995bd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
2 (if (featurep 'electric-autoloads) (error "Already loaded"))
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
3
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
4 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
5
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
6 (autoload 'electric-buffer-list "ebuff-menu" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
7 Pops up a buffer describing the set of Emacs buffers.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
8 Vaguely like ITS lunar select buffer; combining typeoutoid buffer
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
9 listing with menuoid buffer selection.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
10
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
11 If the very next character typed is a space then the buffer list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
12 window disappears. Otherwise, one may move around in the buffer list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
13 window, marking buffers to be selected, saved or deleted.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
14
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
15 To exit and select a new buffer, type a space when the cursor is on
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
16 the appropriate line of the buffer-list window. Other commands are
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
17 much like those of buffer-menu-mode.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
18
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21 Non-null optional arg FILES-ONLY means mention only file buffers.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22 When called from Lisp code, FILES-ONLY may be a regular expression,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
23 in which case only buffers whose names match that expression are listed,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
24 or an arbitrary predicate function.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
26 \\{electric-buffer-menu-mode-map}" t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
27
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
31
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
32 (autoload 'Electric-command-history-redo-expression "echistory" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
33 Edit current history line in minibuffer and execute result.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
34 With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
35
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
36 (autoload 'electric-command-history "echistory" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
37 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
38 This pops up a window with the Command History listing.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
39 The number of command listed is controlled by `list-command-history-max'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
40 The command history is filtered by `list-command-history-filter' if non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
41 Combines typeout Command History list window with menu like selection
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
42 of an expression from the history for re-evaluation in the *original* buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
43
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
44 The history displayed is filtered by `list-command-history-filter' if non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
45
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
46 Like Emacs-Lisp mode except that characters do not insert themselves and
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
47 Tab and Linefeed do not indent. Instead these commands are provided:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
48 \\{electric-history-map}
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
49
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
50 Calls the value of `electric-command-history-hook' if that is non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
51 The Command History listing is recomputed each time this mode is invoked." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
52
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
53 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
54
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
55 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57 (autoload 'with-electric-help "ehelp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58 Pop up an \"electric\" help buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
59 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60 THUNK is a function of no arguments which is called to initialize the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
61 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62 erased before THUNK is called unless NOERASE is non-nil. THUNK will
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
63 be called while BUFFER is current and with `standard-output' bound to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 the buffer specified by BUFFER.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
66 If THUNK returns nil, we display BUFFER starting at the top, and
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67 shrink the window to fit. If THUNK returns non-nil, we don't do those things.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
68
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
69 After THUNK has been called, this function \"electrically\" pops up a window
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
70 in which BUFFER is displayed and allows the user to scroll through that buffer
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71 in electric-help-mode. The window's height will be at least MINHEIGHT if
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72 this value is non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
74 If THUNK returns nil, we display BUFFER starting at the top, and
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
75 shrink the window to fit. If THUNK returns non-nil, we don't do those
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 things.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78 When the user exits (with `electric-help-exit', or otherwise) the help
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79 buffer's window disappears (i.e., we use `save-window-excursion')
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82 (autoload 'electric-helpify "ehelp" nil nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
88 (autoload 'Helper-describe-bindings "helper" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89 Describe local key bindings of current mode." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
91 (autoload 'Helper-help "helper" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
92 Provide help for current mode." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
95
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
96 (provide 'electric-autoloads)