]> code.delx.au - gnu-emacs/blob - lispref/abbrevs.texi
(set_internal): Enter the new arg.
[gnu-emacs] / lispref / abbrevs.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1999
4 @c Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/abbrevs
7 @node Abbrevs, Processes, Syntax Tables, Top
8 @chapter Abbrevs and Abbrev Expansion
9 @cindex abbrev
10 @cindex abbrev table
11
12 An abbreviation or @dfn{abbrev} is a string of characters that may be
13 expanded to a longer string. The user can insert the abbrev string and
14 find it replaced automatically with the expansion of the abbrev. This
15 saves typing.
16
17 The set of abbrevs currently in effect is recorded in an @dfn{abbrev
18 table}. Each buffer has a local abbrev table, but normally all buffers
19 in the same major mode share one abbrev table. There is also a global
20 abbrev table. Normally both are used.
21
22 An abbrev table is represented as an obarray containing a symbol for
23 each abbreviation. The symbol's name is the abbreviation; its value is
24 the expansion; its function definition is the hook function to do the
25 expansion (@pxref{Defining Abbrevs}); its property list cell contains
26 the use count, the number of times the abbreviation has been expanded.
27 Because these symbols are not interned in the usual obarray, they will
28 never appear as the result of reading a Lisp expression; in fact,
29 normally they are never used except by the code that handles abbrevs.
30 Therefore, it is safe to use them in an extremely nonstandard way.
31 @xref{Creating Symbols}.
32
33 For the user-level commands for abbrevs, see @ref{Abbrevs,, Abbrev
34 Mode, emacs, The GNU Emacs Manual}.
35
36 @menu
37 * Abbrev Mode:: Setting up Emacs for abbreviation.
38 * Tables: Abbrev Tables. Creating and working with abbrev tables.
39 * Defining Abbrevs:: Specifying abbreviations and their expansions.
40 * Files: Abbrev Files. Saving abbrevs in files.
41 * Expansion: Abbrev Expansion. Controlling expansion; expansion subroutines.
42 * Standard Abbrev Tables:: Abbrev tables used by various major modes.
43 @end menu
44
45 @node Abbrev Mode, Abbrev Tables, Abbrevs, Abbrevs
46 @comment node-name, next, previous, up
47 @section Setting Up Abbrev Mode
48
49 Abbrev mode is a minor mode controlled by the value of the variable
50 @code{abbrev-mode}.
51
52 @defvar abbrev-mode
53 A non-@code{nil} value of this variable turns on the automatic expansion
54 of abbrevs when their abbreviations are inserted into a buffer.
55 If the value is @code{nil}, abbrevs may be defined, but they are not
56 expanded automatically.
57
58 This variable automatically becomes buffer-local when set in any fashion.
59 @end defvar
60
61 @defvar default-abbrev-mode
62 This is the value of @code{abbrev-mode} for buffers that do not override it.
63 This is the same as @code{(default-value 'abbrev-mode)}.
64 @end defvar
65
66 @node Abbrev Tables, Defining Abbrevs, Abbrev Mode, Abbrevs
67 @section Abbrev Tables
68
69 This section describes how to create and manipulate abbrev tables.
70
71 @defun make-abbrev-table
72 This function creates and returns a new, empty abbrev table---an obarray
73 containing no symbols. It is a vector filled with zeros.
74 @end defun
75
76 @defun clear-abbrev-table table
77 This function undefines all the abbrevs in abbrev table @var{table},
78 leaving it empty. It always returns @code{nil}.
79 @end defun
80
81 @defun define-abbrev-table tabname definitions
82 This function defines @var{tabname} (a symbol) as an abbrev table name,
83 i.e., as a variable whose value is an abbrev table. It defines abbrevs
84 in the table according to @var{definitions}, a list of elements of the
85 form @code{(@var{abbrevname} @var{expansion} @var{hook}
86 @var{usecount})}. The return value is always @code{nil}.
87 @end defun
88
89 @defvar abbrev-table-name-list
90 This is a list of symbols whose values are abbrev tables.
91 @code{define-abbrev-table} adds the new abbrev table name to this list.
92 @end defvar
93
94 @defun insert-abbrev-table-description name &optional human
95 This function inserts before point a description of the abbrev table
96 named @var{name}. The argument @var{name} is a symbol whose value is an
97 abbrev table. The return value is always @code{nil}.
98
99 If @var{human} is non-@code{nil}, the description is human-oriented.
100 Otherwise the description is a Lisp expression---a call to
101 @code{define-abbrev-table} that would define @var{name} exactly as it
102 is currently defined.
103 @end defun
104
105 @node Defining Abbrevs, Abbrev Files, Abbrev Tables, Abbrevs
106 @comment node-name, next, previous, up
107 @section Defining Abbrevs
108
109 These functions define an abbrev in a specified abbrev table.
110 @code{define-abbrev} is the low-level basic function, while
111 @code{add-abbrev} is used by commands that ask for information from the
112 user.
113
114 @defun add-abbrev table type arg
115 This function adds an abbreviation to abbrev table @var{table} based on
116 information from the user. The argument @var{type} is a string
117 describing in English the kind of abbrev this will be (typically,
118 @code{"global"} or @code{"mode-specific"}); this is used in prompting
119 the user. The argument @var{arg} is the number of words in the
120 expansion.
121
122 The return value is the symbol that internally represents the new
123 abbrev, or @code{nil} if the user declines to confirm redefining an
124 existing abbrev.
125 @end defun
126
127 @defun define-abbrev table name expansion &optional hook count
128 This function defines an abbrev named @var{name}, in @var{table}, to
129 expand to @var{expansion} and call @var{hook}. The value of
130 @var{count}, if specified, initializes the abbrev's usage-count. If
131 @var{count} is not specified or @code{nil}, the use count is initialized
132 to zero. The return value is a symbol that represents the abbrev inside
133 Emacs; its name is @var{name}.
134
135 The argument @var{name} should be a string. The argument
136 @var{expansion} is normally the desired expansion (a string), or
137 @code{nil} to undefine the abbrev. If it is anything but a string or
138 @code{nil}, then the abbreviation ``expands'' solely by running
139 @var{hook}.
140
141 The argument @var{hook} is a function or @code{nil}. If @var{hook} is
142 non-@code{nil}, then it is called with no arguments after the abbrev is
143 replaced with @var{expansion}; point is located at the end of
144 @var{expansion} when @var{hook} is called.
145 @end defun
146
147 @defopt only-global-abbrevs
148 If this variable is non-@code{nil}, it means that the user plans to use
149 global abbrevs only. This tells the commands that define mode-specific
150 abbrevs to define global ones instead. This variable does not alter the
151 behavior of the functions in this section; it is examined by their
152 callers.
153 @end defopt
154
155 @node Abbrev Files, Abbrev Expansion, Defining Abbrevs, Abbrevs
156 @section Saving Abbrevs in Files
157
158 A file of saved abbrev definitions is actually a file of Lisp code.
159 The abbrevs are saved in the form of a Lisp program to define the same
160 abbrev tables with the same contents. Therefore, you can load the file
161 with @code{load} (@pxref{How Programs Do Loading}). However, the
162 function @code{quietly-read-abbrev-file} is provided as a more
163 convenient interface.
164
165 User-level facilities such as @code{save-some-buffers} can save
166 abbrevs in a file automatically, under the control of variables
167 described here.
168
169 @defopt abbrev-file-name
170 This is the default file name for reading and saving abbrevs.
171 @end defopt
172
173 @defun quietly-read-abbrev-file &optional filename
174 This function reads abbrev definitions from a file named @var{filename},
175 previously written with @code{write-abbrev-file}. If @var{filename} is
176 omitted or @code{nil}, the file specified in @code{abbrev-file-name} is
177 used. @code{save-abbrevs} is set to @code{t} so that changes will be
178 saved.
179
180 This function does not display any messages. It returns @code{nil}.
181 @end defun
182
183 @defopt save-abbrevs
184 A non-@code{nil} value for @code{save-abbrev} means that Emacs should
185 save abbrevs when files are saved. @code{abbrev-file-name} specifies
186 the file to save the abbrevs in.
187 @end defopt
188
189 @defvar abbrevs-changed
190 This variable is set non-@code{nil} by defining or altering any
191 abbrevs. This serves as a flag for various Emacs commands to offer to
192 save your abbrevs.
193 @end defvar
194
195 @deffn Command write-abbrev-file &optional filename
196 Save all abbrev definitions, in all abbrev tables, in the file
197 @var{filename}, in the form of a Lisp program that when loaded will
198 define the same abbrevs. If @var{filename} is @code{nil} or omitted,
199 @code{abbrev-file-name} is used. This function returns @code{nil}.
200 @end deffn
201
202 @node Abbrev Expansion, Standard Abbrev Tables, Abbrev Files, Abbrevs
203 @comment node-name, next, previous, up
204 @section Looking Up and Expanding Abbreviations
205
206 Abbrevs are usually expanded by certain interactive commands,
207 including @code{self-insert-command}. This section describes the
208 subroutines used in writing such commands, as well as the variables they
209 use for communication.
210
211 @defun abbrev-symbol abbrev &optional table
212 This function returns the symbol representing the abbrev named
213 @var{abbrev}. The value returned is @code{nil} if that abbrev is not
214 defined. The optional second argument @var{table} is the abbrev table
215 to look it up in. If @var{table} is @code{nil}, this function tries
216 first the current buffer's local abbrev table, and second the global
217 abbrev table.
218 @end defun
219
220 @defun abbrev-expansion abbrev &optional table
221 This function returns the string that @var{abbrev} would expand into (as
222 defined by the abbrev tables used for the current buffer). The optional
223 argument @var{table} specifies the abbrev table to use, as in
224 @code{abbrev-symbol}.
225 @end defun
226
227 @deffn Command expand-abbrev
228 This command expands the abbrev before point, if any. If point does not
229 follow an abbrev, this command does nothing. The command returns the
230 abbrev symbol if it did expansion, @code{nil} otherwise.
231 @end deffn
232
233 @deffn Command abbrev-prefix-mark &optional arg
234 Mark current point as the beginning of an abbrev. The next call to
235 @code{expand-abbrev} will use the text from here to point (where it is
236 then) as the abbrev to expand, rather than using the previous word as
237 usual.
238 @end deffn
239
240 @defopt abbrev-all-caps
241 When this is set non-@code{nil}, an abbrev entered entirely in upper
242 case is expanded using all upper case. Otherwise, an abbrev entered
243 entirely in upper case is expanded by capitalizing each word of the
244 expansion.
245 @end defopt
246
247 @defvar abbrev-start-location
248 This is the buffer position for @code{expand-abbrev} to use as the start
249 of the next abbrev to be expanded. (@code{nil} means use the word
250 before point instead.) @code{abbrev-start-location} is set to
251 @code{nil} each time @code{expand-abbrev} is called. This variable is
252 also set by @code{abbrev-prefix-mark}.
253 @end defvar
254
255 @defvar abbrev-start-location-buffer
256 The value of this variable is the buffer for which
257 @code{abbrev-start-location} has been set. Trying to expand an abbrev
258 in any other buffer clears @code{abbrev-start-location}. This variable
259 is set by @code{abbrev-prefix-mark}.
260 @end defvar
261
262 @defvar last-abbrev
263 This is the @code{abbrev-symbol} of the most recent abbrev expanded. This
264 information is left by @code{expand-abbrev} for the sake of the
265 @code{unexpand-abbrev} command (@pxref{Expanding Abbrevs,, Expanding
266 Abbrevs, emacs, The GNU Emacs Manual}).
267 @end defvar
268
269 @defvar last-abbrev-location
270 This is the location of the most recent abbrev expanded. This contains
271 information left by @code{expand-abbrev} for the sake of the
272 @code{unexpand-abbrev} command.
273 @end defvar
274
275 @defvar last-abbrev-text
276 This is the exact expansion text of the most recent abbrev expanded,
277 after case conversion (if any). Its value is @code{nil} if the abbrev
278 has already been unexpanded. This contains information left by
279 @code{expand-abbrev} for the sake of the @code{unexpand-abbrev} command.
280 @end defvar
281
282 @c Emacs 19 feature
283 @defvar pre-abbrev-expand-hook
284 This is a normal hook whose functions are executed, in sequence, just
285 before any expansion of an abbrev. @xref{Hooks}. Since it is a normal
286 hook, the hook functions receive no arguments. However, they can find
287 the abbrev to be expanded by looking in the buffer before point.
288 Running the hook is the first thing that @code{expand-abbrev} does, and
289 so a hook function can be used to change the current abbrev table before
290 abbrev lookup happens.
291 @end defvar
292
293 The following sample code shows a simple use of
294 @code{pre-abbrev-expand-hook}. If the user terminates an abbrev with a
295 punctuation character, the hook function asks for confirmation. Thus,
296 this hook allows the user to decide whether to expand the abbrev, and
297 aborts expansion if it is not confirmed.
298
299 @smallexample
300 (add-hook 'pre-abbrev-expand-hook 'query-if-not-space)
301
302 ;; @r{This is the function invoked by @code{pre-abbrev-expand-hook}.}
303
304 ;; @r{If the user terminated the abbrev with a space, the function does}
305 ;; @r{nothing (that is, it returns so that the abbrev can expand). If the}
306 ;; @r{user entered some other character, this function asks whether}
307 ;; @r{expansion should continue.}
308
309 ;; @r{If the user answers the prompt with @kbd{y}, the function returns}
310 ;; @r{@code{nil} (because of the @code{not} function), but that is}
311 ;; @r{acceptable; the return value has no effect on expansion.}
312
313 (defun query-if-not-space ()
314 (if (/= ?\ (preceding-char))
315 (if (not (y-or-n-p "Do you want to expand this abbrev? "))
316 (error "Not expanding this abbrev"))))
317 @end smallexample
318
319 @node Standard Abbrev Tables, , Abbrev Expansion, Abbrevs
320 @comment node-name, next, previous, up
321 @section Standard Abbrev Tables
322
323 Here we list the variables that hold the abbrev tables for the
324 preloaded major modes of Emacs.
325
326 @defvar global-abbrev-table
327 This is the abbrev table for mode-independent abbrevs. The abbrevs
328 defined in it apply to all buffers. Each buffer may also have a local
329 abbrev table, whose abbrev definitions take precedence over those in the
330 global table.
331 @end defvar
332
333 @defvar local-abbrev-table
334 The value of this buffer-local variable is the (mode-specific)
335 abbreviation table of the current buffer.
336 @end defvar
337
338 @defvar fundamental-mode-abbrev-table
339 This is the local abbrev table used in Fundamental mode; in other words,
340 it is the local abbrev table in all buffers in Fundamental mode.
341 @end defvar
342
343 @defvar text-mode-abbrev-table
344 This is the local abbrev table used in Text mode.
345 @end defvar
346
347 @defvar lisp-mode-abbrev-table
348 This is the local abbrev table used in Lisp mode and Emacs Lisp mode.
349 @end defvar
350