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