(help-xref-symbol-regexp): Recognize "source of"
[bpt/emacs.git] / man / abbrevs.texi
CommitLineData
6bf7aab6
DL
1@c This is part of the Emacs manual.
2@c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc.
3@c See file emacs.texi for copying conditions.
4@node Abbrevs, Picture, Building, Top
5@chapter Abbrevs
6@cindex abbrevs
7@cindex expansion (of abbrevs)
8
9 A defined @dfn{abbrev} is a word which @dfn{expands}, if you insert
10it, into some different text. Abbrevs are defined by the user to expand
11in specific ways. For example, you might define @samp{foo} as an abbrev
12expanding to @samp{find outer otter}. Then you would be able to insert
13@samp{find outer otter } into the buffer by typing @kbd{f o o
14@key{SPC}}.
15
16 A second kind of abbreviation facility is called @dfn{dynamic abbrev
17expansion}. You use dynamic abbrev expansion with an explicit command
18to expand the letters in the buffer before point by looking for other
19words in the buffer that start with those letters. @xref{Dynamic
20Abbrevs}.
21
af1bb22d
RS
22``Hippie'' expansion generalizes abbreviation expansion. @xref{Hippie
23Expand, , ``Hippie'' Expansion, autotype, Features for Automatic
24Typing}.
9d9f0f85 25
6bf7aab6
DL
26@menu
27* Abbrev Concepts:: Fundamentals of defined abbrevs.
28* Defining Abbrevs:: Defining an abbrev, so it will expand when typed.
29* Expanding Abbrevs:: Controlling expansion: prefixes, canceling expansion.
30* Editing Abbrevs:: Viewing or editing the entire list of defined abbrevs.
31* Saving Abbrevs:: Saving the entire list of abbrevs for another session.
32* Dynamic Abbrevs:: Abbreviations for words already in the buffer.
33* Dabbrev Customization:: What is a word, for dynamic abbrevs. Case handling.
34@end menu
35
36@node Abbrev Concepts
37@section Abbrev Concepts
38
39 An @dfn{abbrev} is a word which has been defined to @dfn{expand} into
40a specified @dfn{expansion}. When you insert a word-separator character
41following the abbrev, that expands the abbrev---replacing the abbrev
42with its expansion. For example, if @samp{foo} is defined as an abbrev
43expanding to @samp{find outer otter}, then you can insert @samp{find
44outer otter.} into the buffer by typing @kbd{f o o .}.
45
46@findex abbrev-mode
47@vindex abbrev-mode
48@cindex Abbrev mode
49@cindex mode, Abbrev
50 Abbrevs expand only when Abbrev mode (a minor mode) is enabled.
51Disabling Abbrev mode does not cause abbrev definitions to be forgotten,
52but they do not expand until Abbrev mode is enabled again. The command
53@kbd{M-x abbrev-mode} toggles Abbrev mode; with a numeric argument, it
54turns Abbrev mode on if the argument is positive, off otherwise.
55@xref{Minor Modes}. @code{abbrev-mode} is also a variable; Abbrev mode is
56on when the variable is non-@code{nil}. The variable @code{abbrev-mode}
57automatically becomes local to the current buffer when it is set.
58
59 Abbrev definitions can be @dfn{mode-specific}---active only in one major
60mode. Abbrevs can also have @dfn{global} definitions that are active in
61all major modes. The same abbrev can have a global definition and various
62mode-specific definitions for different major modes. A mode-specific
63definition for the current major mode overrides a global definition.
64
65 Abbrevs can be defined interactively during the editing session. Lists
66of abbrev definitions can also be saved in files and reloaded in later
67sessions. Some users keep extensive lists of abbrevs that they load in
68every session.
69
70@node Defining Abbrevs
71@section Defining Abbrevs
72
73@table @kbd
74@item C-x a g
75Define an abbrev, using one or more words before point as its expansion
76(@code{add-global-abbrev}).
77@item C-x a l
78Similar, but define an abbrev specific to the current major mode
79(@code{add-mode-abbrev}).
80@item C-x a i g
81Define a word in the buffer as an abbrev (@code{inverse-add-global-abbrev}).
82@item C-x a i l
83Define a word in the buffer as a mode-specific abbrev
84(@code{inverse-add-mode-abbrev}).
85@item M-x kill-all-abbrevs
86This command discards all abbrev definitions currently in effect,
87leaving a blank slate.
88@end table
89
90@kindex C-x a g
91@findex add-global-abbrev
92 The usual way to define an abbrev is to enter the text you want the
93abbrev to expand to, position point after it, and type @kbd{C-x a g}
94(@code{add-global-abbrev}). This reads the abbrev itself using the
95minibuffer, and then defines it as an abbrev for one or more words before
96point. Use a numeric argument to say how many words before point should be
97taken as the expansion. For example, to define the abbrev @samp{foo} as
98mentioned above, insert the text @samp{find outer otter} and then type
99@kbd{C-u 3 C-x a g f o o @key{RET}}.
100
101 An argument of zero to @kbd{C-x a g} means to use the contents of the
102region as the expansion of the abbrev being defined.
103
104@kindex C-x a l
105@findex add-mode-abbrev
106 The command @kbd{C-x a l} (@code{add-mode-abbrev}) is similar, but
107defines a mode-specific abbrev. Mode-specific abbrevs are active only in a
108particular major mode. @kbd{C-x a l} defines an abbrev for the major mode
109in effect at the time @kbd{C-x a l} is typed. The arguments work the same
110as for @kbd{C-x a g}.
111
112@kindex C-x a i g
113@findex inverse-add-global-abbrev
114@kindex C-x a i l
115@findex inverse-add-mode-abbrev
116 If the text already in the buffer is the abbrev, rather than its
117expansion, use command @kbd{C-x a i g}
118(@code{inverse-add-global-abbrev}) instead of @kbd{C-x a g}, or use
119@kbd{C-x a i l} (@code{inverse-add-mode-abbrev}) instead of @kbd{C-x a
120l}. These commands are called ``inverse'' because they invert the
121meaning of the two text strings they use (one from the buffer and one
122read with the minibuffer).
123
124 To change the definition of an abbrev, just define a new definition.
125When the abbrev has a prior definition, the abbrev definition commands
126ask for confirmation for replacing it.
127
128 To remove an abbrev definition, give a negative argument to the abbrev
129definition command: @kbd{C-u - C-x a g} or @kbd{C-u - C-x a l}. The
130former removes a global definition, while the latter removes a
131mode-specific definition.
132
133@findex kill-all-abbrevs
134 @kbd{M-x kill-all-abbrevs} removes all the abbrev definitions there
135are, both global and local.
136
137@node Expanding Abbrevs
138@section Controlling Abbrev Expansion
139
140 An abbrev expands whenever it is present in the buffer just before
141point and you type a self-inserting whitespace or punctuation character
142(@key{SPC}, comma, etc.@:). More precisely, any character that is not a
143word constituent expands an abbrev, and any word-constituent character
144can be part of an abbrev. The most common way to use an abbrev is to
145insert it and then insert a punctuation character to expand it.
146
147@vindex abbrev-all-caps
148 Abbrev expansion preserves case; thus, @samp{foo} expands into @samp{find
149outer otter}; @samp{Foo} into @samp{Find outer otter}, and @samp{FOO} into
150@samp{FIND OUTER OTTER} or @samp{Find Outer Otter} according to the
151variable @code{abbrev-all-caps} (a non-@code{nil} value chooses the first
152of the two expansions).
153
154 These commands are used to control abbrev expansion:
155
156@table @kbd
157@item M-'
158Separate a prefix from a following abbrev to be expanded
159(@code{abbrev-prefix-mark}).
160@item C-x a e
161@findex expand-abbrev
162Expand the abbrev before point (@code{expand-abbrev}).
163This is effective even when Abbrev mode is not enabled.
164@item M-x expand-region-abbrevs
165Expand some or all abbrevs found in the region.
166@end table
167
168@kindex M-'
169@findex abbrev-prefix-mark
170 You may wish to expand an abbrev with a prefix attached; for example,
171if @samp{cnst} expands into @samp{construction}, you might want to use
172it to enter @samp{reconstruction}. It does not work to type
173@kbd{recnst}, because that is not necessarily a defined abbrev. What
174you can do is use the command @kbd{M-'} (@code{abbrev-prefix-mark}) in
175between the prefix @samp{re} and the abbrev @samp{cnst}. First, insert
176@samp{re}. Then type @kbd{M-'}; this inserts a hyphen in the buffer to
177indicate that it has done its work. Then insert the abbrev @samp{cnst};
178the buffer now contains @samp{re-cnst}. Now insert a non-word character
179to expand the abbrev @samp{cnst} into @samp{construction}. This
180expansion step also deletes the hyphen that indicated @kbd{M-'} had been
181used. The result is the desired @samp{reconstruction}.
182
183 If you actually want the text of the abbrev in the buffer, rather than
184its expansion, you can accomplish this by inserting the following
185punctuation with @kbd{C-q}. Thus, @kbd{foo C-q ,} leaves @samp{foo,} in
186the buffer.
187
188@findex unexpand-abbrev
189 If you expand an abbrev by mistake, you can undo the expansion and
190bring back the abbrev itself by typing @kbd{C-_} to undo (@pxref{Undo}).
191This also undoes the insertion of the non-word character that expanded
192the abbrev. If the result you want is the terminating non-word
193character plus the unexpanded abbrev, you must reinsert the terminating
194character, quoting it with @kbd{C-q}. You can also use the command
195@kbd{M-x unexpand-abbrev} to cancel the last expansion without
196deleting the terminating character.
197
198@findex expand-region-abbrevs
199 @kbd{M-x expand-region-abbrevs} searches through the region for defined
200abbrevs, and for each one found offers to replace it with its expansion.
201This command is useful if you have typed in text using abbrevs but forgot
202to turn on Abbrev mode first. It may also be useful together with a
203special set of abbrev definitions for making several global replacements at
204once. This command is effective even if Abbrev mode is not enabled.
205
206 Expanding an abbrev runs the hook @code{pre-abbrev-expand-hook}
207(@pxref{Hooks}).
208
209@need 1500
210@node Editing Abbrevs
211@section Examining and Editing Abbrevs
212
213@table @kbd
214@item M-x list-abbrevs
bc3d8689
EZ
215Display a list of all abbrev definitions. With numeric argument, list
216only local abbrevs.
6bf7aab6
DL
217@item M-x edit-abbrevs
218Edit a list of abbrevs; you can add, alter or remove definitions.
219@end table
220
221@findex list-abbrevs
222 The output from @kbd{M-x list-abbrevs} looks like this:
223
224@example
225(lisp-mode-abbrev-table)
226"dk" 0 "define-key"
227(global-abbrev-table)
228"dfn" 0 "definition"
229@end example
230
231@noindent
232(Some blank lines of no semantic significance, and some other abbrev
233tables, have been omitted.)
234
235 A line containing a name in parentheses is the header for abbrevs in a
236particular abbrev table; @code{global-abbrev-table} contains all the global
237abbrevs, and the other abbrev tables that are named after major modes
238contain the mode-specific abbrevs.
239
240 Within each abbrev table, each nonblank line defines one abbrev. The
241word at the beginning of the line is the abbrev. The number that
242follows is the number of times the abbrev has been expanded. Emacs
243keeps track of this to help you see which abbrevs you actually use, so
244that you can eliminate those that you don't use often. The string at
245the end of the line is the expansion.
246
247@findex edit-abbrevs
248@kindex C-c C-c @r{(Edit Abbrevs)}
249 @kbd{M-x edit-abbrevs} allows you to add, change or kill abbrev
250definitions by editing a list of them in an Emacs buffer. The list has
251the same format described above. The buffer of abbrevs is called
252@samp{*Abbrevs*}, and is in Edit-Abbrevs mode. Type @kbd{C-c C-c} in
253this buffer to install the abbrev definitions as specified in the
254buffer---and delete any abbrev definitions not listed.
255
256 The command @code{edit-abbrevs} is actually the same as
257@code{list-abbrevs} except that it selects the buffer @samp{*Abbrevs*}
258whereas @code{list-abbrevs} merely displays it in another window.
259
260@node Saving Abbrevs
261@section Saving Abbrevs
262
263 These commands allow you to keep abbrev definitions between editing
264sessions.
265
266@table @kbd
267@item M-x write-abbrev-file @key{RET} @var{file} @key{RET}
268Write a file @var{file} describing all defined abbrevs.
269@item M-x read-abbrev-file @key{RET} @var{file} @key{RET}
270Read the file @var{file} and define abbrevs as specified therein.
271@item M-x quietly-read-abbrev-file @key{RET} @var{file} @key{RET}
272Similar but do not display a message about what is going on.
273@item M-x define-abbrevs
274Define abbrevs from definitions in current buffer.
275@item M-x insert-abbrevs
276Insert all abbrevs and their expansions into current buffer.
277@end table
278
279@findex write-abbrev-file
280 @kbd{M-x write-abbrev-file} reads a file name using the minibuffer and
281then writes a description of all current abbrev definitions into that
282file. This is used to save abbrev definitions for use in a later
283session. The text stored in the file is a series of Lisp expressions
284that, when executed, define the same abbrevs that you currently have.
285
286@findex read-abbrev-file
287@findex quietly-read-abbrev-file
288@vindex abbrev-file-name
289 @kbd{M-x read-abbrev-file} reads a file name using the minibuffer and
290then reads the file, defining abbrevs according to the contents of the
291file. @kbd{M-x quietly-read-abbrev-file} is the same except that it
292does not display a message in the echo area saying that it is doing its
293work; it is actually useful primarily in the @file{.emacs} file. If an
294empty argument is given to either of these functions, they use the file
295name specified in the variable @code{abbrev-file-name}, which is by
296default @code{"~/.abbrev_defs"}.
297
298@vindex save-abbrevs
299 Emacs will offer to save abbrevs automatically if you have changed any of
300them, whenever it offers to save all files (for @kbd{C-x s} or @kbd{C-x
301C-c}). This feature can be inhibited by setting the variable
302@code{save-abbrevs} to @code{nil}.
303
304@findex insert-abbrevs
305@findex define-abbrevs
306 The commands @kbd{M-x insert-abbrevs} and @kbd{M-x define-abbrevs} are
307similar to the previous commands but work on text in an Emacs buffer.
308@kbd{M-x insert-abbrevs} inserts text into the current buffer before point,
309describing all current abbrev definitions; @kbd{M-x define-abbrevs} parses
310the entire current buffer and defines abbrevs accordingly.@refill
311
312@node Dynamic Abbrevs
313@section Dynamic Abbrev Expansion
314
315 The abbrev facility described above operates automatically as you insert
316text, but all abbrevs must be defined explicitly. By contrast,
317@dfn{dynamic abbrevs} allow the meanings of abbrevs to be determined
318automatically from the contents of the buffer, but dynamic abbrev expansion
319happens only when you request it explicitly.
320
321@kindex M-/
322@kindex C-M-/
323@findex dabbrev-expand
324@findex dabbrev-completion
325@table @kbd
326@item M-/
327Expand the word in the buffer before point as a @dfn{dynamic abbrev},
328by searching in the buffer for words starting with that abbreviation
329(@code{dabbrev-expand}).
330
331@item C-M-/
332Complete the word before point as a dynamic abbrev
333(@code{dabbrev-completion}).
334@end table
335
336@vindex dabbrev-limit
337 For example, if the buffer contains @samp{does this follow } and you
338type @kbd{f o M-/}, the effect is to insert @samp{follow} because that
339is the last word in the buffer that starts with @samp{fo}. A numeric
340argument to @kbd{M-/} says to take the second, third, etc.@: distinct
341expansion found looking backward from point. Repeating @kbd{M-/}
342searches for an alternative expansion by looking farther back. After
343scanning all the text before point, it searches the text after point.
344The variable @code{dabbrev-limit}, if non-@code{nil}, specifies how far
345in the buffer to search for an expansion.
346
347@vindex dabbrev-check-all-buffers
348 After scanning the current buffer, @kbd{M-/} normally searches other
349buffers, unless you have set @code{dabbrev-check-all-buffers} to
350@code{nil}.
351
78cab5d8 352@vindex dabbrev-ignored-buffer-regexps
36710aa6
GM
353 For finer control over which buffers to scan, customize the variable
354@code{dabbrev-ignored-buffer-regexps}. Its value is a list of regular
355expressions. If a buffer's name matches any of these regular
356expressions, dynamic abbrev expansion skips that buffer.
0a396e5a 357
6bf7aab6
DL
358 A negative argument to @kbd{M-/}, as in @kbd{C-u - M-/}, says to
359search first for expansions after point, and second for expansions
360before point. If you repeat the @kbd{M-/} to look for another
361expansion, do not specify an argument. This tries all the expansions
362after point and then the expansions before point.
363
364 After you have expanded a dynamic abbrev, you can copy additional
365words that follow the expansion in its original context. Simply type
366@kbd{@key{SPC} M-/} for each word you want to copy. The spacing and
367punctuation between words is copied along with the words.
368
369 The command @kbd{C-M-/} (@code{dabbrev-completion}) performs
370completion of a dynamic abbreviation. Instead of trying the possible
371expansions one by one, it finds all of them, then inserts the text that
372they have in common. If they have nothing in common, @kbd{C-M-/}
373displays a list of completions, from which you can select a choice in
374the usual manner. @xref{Completion}.
375
376 Dynamic abbrev expansion is completely independent of Abbrev mode; the
377expansion of a word with @kbd{M-/} is completely independent of whether
378it has a definition as an ordinary abbrev.
379
380@node Dabbrev Customization
381@section Customizing Dynamic Abbreviation
382
383 Normally, dynamic abbrev expansion ignores case when searching for
384expansions. That is, the expansion need not agree in case with the word
385you are expanding.
386
387@vindex dabbrev-case-fold-search
388 This feature is controlled by the variable
389@code{dabbrev-case-fold-search}. If it is @code{t}, case is ignored in
390this search; if @code{nil}, the word and the expansion must match in
391case. If the value of @code{dabbrev-case-fold-search} is
392@code{case-fold-search}, which is true by default, then the variable
393@code{case-fold-search} controls whether to ignore case while searching
394for expansions.
395
396@vindex dabbrev-case-replace
397 Normally, dynamic abbrev expansion preserves the case pattern @emph{of
398the abbrev you have typed}, by converting the expansion to that case
399pattern.
400
401@vindex dabbrev-case-fold-search
402 The variable @code{dabbrev-case-replace} controls whether to preserve
403the case pattern of the abbrev. If it is @code{t}, the abbrev's case
404pattern is preserved in most cases; if @code{nil}, the expansion is
405always copied verbatim. If the value of @code{dabbrev-case-replace} is
406@code{case-replace}, which is true by default, then the variable
407@code{case-replace} controls whether to copy the expansion verbatim.
408
409 However, if the expansion contains a complex mixed case pattern, and
410the abbrev matches this pattern as far as it goes, then the expansion is
411always copied verbatim, regardless of those variables. Thus, for
412example, if the buffer contains @code{variableWithSillyCasePattern}, and
413you type @kbd{v a M-/}, it copies the expansion verbatim including its
414case pattern.
415
416@vindex dabbrev-abbrev-char-regexp
417 The variable @code{dabbrev-abbrev-char-regexp}, if non-@code{nil},
418controls which characters are considered part of a word, for dynamic expansion
419purposes. The regular expression must match just one character, never
420two or more. The same regular expression also determines which
421characters are part of an expansion. The value @code{nil} has a special
422meaning: abbreviations are made of word characters, but expansions are
423made of word and symbol characters.
424
425@vindex dabbrev-abbrev-skip-leading-regexp
426 In shell scripts and makefiles, a variable name is sometimes prefixed
427with @samp{$} and sometimes not. Major modes for this kind of text can
428customize dynamic abbreviation to handle optional prefixes by setting
429the variable @code{dabbrev-abbrev-skip-leading-regexp}. Its value
430should be a regular expression that matches the optional prefix that
431dynamic abbreviation should ignore.