Make Electric Pair mode smarter/more useful:
[bpt/emacs.git] / doc / emacs / programs.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
ab422c4d
PE
2@c Copyright (C) 1985-1987, 1993-1995, 1997, 1999-2013 Free Software
3@c Foundation, Inc.
6bf7aab6 4@c See file emacs.texi for copying conditions.
abb9615e 5@node Programs
6bf7aab6
DL
6@chapter Editing Programs
7@cindex Lisp editing
8@cindex C editing
9@cindex program editing
10
ec7ae032 11 This chapter describes Emacs features for facilitating editing
eceeb5fc 12programs. Some of the things these features can do are:
6bf7aab6
DL
13
14@itemize @bullet
15@item
93da5dff 16Find or move over top-level definitions (@pxref{Defuns}).
6bf7aab6 17@item
93da5dff
RS
18Apply the usual indentation conventions of the language
19(@pxref{Program Indent}).
6bf7aab6 20@item
93da5dff 21Balance parentheses (@pxref{Parentheses}).
cf1c48d4 22@item
ea118de1
SE
23Insert, kill or align comments (@pxref{Comments}).
24@item
cf1c48d4 25Highlight program syntax (@pxref{Font Lock}).
6bf7aab6
DL
26@end itemize
27
6bf7aab6
DL
28@menu
29* Program Modes:: Major modes for editing programs.
93da5dff
RS
30* Defuns:: Commands to operate on major top-level parts
31 of a program.
6bf7aab6 32* Program Indent:: Adjusting indentation to show the nesting.
93da5dff 33* Parentheses:: Commands that operate on parentheses.
8838673e 34* Comments:: Inserting, killing, and aligning comments.
93da5dff 35* Documentation:: Getting documentation of functions you plan to call.
51ed0ea0 36* Hideshow:: Displaying blocks selectively.
93da5dff 37* Symbol Completion:: Completion on symbol names of your program or language.
3b8b8888 38* Glasses:: Making identifiersLikeThis more readable.
a42dbee1 39* Semantic:: Suite of editing tools based on source code parsing.
93da5dff 40* Misc for Programs:: Other Emacs features useful for editing programs.
47d42d81
AM
41* C Modes:: Special commands of C, C++, Objective-C, Java,
42 IDL, Pike and AWK modes.
51ed0ea0 43* Asm Mode:: Asm mode and its special features.
b23ef7a5
EZ
44@ifnottex
45* Fortran:: Fortran mode and its special features.
46@end ifnottex
6bf7aab6
DL
47@end menu
48
49@node Program Modes
50@section Major Modes for Programming Languages
6bf7aab6 51@cindex modes for programming languages
cf1c48d4 52
ec7ae032
CY
53 Emacs has specialized major modes (@pxref{Major Modes}) for many
54programming languages. A programming language mode typically
cf1c48d4
RS
55specifies the syntax of expressions, the customary rules for
56indentation, how to do syntax highlighting for the language, and how
ec7ae032
CY
57to find the beginning or end of a function definition. It often has
58features for compiling and debugging programs as well. The major mode
59for each language is named after the language; for instance, the major
60mode for the C programming language is @code{c-mode}.
cf1c48d4 61
6bf7aab6
DL
62@cindex Perl mode
63@cindex Icon mode
6bf7aab6
DL
64@cindex Makefile mode
65@cindex Tcl mode
66@cindex CPerl mode
138a8f12
DL
67@cindex DSSSL mode
68@cindex Octave mode
69@cindex Metafont mode
70@cindex Modula2 mode
71@cindex Prolog mode
7b703414 72@cindex Python mode
e37d4360 73@cindex Ruby mode
138a8f12
DL
74@cindex Simula mode
75@cindex VHDL mode
76@cindex M4 mode
77@cindex Shell-script mode
3b8b8888
DL
78@cindex Delphi mode
79@cindex PostScript mode
8758a7da
RS
80@cindex Conf mode
81@cindex DNS mode
71785b7a 82@cindex Javascript mode
ec7ae032
CY
83 Emacs has programming language modes for Lisp, Scheme, the
84Scheme-based DSSSL expression language, Ada, ASM, AWK, C, C++, Delphi,
85Fortran, Icon, IDL (CORBA), IDLWAVE, Java, Javascript, Metafont
86(@TeX{}'s companion for font creation), Modula2, Objective-C, Octave,
87Pascal, Perl, Pike, PostScript, Prolog, Python, Ruby, Simula, Tcl, and
1df7defd 88VHDL@. An alternative mode for Perl is called CPerl mode. Modes are
ec7ae032
CY
89also available for the scripting languages of the common GNU and Unix
90shells, VMS DCL, and MS-DOS/MS-Windows @samp{BAT} files, and for
91makefiles, DNS master files, and various sorts of configuration files.
92
93 Ideally, Emacs should have a major mode for each programming
94language that you might want to edit. If it doesn't have a mode for
95your favorite language, the mode might be implemented in a package not
96distributed with Emacs (@pxref{Packages}); or you can contribute one.
6bf7aab6
DL
97
98@kindex DEL @r{(programming modes)}
4f7666dc 99@findex c-electric-backspace
ec7ae032 100@findex backward-delete-char-untabify
93da5dff 101 In most programming languages, indentation should vary from line to
ec7ae032
CY
102line to illustrate the structure of the program. Therefore, in most
103programming language modes, typing @key{TAB} updates the indentation
104of the current line (@pxref{Program Indent}). Furthermore, @key{DEL}
105is usually bound to @code{backward-delete-char-untabify}, which
106deletes backward treating each tab as if it were the equivalent number
107of spaces, so that you can delete one column of indentation without
108worrying whether the whitespace consists of spaces or tabs.
b23ef7a5 109
6bf7aab6
DL
110@cindex mode hook
111@vindex c-mode-hook
112@vindex lisp-mode-hook
113@vindex emacs-lisp-mode-hook
114@vindex lisp-interaction-mode-hook
115@vindex scheme-mode-hook
ec7ae032
CY
116 Entering a programming language mode runs the custom Lisp functions
117specified in the hook variable @code{prog-mode-hook}, followed by
118those specified in the mode's own mode hook (@pxref{Major Modes}).
119For instance, entering C mode runs the hooks @code{prog-mode-hook} and
120@code{c-mode-hook}. @xref{Hooks}, for information about hooks.
121
e0070075 122@ifnottex
ec7ae032
CY
123 Separate manuals are available for the modes for Ada (@pxref{Top,,
124Ada Mode, ada-mode, Ada Mode}), C/C++/Objective C/Java/Corba
125IDL/Pike/AWK (@pxref{Top, , CC Mode, ccmode, CC Mode}), and IDLWAVE
126(@pxref{Top,, IDLWAVE, idlwave, IDLWAVE User Manual}).
e0070075
GM
127@end ifnottex
128@iftex
ec7ae032 129 The Emacs distribution contains Info manuals for the major modes for
1df7defd 130Ada, C/C++/Objective C/Java/Corba IDL/Pike/AWK, and IDLWAVE@. For
eceeb5fc 131Fortran mode, @pxref{Fortran,,, emacs-xtra, Specialized Emacs Features}.
e0070075 132@end iftex
6bf7aab6 133
93da5dff
RS
134@node Defuns
135@section Top-Level Definitions, or Defuns
6bf7aab6 136
e722aa81
CY
137 In Emacs, a major definition at the top level in the buffer, such as
138a function, is called a @dfn{defun}. The name comes from Lisp, but in
139Emacs we use it for all languages.
6bf7aab6 140
93da5dff
RS
141@menu
142* Left Margin Paren:: An open-paren or similar opening delimiter
143 starts a defun if it is at the left margin.
144* Moving by Defuns:: Commands to move over or mark a major definition.
145* Imenu:: Making buffer indexes as menus.
146* Which Function:: Which Function mode shows which function you are in.
147@end menu
6bf7aab6 148
93da5dff
RS
149@node Left Margin Paren
150@subsection Left Margin Convention
6bf7aab6 151
93da5dff
RS
152@cindex open-parenthesis in leftmost column
153@cindex ( in leftmost column
e722aa81
CY
154 Many programming-language modes assume by default that any opening
155delimiter found at the left margin is the start of a top-level
156definition, or defun. Therefore, @strong{don't put an opening
157delimiter at the left margin unless it should have that significance}.
158For instance, never put an open-parenthesis at the left margin in a
159Lisp file unless it is the start of a top-level list.
160
161 The convention speeds up many Emacs operations, which would
162otherwise have to scan back to the beginning of the buffer to analyze
163the syntax of the code.
93da5dff
RS
164
165 If you don't follow this convention, not only will you have trouble
166when you explicitly use the commands for motion by defuns; other
e722aa81
CY
167features that use them will also give you trouble. This includes the
168indentation commands (@pxref{Program Indent}) and Font Lock mode
169(@pxref{Font Lock}).
93da5dff
RS
170
171 The most likely problem case is when you want an opening delimiter
172at the start of a line inside a string. To avoid trouble, put an
aca2cfd2
AM
173escape character (@samp{\}, in C and Emacs Lisp, @samp{/} in some
174other Lisp dialects) before the opening delimiter. This will not
175affect the contents of the string, but will prevent that opening
176delimiter from starting a defun. Here's an example:
6bf7aab6 177
93da5dff
RS
178@example
179 (insert "Foo:
180\(bar)
181")
182@end example
6bf7aab6 183
5b8fe684
RS
184 To help you catch violations of this convention, Font Lock mode
185highlights confusing opening delimiters (those that ought to be
186quoted) in bold red.
187
eceeb5fc 188@vindex open-paren-in-column-0-is-defun-start
e722aa81 189 If you need to override this convention, you can do so by setting
eceeb5fc 190the variable @code{open-paren-in-column-0-is-defun-start}.
aca2cfd2 191If this user option is set to @code{t} (the default), opening
eceeb5fc 192parentheses or braces at column zero always start defuns. When it is
aca2cfd2
AM
193@code{nil}, defuns are found by searching for parens or braces at the
194outermost level.
aca2cfd2 195
e722aa81
CY
196 Usually, you should leave this option at its default value of
197@code{t}. If your buffer contains parentheses or braces in column
198zero which don't start defuns, and it is somehow impractical to remove
199these parentheses or braces, it might be helpful to set the option to
200@code{nil}. Be aware that this might make scrolling and display in
201large buffers quite sluggish. Furthermore, the parentheses and braces
202must be correctly matched throughout the buffer for it to work
203properly.
93da5dff
RS
204
205@node Moving by Defuns
206@subsection Moving by Defuns
6bf7aab6
DL
207@cindex defuns
208
93da5dff
RS
209 These commands move point or set up the region based on top-level
210major definitions, also called @dfn{defuns}.
520c3f4c 211
6bf7aab6
DL
212@table @kbd
213@item C-M-a
214Move to beginning of current or preceding defun
215(@code{beginning-of-defun}).
216@item C-M-e
217Move to end of current or following defun (@code{end-of-defun}).
218@item C-M-h
219Put region around whole current or following defun (@code{mark-defun}).
220@end table
221
f772775c
RS
222@cindex move to beginning or end of function
223@cindex function, move to beginning or end
224@kindex C-M-a
225@kindex C-M-e
226@kindex C-M-h
227@findex beginning-of-defun
228@findex end-of-defun
229@findex mark-defun
230 The commands to move to the beginning and end of the current defun
231are @kbd{C-M-a} (@code{beginning-of-defun}) and @kbd{C-M-e}
232(@code{end-of-defun}). If you repeat one of these commands, or use a
233positive numeric argument, each repetition moves to the next defun in
234the direction of motion.
235
236 @kbd{C-M-a} with a negative argument @minus{}@var{n} moves forward
237@var{n} times to the next beginning of a defun. This is not exactly
238the same place that @kbd{C-M-e} with argument @var{n} would move to;
239the end of this defun is not usually exactly the same place as the
93da5dff
RS
240beginning of the following defun. (Whitespace, comments, and perhaps
241declarations can separate them.) Likewise, @kbd{C-M-e} with a
242negative argument moves back to an end of a defun, which is not quite
243the same as @kbd{C-M-a} with a positive argument.
f772775c 244
4946337d 245@kindex C-M-h @r{(C mode)}
6bf7aab6 246@findex c-mark-function
25716538
CY
247 To operate on the current defun, use @kbd{C-M-h}
248(@code{mark-defun}), which sets the mark at the end of the current
249defun and puts point at its beginning. @xref{Marking Objects}. This
250is the easiest way to get ready to kill the defun in order to move it
251to a different place in the file. If you use the command while point
252is between defuns, it uses the following defun. If you use the
253command while the mark is already active, it sets the mark but does
254not move point; furthermore, each successive use of @kbd{C-M-h}
255extends the end of the region to include one more defun.
93da5dff
RS
256
257 In C mode, @kbd{C-M-h} runs the function @code{c-mark-function},
258which is almost the same as @code{mark-defun}; the difference is that
259it backs up over the argument declarations, function name and returned
e79c6b89
RS
260data type so that the entire C function is inside the region. This is
261an example of how major modes adjust the standard key bindings so that
262they do their standard jobs in a way better fitting a particular
263language. Other major modes may replace any or all of these key
264bindings for that purpose.
6bf7aab6 265
93da5dff
RS
266@node Imenu
267@subsection Imenu
e79c6b89
RS
268@cindex index of buffer definitions
269@cindex buffer definitions index
93da5dff 270
269b7745 271 The Imenu facility offers a way to find the major definitions in
5e6f9132
RS
272a file by name. It is also useful in text formatter major modes,
273where it treats each chapter, section, etc., as a definition.
e79c6b89 274(@xref{Tags}, for a more powerful feature that handles multiple files
5e6f9132 275together.)
93da5dff
RS
276
277@findex imenu
5e6f9132 278 If you type @kbd{M-x imenu}, it reads the name of a definition using
e79c6b89
RS
279the minibuffer, then moves point to that definition. You can use
280completion to specify the name; the command always displays the whole
281list of valid names.
d2fab838 282
5e6f9132 283@findex imenu-add-menubar-index
d2fab838 284 Alternatively, you can bind the command @code{imenu} to a mouse
e79c6b89
RS
285click. Then it displays mouse menus for you to select a definition
286name. You can also add the buffer's index to the menu bar by calling
287@code{imenu-add-menubar-index}. If you want to have this menu bar
288item available for all buffers in a certain major mode, you can do
289this by adding @code{imenu-add-menubar-index} to its mode hook. But
dfec8297
RS
290if you have done that, you will have to wait a little while each time
291you visit a file in that mode, while Emacs finds all the definitions
292in that buffer.
93da5dff
RS
293
294@vindex imenu-auto-rescan
295 When you change the contents of a buffer, if you add or delete
e79c6b89 296definitions, you can update the buffer's index based on the
d2fab838 297new contents by invoking the @samp{*Rescan*} item in the menu.
dcace646
EZ
298Rescanning happens automatically if you set @code{imenu-auto-rescan} to
299a non-@code{nil} value. There is no need to rescan because of small
e79c6b89 300changes in the text.
93da5dff
RS
301
302@vindex imenu-sort-function
d2fab838 303 You can customize the way the menus are sorted by setting the
e79c6b89 304variable @code{imenu-sort-function}. By default, names are ordered as
5e6f9132
RS
305they occur in the buffer; if you want alphabetic sorting, use the
306symbol @code{imenu--sort-by-name} as the value. You can also
307define your own comparison function by writing Lisp code.
93da5dff
RS
308
309 Imenu provides the information to guide Which Function mode
310@ifnottex
311(@pxref{Which Function}).
312@end ifnottex
313@iftex
314(see below).
315@end iftex
316The Speedbar can also use it (@pxref{Speedbar}).
317
318@node Which Function
319@subsection Which Function Mode
af056954 320@cindex current function name in mode line
93da5dff 321
ec7ae032
CY
322 Which Function mode is a global minor mode (@pxref{Minor Modes})
323which displays the current function name in the mode line, updating it
324as you move around in a buffer.
93da5dff
RS
325
326@findex which-function-mode
327@vindex which-func-modes
df7593dd 328 To either enable or disable Which Function mode, use the command
05b621a6
CY
329@kbd{M-x which-function-mode}. Which Function mode is a global minor
330mode. By default, it takes effect in all major modes major modes that
1df7defd 331know how to support it (i.e., all the major modes that support
05b621a6
CY
332Imenu). You can restrict it to a specific list of major modes by
333changing the value of the variable @code{which-func-modes} from
334@code{t} (which means to support all available major modes) to a list
335of major mode names.
6bf7aab6
DL
336
337@node Program Indent
338@section Indentation for Programs
339@cindex indentation for programs
340
341 The best way to keep a program properly indented is to use Emacs to
e722aa81
CY
342reindent it as you change it. Emacs has commands to indent either a
343single line, a specified number of lines, or all of the lines inside a
344single parenthetical grouping.
6bf7aab6 345
ec7ae032
CY
346 @xref{Indentation}, for general information about indentation. This
347section describes indentation features specific to programming
348language modes.
349
6bf7aab6 350@menu
8838673e 351* Basic Indent:: Indenting a single line.
6bf7aab6 352* Multi-line Indent:: Commands to reindent many lines at once.
8838673e
GM
353* Lisp Indent:: Specifying how each Lisp function should be indented.
354* C Indent:: Extra features for indenting C and related modes.
355* Custom C Indent:: Controlling indentation style for C and related modes.
6bf7aab6
DL
356@end menu
357
d2fab838 358@cindex pretty-printer
ec7ae032
CY
359 Emacs also provides a Lisp pretty-printer in the @code{pp} package,
360which reformats Lisp objects with nice-looking indentation.
6bf7aab6
DL
361
362@node Basic Indent
363@subsection Basic Program Indentation Commands
364
6bf7aab6
DL
365@table @kbd
366@item @key{TAB}
ec7ae032 367Adjust indentation of current line (@code{indent-for-tab-command}).
6bf7aab6 368@item C-j
bb63d706
RS
369Insert a newline, then adjust indentation of following line
370(@code{newline-and-indent}).
6bf7aab6
DL
371@end table
372
373@kindex TAB @r{(programming modes)}
4f7666dc
RS
374@findex c-indent-command
375@findex indent-line-function
f772775c 376@findex indent-for-tab-command
ec7ae032
CY
377 The basic indentation command is @key{TAB}
378(@code{indent-for-tab-command}), which was documented in
379@ref{Indentation}. In programming language modes, @key{TAB} indents
380the current line, based on the indentation and syntactic content of
381the preceding lines; if the region is active, @key{TAB} indents each
382line within the region, not just the current line.
6bf7aab6 383
6d262977 384@kindex C-j @r{(indenting source code)}
6bf7aab6 385@findex newline-and-indent
ec7ae032
CY
386 The command @kbd{C-j} (@code{newline-and-indent}), which was
387documented in @ref{Indentation Commands}, does the same as @key{RET}
388followed by @key{TAB}: it inserts a new line, then adjusts the line's
389indentation.
390
391 When indenting a line that starts within a parenthetical grouping,
392Emacs usually places the start of the line under the preceding line
393within the group, or under the text after the parenthesis. If you
1df7defd 394manually give one of these lines a nonstandard indentation (e.g., for
ec7ae032
CY
395aesthetic purposes), the lines below will follow it.
396
397 The indentation commands for most programming language modes assume
398that a open-parenthesis, open-brace or other opening delimiter at the
399left margin is the start of a function. If the code you are editing
400violates this assumption---even if the delimiters occur in strings or
401comments---you must set @code{open-paren-in-column-0-is-defun-start}
402to @code{nil} for indentation to work properly. @xref{Left Margin
e722aa81 403Paren}.
6bf7aab6
DL
404
405@node Multi-line Indent
406@subsection Indenting Several Lines
407
e722aa81
CY
408 Sometimes, you may want to reindent several lines of code at a time.
409One way to do this is to use the mark; when the mark is active and the
ec7ae032
CY
410region is non-empty, @key{TAB} indents every line in the region.
411Alternatively, the command @kbd{C-M-\} (@code{indent-region}) indents
412every line in the region, whether or not the mark is active
413(@pxref{Indentation Commands}).
414
415 In addition, Emacs provides the following commands for indenting
416large chunks of code:
6bf7aab6
DL
417
418@table @kbd
419@item C-M-q
e722aa81 420Reindent all the lines within one parenthetical grouping.
6bf7aab6 421@item C-u @key{TAB}
93da5dff
RS
422Shift an entire parenthetical grouping rigidly sideways so that its
423first line is properly indented.
5cc06e0b
EZ
424@item M-x indent-code-rigidly
425Shift all the lines in the region rigidly sideways, but do not alter
426lines that start inside comments and strings.
6bf7aab6
DL
427@end table
428
429@kindex C-M-q
6daf3e15 430@findex indent-pp-sexp
e722aa81
CY
431 To reindent the contents of a single parenthetical grouping,
432position point before the beginning of the grouping and type
433@kbd{C-M-q}. This changes the relative indentation within the
1df7defd 434grouping, without affecting its overall indentation (i.e., the
e722aa81
CY
435indentation of the line where the grouping starts). The function that
436@kbd{C-M-q} runs depends on the major mode; it is
437@code{indent-pp-sexp} in Lisp mode, @code{c-indent-exp} in C mode,
438etc. To correct the overall indentation as well, type @key{TAB}
439first.
440
6bf7aab6 441@kindex C-u TAB
e722aa81
CY
442 If you like the relative indentation within a grouping but not the
443indentation of its first line, move point to that first line and type
444@kbd{C-u @key{TAB}}. In Lisp, C, and some other major modes,
445@key{TAB} with a numeric argument reindents the current line as usual,
446then reindents by the same amount all the lines in the parenthetical
447grouping starting on the current line. It is clever, though, and does
448not alter lines that start inside strings. Neither does it alter C
449preprocessor lines when in C mode, but it does reindent any
450continuation lines that may be attached to them.
6bf7aab6 451
5cc06e0b 452@findex indent-code-rigidly
e722aa81
CY
453 The command @kbd{M-x indent-code-rigidly} rigidly shifts all the
454lines in the region sideways, like @code{indent-rigidly} does
455(@pxref{Indentation Commands}). It doesn't alter the indentation of
456lines that start inside a string, unless the region also starts inside
457that string. The prefix arg specifies the number of columns to
458indent.
6bf7aab6
DL
459
460@node Lisp Indent
461@subsection Customizing Lisp Indentation
462@cindex customizing Lisp indentation
463
464 The indentation pattern for a Lisp expression can depend on the function
465called by the expression. For each Lisp function, you can choose among
466several predefined patterns of indentation, or define an arbitrary one with
467a Lisp program.
468
469 The standard pattern of indentation is as follows: the second line of the
470expression is indented under the first argument, if that is on the same
471line as the beginning of the expression; otherwise, the second line is
472indented underneath the function name. Each following line is indented
473under the previous line whose nesting depth is the same.
474
475@vindex lisp-indent-offset
476 If the variable @code{lisp-indent-offset} is non-@code{nil}, it overrides
477the usual indentation pattern for the second line of an expression, so that
478such lines are always indented @code{lisp-indent-offset} more columns than
479the containing list.
480
481@vindex lisp-body-indent
d2fab838 482 Certain functions override the standard pattern. Functions whose
269b7745 483names start with @code{def} treat the second lines as the start of
d2fab838
RS
484a @dfn{body}, by indenting the second line @code{lisp-body-indent}
485additional columns beyond the open-parenthesis that starts the
486expression.
6bf7aab6 487
b771b258 488@cindex @code{lisp-indent-function} property
d2fab838 489 You can override the standard pattern in various ways for individual
690a6d08 490functions, according to the @code{lisp-indent-function} property of
ec7ae032
CY
491the function name. This is normally done for macro definitions, using
492the @code{declare} construct. @xref{Defining Macros,,, elisp, the
493Emacs Lisp Reference Manual}.
6bf7aab6
DL
494
495@node C Indent
496@subsection Commands for C Indentation
497
93da5dff 498 Here are special features for indentation in C mode and related modes:
6bf7aab6
DL
499
500@table @code
501@item C-c C-q
502@kindex C-c C-q @r{(C mode)}
503@findex c-indent-defun
504Reindent the current top-level function definition or aggregate type
505declaration (@code{c-indent-defun}).
506
507@item C-M-q
508@kindex C-M-q @r{(C mode)}
509@findex c-indent-exp
510Reindent each line in the balanced expression that follows point
7ae8ad94
RS
511(@code{c-indent-exp}). A prefix argument inhibits warning messages
512about invalid syntax.
6bf7aab6
DL
513
514@item @key{TAB}
515@findex c-indent-command
516Reindent the current line, and/or in some cases insert a tab character
517(@code{c-indent-command}).
518
7ae8ad94 519@vindex c-tab-always-indent
6bf7aab6
DL
520If @code{c-tab-always-indent} is @code{t}, this command always reindents
521the current line and does nothing else. This is the default.
522
523If that variable is @code{nil}, this command reindents the current line
524only if point is at the left margin or in the line's indentation;
525otherwise, it inserts a tab (or the equivalent number of spaces,
526if @code{indent-tabs-mode} is @code{nil}).
527
528Any other value (not @code{nil} or @code{t}) means always reindent the
7ae8ad94 529line, and also insert a tab if within a comment or a string.
6bf7aab6
DL
530@end table
531
532 To reindent the whole current buffer, type @kbd{C-x h C-M-\}. This
533first selects the whole buffer as the region, then reindents that
534region.
535
536 To reindent the current block, use @kbd{C-M-u C-M-q}. This moves
537to the front of the block and then reindents it all.
538
539@node Custom C Indent
540@subsection Customizing C Indentation
93da5dff 541@cindex style (for indentation)
6bf7aab6 542
7ae8ad94
RS
543 C mode and related modes use a flexible mechanism for customizing
544indentation. C mode indents a source line in two steps: first it
545classifies the line syntactically according to its contents and
546context; second, it determines the indentation offset associated by
547your selected @dfn{style} with the syntactic construct and adds this
548onto the indentation of the @dfn{anchor statement}.
6bf7aab6 549
93da5dff 550@table @kbd
7ae8ad94
RS
551@item C-c . @key{RET} @var{style} @key{RET}
552Select a predefined style @var{style} (@code{c-set-style}).
93da5dff 553@end table
6bf7aab6 554
108262a0
AM
555 A @dfn{style} is a named collection of customizations that can be
556used in C mode and the related modes. @ref{Styles,,, ccmode, The CC
557Mode Manual}, for a complete description. Emacs comes with several
93da5dff
RS
558predefined styles, including @code{gnu}, @code{k&r}, @code{bsd},
559@code{stroustrup}, @code{linux}, @code{python}, @code{java},
108262a0
AM
560@code{whitesmith}, @code{ellemtel}, and @code{awk}. Some of these
561styles are primarily intended for one language, but any of them can be
562used with any of the languages supported by these modes. To find out
563what a style looks like, select it and reindent some code, e.g., by
564typing @key{C-M-q} at the start of a function definition.
6bf7aab6 565
7ae8ad94 566@kindex C-c . @r{(C mode)}
93da5dff 567@findex c-set-style
dfec8297
RS
568 To choose a style for the current buffer, use the command @w{@kbd{C-c
569.}}. Specify a style name as an argument (case is not significant).
7ae8ad94
RS
570This command affects the current buffer only, and it affects only
571future invocations of the indentation commands; it does not reindent
108262a0
AM
572the code already in the buffer. To reindent the whole buffer in the
573new style, you can type @kbd{C-x h C-M-\}.
6bf7aab6 574
93da5dff
RS
575@vindex c-default-style
576 You can also set the variable @code{c-default-style} to specify the
7ae8ad94
RS
577default style for various major modes. Its value should be either the
578style's name (a string) or an alist, in which each element specifies
579one major mode and which indentation style to use for it. For
580example,
6bf7aab6
DL
581
582@example
93da5dff 583(setq c-default-style
ae742cb5
CY
584 '((java-mode . "java")
585 (awk-mode . "awk")
586 (other . "gnu")))
6bf7aab6
DL
587@end example
588
93da5dff 589@noindent
108262a0
AM
590specifies explicit choices for Java and AWK modes, and the default
591@samp{gnu} style for the other C-like modes. (These settings are
592actually the defaults.) This variable takes effect when you select
593one of the C-like major modes; thus, if you specify a new default
594style for Java mode, you can make it take effect in an existing Java
595mode buffer by typing @kbd{M-x java-mode} there.
6bf7aab6 596
93da5dff
RS
597 The @code{gnu} style specifies the formatting recommended by the GNU
598Project for C; it is the default, so as to encourage use of our
599recommended style.
6bf7aab6 600
108262a0
AM
601 @xref{Indentation Engine Basics,,, ccmode, the CC Mode Manual}, and
602@ref{Customizing Indentation,,, ccmode, the CC Mode Manual}, for more
603information on customizing indentation for C and related modes,
93da5dff
RS
604including how to override parts of an existing style and how to define
605your own styles.
6bf7aab6 606
d3098e1e
CY
607@findex c-guess
608@findex c-guess-install
609 As an alternative to specifying a style, you can tell Emacs to guess
610a style by typing @kbd{M-x c-guess} in a sample code buffer. You can
611then apply the guessed style to other buffers with @kbd{M-x
47d42d81 612c-guess-install}. @xref{Guessing the Style,,, ccmode, the CC Mode
d3098e1e 613Manual}, for details.
47d42d81 614
93da5dff
RS
615@node Parentheses
616@section Commands for Editing with Parentheses
6bf7aab6 617
93da5dff
RS
618@findex check-parens
619@cindex unbalanced parentheses and quotes
620 This section describes the commands and features that take advantage
621of the parenthesis structure in a program, or help you keep it
622balanced.
6bf7aab6 623
93da5dff
RS
624 When talking about these facilities, the term ``parenthesis'' also
625includes braces, brackets, or whatever delimiters are defined to match
e79c6b89 626in pairs. The major mode controls which delimiters are significant,
6cfd0fa2
CY
627through the syntax table (@pxref{Syntax Tables,, Syntax Tables, elisp,
628The Emacs Lisp Reference Manual}). In Lisp, only parentheses count;
629in C, these commands apply to braces and brackets too.
6bf7aab6 630
93da5dff
RS
631 You can use @kbd{M-x check-parens} to find any unbalanced
632parentheses and unbalanced string quotes in the buffer.
6bf7aab6 633
93da5dff
RS
634@menu
635* Expressions:: Expressions with balanced parentheses.
636* Moving by Parens:: Commands for moving up, down and across
637 in the structure of parentheses.
8838673e 638* Matching:: Insertion of a close-delimiter flashes matching open.
93da5dff 639@end menu
6bf7aab6 640
93da5dff
RS
641@node Expressions
642@subsection Expressions with Balanced Parentheses
6bf7aab6 643
93da5dff
RS
644@cindex sexp
645@cindex expression
646@cindex balanced expression
ec7ae032
CY
647 Each programming language mode has its own definition of a
648@dfn{balanced expression}. Balanced expressions typically include
649individual symbols, numbers, and string constants, as well as pieces
650of code enclosed in a matching pair of delimiters. The following
651commands deal with balanced expressions (in Emacs, such expressions
652are referred to internally as @dfn{sexps}@footnote{The word ``sexp''
653is used to refer to an expression in Lisp.}).
6bf7aab6 654
93da5dff
RS
655@table @kbd
656@item C-M-f
657Move forward over a balanced expression (@code{forward-sexp}).
658@item C-M-b
ea118de1 659Move backward over a balanced expression (@code{backward-sexp}).
93da5dff
RS
660@item C-M-k
661Kill balanced expression forward (@code{kill-sexp}).
93da5dff
RS
662@item C-M-t
663Transpose expressions (@code{transpose-sexps}).
664@item C-M-@@
649d1cbe 665@itemx C-M-@key{SPC}
93da5dff
RS
666Put mark after following expression (@code{mark-sexp}).
667@end table
6bf7aab6 668
93da5dff
RS
669@kindex C-M-f
670@kindex C-M-b
671@findex forward-sexp
672@findex backward-sexp
673 To move forward over a balanced expression, use @kbd{C-M-f}
674(@code{forward-sexp}). If the first significant character after point
1df7defd 675is an opening delimiter (e.g., @samp{(}, @samp{[} or @samp{@{} in C),
ec7ae032
CY
676this command moves past the matching closing delimiter. If the
677character begins a symbol, string, or number, the command moves over
678that.
6bf7aab6 679
93da5dff 680 The command @kbd{C-M-b} (@code{backward-sexp}) moves backward over a
ec7ae032
CY
681balanced expression---like @kbd{C-M-f}, but in the reverse direction.
682If the expression is preceded by any prefix characters (single-quote,
683backquote and comma, in Lisp), the command moves back over them as
684well.
685
686 @kbd{C-M-f} or @kbd{C-M-b} with an argument repeats that operation
687the specified number of times; with a negative argument means to move
688in the opposite direction. In most modes, these two commands move
689across comments as if they were whitespace. Note that their keys,
690@kbd{C-M-f} and @kbd{C-M-b}, are analogous to @kbd{C-f} and @kbd{C-b},
691which move by characters (@pxref{Moving Point}), and @kbd{M-f} and
692@kbd{M-b}, which move by words (@pxref{Words}).
6bf7aab6 693
93da5dff
RS
694@cindex killing expressions
695@kindex C-M-k
696@findex kill-sexp
ec7ae032
CY
697 To kill a whole balanced expression, type @kbd{C-M-k}
698(@code{kill-sexp}). This kills the text that @kbd{C-M-f} would move
699over.
6bf7aab6 700
93da5dff
RS
701@cindex transposition of expressions
702@kindex C-M-t
703@findex transpose-sexps
ec7ae032
CY
704 @kbd{C-M-t} (@code{transpose-sexps}) switches the positions of the
705previous balanced expression and the next one. It is analogous to the
706@kbd{C-t} command, which transposes characters (@pxref{Transpose}).
707An argument to @kbd{C-M-t} serves as a repeat count, moving the
708previous expression over that many following ones. A negative
709argument moves the previous balanced expression backwards across those
710before it. An argument of zero, rather than doing nothing, transposes
711the balanced expressions ending at or after point and the mark.
6bf7aab6 712
93da5dff 713@kindex C-M-@@
649d1cbe 714@kindex C-M-@key{SPC}
93da5dff 715@findex mark-sexp
ec7ae032
CY
716 To operate on balanced expressions with a command which acts on the
717region, type @kbd{C-M-@key{SPC}} (@code{mark-sexp}). This sets the
718mark where @kbd{C-M-f} would move to. While the mark is active, each
719successive call to this command extends the region by shifting the
720mark by one expression. Positive or negative numeric arguments move
721the mark forward or backward by the specified number of expressions.
722The alias @kbd{C-M-@@} is equivalent to @kbd{C-M-@key{SPC}}.
723@xref{Marking Objects}, for more information about this and related
724commands.
93da5dff
RS
725
726 In languages that use infix operators, such as C, it is not possible
ec7ae032
CY
727to recognize all balanced expressions because there can be multiple
728possibilities at a given position. For example, C mode does not treat
729@samp{foo + bar} as a single expression, even though it @emph{is} one
730C expression; instead, it recognizes @samp{foo} as one expression and
731@samp{bar} as another, with the @samp{+} as punctuation between them.
732However, C mode recognizes @samp{(foo + bar)} as a single expression,
733because of the parentheses.
93da5dff
RS
734
735@node Moving by Parens
736@subsection Moving in the Parenthesis Structure
737
738@cindex parenthetical groupings
739@cindex parentheses, moving across
740@cindex matching parenthesis and braces, moving to
741@cindex braces, moving across
742@cindex list commands
3fbb05ff 743
ec7ae032
CY
744 The following commands move over groupings delimited by parentheses
745(or whatever else serves as delimiters in the language you are working
746with). They ignore strings and comments, including any parentheses
747within them, and also ignore parentheses that are ``quoted'' with an
748escape character. These commands are mainly intended for editing
749programs, but can be useful for editing any text containing
750parentheses. They are referred to internally as ``list'' commands
751because in Lisp these groupings are lists.
6bf7aab6 752
ec7ae032
CY
753 These commands assume that the starting point is not inside a string
754or a comment. If you invoke them from inside a string or comment, the
755results are unreliable.
3fbb05ff 756
6bf7aab6 757@table @kbd
93da5dff
RS
758@item C-M-n
759Move forward over a parenthetical group (@code{forward-list}).
760@item C-M-p
ea118de1 761Move backward over a parenthetical group (@code{backward-list}).
93da5dff
RS
762@item C-M-u
763Move up in parenthesis structure (@code{backward-up-list}).
764@item C-M-d
765Move down in parenthesis structure (@code{down-list}).
6bf7aab6
DL
766@end table
767
93da5dff
RS
768@kindex C-M-n
769@kindex C-M-p
770@findex forward-list
771@findex backward-list
772 The ``list'' commands @kbd{C-M-n} (@code{forward-list}) and
3fbb05ff
AM
773@kbd{C-M-p} (@code{backward-list}) move forward or backward over one
774(or @var{n}) parenthetical groupings.
6bf7aab6 775
93da5dff 776@kindex C-M-u
93da5dff 777@findex backward-up-list
93da5dff
RS
778 @kbd{C-M-n} and @kbd{C-M-p} try to stay at the same level in the
779parenthesis structure. To move @emph{up} one (or @var{n}) levels, use
780@kbd{C-M-u} (@code{backward-up-list}). @kbd{C-M-u} moves backward up
781past one unmatched opening delimiter. A positive argument serves as a
782repeat count; a negative argument reverses the direction of motion, so
d2fab838 783that the command moves forward and up one or more levels.
93da5dff 784
dfec8297
RS
785@kindex C-M-d
786@findex down-list
93da5dff
RS
787 To move @emph{down} in the parenthesis structure, use @kbd{C-M-d}
788(@code{down-list}). In Lisp mode, where @samp{(} is the only opening
789delimiter, this is nearly the same as searching for a @samp{(}. An
790argument specifies the number of levels to go down.
6bf7aab6
DL
791
792@node Matching
ec7ae032 793@subsection Matching Parentheses
6bf7aab6
DL
794@cindex matching parentheses
795@cindex parentheses, displaying matches
796
ec7ae032
CY
797 Emacs has a number of @dfn{parenthesis matching} features, which
798make it easy to see how and whether parentheses (or other delimiters)
799match up.
800
801 Whenever you type a self-inserting character that is a closing
802delimiter, the cursor moves momentarily to the location of the
93da5dff 803matching opening delimiter, provided that is on the screen. If it is
e79c6b89
RS
804not on the screen, Emacs displays some of the text near it in the echo
805area. Either way, you can tell which grouping you are closing off.
ec7ae032 806If the opening delimiter and closing delimiter are mismatched---such
93da5dff 807as in @samp{[x)}---a warning message is displayed in the echo area.
6bf7aab6
DL
808
809@vindex blink-matching-paren
810@vindex blink-matching-paren-distance
811@vindex blink-matching-delay
ec7ae032 812 Three variables control the display of matching parentheses:
054af0fd 813
ec7ae032
CY
814@itemize @bullet
815@item
816@code{blink-matching-paren} turns the feature on or off: @code{nil}
817disables it, but the default is @code{t} to enable it.
f772775c 818
ec7ae032
CY
819@item
820@code{blink-matching-delay} says how many seconds to leave the cursor
821on the matching opening delimiter, before bringing it back to the real
822location of point. This may be an integer or floating-point number;
823the default is 1.
f772775c 824
ec7ae032
CY
825@item
826@code{blink-matching-paren-distance} specifies how many characters
f772775c 827back to search to find the matching opening delimiter. If the match
ec7ae032
CY
828is not found in that distance, Emacs stops scanning and nothing is
829displayed. The default is 102400.
830@end itemize
6bf7aab6
DL
831
832@cindex Show Paren mode
79f9f655 833@cindex highlighting matching parentheses
6bf7aab6 834@findex show-paren-mode
ec7ae032
CY
835 Show Paren mode, a global minor mode, provides a more powerful kind
836of automatic matching. Whenever point is before an opening delimiter
837or after a closing delimiter, both that delimiter and its opposite
838delimiter are highlighted. To toggle Show Paren mode, type @kbd{M-x
839show-paren-mode}.
840
841@cindex Electric Pair mode
842@cindex inserting matching parentheses
843@findex electric-pair-mode
844 Electric Pair mode, a global minor mode, provides a way to easily
845insert matching delimiters. Whenever you insert an opening delimiter,
846the matching closing delimiter is automatically inserted as well,
3b8d5131
JT
847leaving point between the two. Conversely, when you insert a closing
848delimiter over an existing one, no inserting takes places and that
849position is simply skipped over. These variables control additional
850features of Electric Pair mode:
851
852@itemize @bullet
853@item
854@code{electric-pair-preserve-balance}, when non-@code{nil}, makes the
855default pairing logic balance out the number of opening and closing
856delimiters.
857
858@item
859@code{electric-pair-delete-adjacent-pairs}, when non-@code{nil}, makes
860backspacing between two adjacent delimiters also automatically delete
861the closing delimiter.
862
863@item
864@code{electric-pair-open-newline-between-pairs}, when non-@code{nil},
865makes inserting inserting a newline between two adjacent pairs also
866automatically open and extra newline after point.
867
868@item
869@code{electric-skip-whitespace}, when non-@code{nil}, causes the minor
870mode to skip whitespace forward before deciding whether to skip over
871the closing delimiter.
872@end itemize
873
874To toggle Electric Pair mode, type @kbd{M-x electric-pair-mode}.
6bf7aab6
DL
875
876@node Comments
877@section Manipulating Comments
878@cindex comments
879
880 Because comments are such an important part of programming, Emacs
8f50b630
RS
881provides special commands for editing and inserting comments. It can
882also do spell checking on comments with Flyspell Prog mode
883(@pxref{Spelling}).
6bf7aab6 884
ebf10822
CY
885 Some major modes have special rules for indenting different kinds of
886comments. For example, in Lisp code, comments starting with two
887semicolons are indented as if they were lines of code, while those
888starting with three semicolons are supposed to be aligned to the left
889margin and are often used for sectioning purposes. Emacs understand
890these conventions; for instance, typing @key{TAB} on a comment line
891will indent the comment to the appropriate position.
892
893@example
894;; This function is just an example.
895;;; Here either two or three semicolons are appropriate.
896(defun foo (x)
897;;; And now, the first part of the function:
898 ;; The following line adds one.
899 (1+ x)) ; This line adds one.
900@end example
901
6bf7aab6 902@menu
5b31640c 903* Comment Commands:: Inserting, killing, and aligning comments.
93da5dff
RS
904* Multi-Line Comments:: Commands for adding and editing multi-line comments.
905* Options for Comments::Customizing the comment features.
6bf7aab6
DL
906@end menu
907
908@node Comment Commands
909@subsection Comment Commands
6bf7aab6 910@cindex indentation for comments
5b31640c 911@cindex alignment for comments
6bf7aab6 912
ebf10822 913 The following commands operate on comments:
6bf7aab6 914
7ae8ad94
RS
915@table @asis
916@item @kbd{M-;}
ebf10822
CY
917Insert or realign comment on current line; if the region is active,
918comment or uncomment the region instead (@code{comment-dwim}).
7ae8ad94 919@item @kbd{C-u M-;}
9234c238 920Kill comment on current line (@code{comment-kill}).
7ae8ad94 921@item @kbd{C-x ;}
47c1b5f4 922Set comment column (@code{comment-set-column}).
7ae8ad94
RS
923@item @kbd{C-M-j}
924@itemx @kbd{M-j}
6bf7aab6 925Like @key{RET} followed by inserting and aligning a comment
108262a0 926(@code{comment-indent-new-line}). @xref{Multi-Line Comments}.
7ae8ad94
RS
927@item @kbd{M-x comment-region}
928@itemx @kbd{C-c C-c} (in C-like modes)
ebf10822 929Add comment delimiters to all the lines in the region.
6bf7aab6
DL
930@end table
931
9234c238
RS
932@kindex M-;
933@findex comment-dwim
934 The command to create or align a comment is @kbd{M-;}
935(@code{comment-dwim}). The word ``dwim'' is an acronym for ``Do What
936I Mean''; it indicates that this command can be used for many
937different jobs relating to comments, depending on the situation where
938you use it.
939
ebf10822
CY
940 When a region is active (@pxref{Mark}), @kbd{M-;} either adds
941comment delimiters to the region, or removes them. If every line in
942the region is already a comment, it ``uncomments'' each of those lines
943by removing their comment delimiters. Otherwise, it adds comment
944delimiters to enclose the text in the region.
945
946 If you supply a prefix argument to @kbd{M-;} when a region is
947active, that specifies the number of comment delimiters to add or
948delete. A positive argument @var{n} adds @var{n} delimiters, while a
949negative argument @var{-n} removes @var{n} delimiters.
950
951 If the region is not active, and there is no existing comment on the
952current line, @kbd{M-;} adds a new comment to the current line. If
1df7defd 953the line is blank (i.e., empty or containing only whitespace
ebf10822
CY
954characters), the comment is indented to the same position where
955@key{TAB} would indent to (@pxref{Basic Indent}). If the line is
956non-blank, the comment is placed after the last non-whitespace
957character on the line; normally, Emacs tries putting it at the column
958specified by the variable @code{comment-column} (@pxref{Options for
959Comments}), but if the line already extends past that column, it puts
960the comment at some suitable position, usually separated from the
961non-comment text by at least one space. In each case, Emacs places
962point after the comment's starting delimiter, so that you can start
963typing the comment text right away.
9234c238
RS
964
965 You can also use @kbd{M-;} to align an existing comment. If a line
5b31640c 966already contains the comment-start string, @kbd{M-;} realigns it to
ebf10822
CY
967the conventional alignment and moves point after the comment's
968starting delimiter. As an exception, comments starting in column 0
969are not moved. Even when an existing comment is properly aligned,
970@kbd{M-;} is still useful for moving directly to the start of the
971comment text.
9234c238
RS
972
973@findex comment-kill
974@kindex C-u M-;
ebf10822
CY
975 @kbd{C-u M-;} (@code{comment-dwim} with a prefix argument) kills any
976comment on the current line, along with the whitespace before it.
977Since the comment is saved to the kill ring, you can reinsert it on
978another line by moving to the end of that line, doing @kbd{C-y}, and
01ec1eed 979then @kbd{M-;} to realign the comment. You can achieve the same
ebf10822
CY
980effect as @kbd{C-u M-;} by typing @kbd{M-x comment-kill}
981(@code{comment-dwim} actually calls @code{comment-kill} as a
982subroutine when it is given a prefix argument).
6bf7aab6 983
ebf10822
CY
984@kindex C-c C-c (C mode)
985@findex comment-region
986@findex uncomment-region
987 The command @kbd{M-x comment-region} is equivalent to calling
988@kbd{M-;} on an active region, except that it always acts on the
989region, even if the mark is inactive. In C mode and related modes,
990this command is bound to @kbd{C-c C-c}. The command @kbd{M-x
991uncomment-region} uncomments each line in the region; a numeric prefix
992argument specifies the number of comment delimiters to remove
993(negative arguments specify the number of comment to delimiters to
994add).
6bf7aab6 995
e722aa81
CY
996 For C-like modes, you can configure the exact effect of @kbd{M-;} by
997setting the variables @code{c-indent-comment-alist} and
108262a0
AM
998@code{c-indent-comments-syntactically-p}. For example, on a line
999ending in a closing brace, @kbd{M-;} puts the comment one space after
1000the brace rather than at @code{comment-column}. For full details see
e722aa81 1001@ref{Comment Commands,,, ccmode, The CC Mode Manual}.
6bf7aab6 1002
6bf7aab6
DL
1003@node Multi-Line Comments
1004@subsection Multiple Lines of Comments
1005
1006@kindex C-M-j
7ae8ad94 1007@kindex M-j
6bf7aab6 1008@cindex blank lines in programs
47c1b5f4 1009@findex comment-indent-new-line
ebf10822
CY
1010@vindex comment-multi-line
1011 If you are typing a comment and wish to continue it to another line,
1012type @kbd{M-j} or @kbd{C-M-j} (@code{comment-indent-new-line}). This
1013breaks the current line, and inserts the necessary comment delimiters
1014and indentation to continue the comment.
1015
1df7defd 1016 For languages with closing comment delimiters (e.g., @samp{*/} in
ebf10822
CY
1017C), the exact behavior of @kbd{M-j} depends on the value of the
1018variable @code{comment-multi-line}. If the value is @code{nil}, the
1019command closes the comment on the old line and starts a new comment on
1020the new line. Otherwise, it opens a new line within the current
1021comment delimiters.
1022
1023 When Auto Fill mode is on, going past the fill column while typing a
1024comment also continues the comment, in the same way as an explicit
1025invocation of @kbd{M-j}.
1026
1027 To turn existing lines into comment lines, use @kbd{M-;} with the
1028region active, or use @kbd{M-x comment-region}
1029@ifinfo
1030(@pxref{Comment Commands}).
1031@end ifinfo
1032@ifnotinfo
1033as described in the preceding section.
1034@end ifnotinfo
6bf7aab6 1035
108262a0
AM
1036 You can configure C Mode such that when you type a @samp{/} at the
1037start of a line in a multi-line block comment, this closes the
1038comment. Enable the @code{comment-close-slash} clean-up for this.
1039@xref{Clean-ups,,, ccmode, The CC Mode Manual}.
1040
6bf7aab6
DL
1041@node Options for Comments
1042@subsection Options Controlling Comments
1043
1044@vindex comment-column
1045@kindex C-x ;
47c1b5f4 1046@findex comment-set-column
ebf10822
CY
1047 As mentioned in @ref{Comment Commands}, when the @kbd{M-j} command
1048adds a comment to a line, it tries to place the comment at the column
1049specified by the buffer-local variable @code{comment-column}. You can
1050set either the local value or the default value of this buffer-local
1051variable in the usual way (@pxref{Locals}). Alternatively, you can
1052type @kbd{C-x ;} (@code{comment-set-column}) to set the value of
1053@code{comment-column} in the current buffer to the column where point
1054is currently located. @kbd{C-u C-x ;} sets the comment column to
1055match the last comment before point in the buffer, and then does a
1056@kbd{M-;} to align the current line's comment under the previous one.
6bf7aab6
DL
1057
1058@vindex comment-start-skip
1059 The comment commands recognize comments based on the regular
1060expression that is the value of the variable @code{comment-start-skip}.
1061Make sure this regexp does not match the null string. It may match more
1062than the comment starting delimiter in the strictest sense of the word;
47c1b5f4
RS
1063for example, in C mode the value of the variable is
1064@c This stops M-q from breaking the line inside that @code.
ebf10822
CY
1065@code{@w{"\\(//+\\|/\\*+\\)\\s *"}}, which matches extra stars and
1066spaces after the @samp{/*} itself, and accepts C++ style comments
1067also. (Note that @samp{\\} is needed in Lisp syntax to include a
1068@samp{\} in the string, which is needed to deny the first star its
1069special meaning in regexp syntax. @xref{Regexp Backslash}.)
6bf7aab6
DL
1070
1071@vindex comment-start
1072@vindex comment-end
1073 When a comment command makes a new comment, it inserts the value of
ebf10822
CY
1074@code{comment-start} as an opening comment delimiter. It also inserts
1075the value of @code{comment-end} after point, as a closing comment
1076delimiter. For example, in Lisp mode, @code{comment-start} is
1077@samp{";"} and @code{comment-end} is @code{""} (the empty string). In
1078C mode, @code{comment-start} is @code{"/* "} and @code{comment-end} is
1079@code{" */"}.
6bf7aab6 1080
9234c238 1081@vindex comment-padding
ebf10822
CY
1082 The variable @code{comment-padding} specifies a string that the
1083commenting commands should insert between the comment delimiter(s) and
1084the comment text. The default, @samp{" "}, specifies a single space.
1085Alternatively, the value can be a number, which specifies that number
1086of spaces, or @code{nil}, which means no spaces at all.
1087
1088 The variable @code{comment-multi-line} controls how @kbd{M-j} and
1089Auto Fill mode continue comments over multiple lines.
1090@xref{Multi-Line Comments}.
6bf7aab6 1091
4190ce5c 1092@vindex comment-indent-function
6bf7aab6 1093 The variable @code{comment-indent-function} should contain a function
5b31640c 1094that will be called to compute the alignment for a newly inserted
6bf7aab6
DL
1095comment or for aligning an existing comment. It is set differently by
1096various major modes. The function is called with no arguments, but with
1097point at the beginning of the comment, or at the end of a line if a new
1098comment is to be inserted. It should return the column in which the
1099comment ought to start. For example, in Lisp mode, the indent hook
1100function bases its decision on how many semicolons begin an existing
1101comment, and on the code in the preceding lines.
1102
93da5dff
RS
1103@node Documentation
1104@section Documentation Lookup
6bf7aab6 1105
93da5dff
RS
1106 Emacs provides several features you can use to look up the
1107documentation of functions, variables and commands that you plan to
1108use in your program.
6bf7aab6 1109
93da5dff 1110@menu
2d2f6581 1111* Info Lookup:: Looking up library functions and commands in Info files.
93da5dff
RS
1112* Man Page:: Looking up man pages of library functions and commands.
1113* Lisp Doc:: Looking up Emacs Lisp functions, etc.
1114@end menu
6bf7aab6 1115
93da5dff
RS
1116@node Info Lookup
1117@subsection Info Documentation Lookup
85750656 1118
93da5dff
RS
1119@findex info-lookup-symbol
1120@findex info-lookup-file
d2f9ea87 1121@kindex C-h S
e722aa81
CY
1122 For major modes that apply to languages which have documentation in
1123Info, you can use @kbd{C-h S} (@code{info-lookup-symbol}) to view the
1124Info documentation for a symbol used in the program. You specify the
1125symbol with the minibuffer; the default is the symbol appearing in the
1126buffer at point. For example, in C mode this looks for the symbol in
1127the C Library Manual. The command only works if the appropriate
1128manual's Info files are installed.
6bf7aab6 1129
93da5dff
RS
1130 The major mode determines where to look for documentation for the
1131symbol---which Info files to look in, and which indices to search.
1132You can also use @kbd{M-x info-lookup-file} to look for documentation
1133for a file name.
6bf7aab6 1134
dfec8297 1135 If you use @kbd{C-h S} in a major mode that does not support it,
16152b76 1136it asks you to specify the ``symbol help mode''. You should enter
dfec8297
RS
1137a command such as @code{c-mode} that would select a major
1138mode which @kbd{C-h S} does support.
6bf7aab6 1139
93da5dff
RS
1140@node Man Page
1141@subsection Man Page Lookup
6bf7aab6 1142
2a185919 1143@cindex man page
e79c6b89 1144 On Unix, the main form of on-line documentation was the @dfn{manual
dfec8297 1145page} or @dfn{man page}. In the GNU operating system, we aim to
e79c6b89
RS
1146replace man pages with better-organized manuals that you can browse
1147with Info (@pxref{Misc Help}). This process is not finished, so it is
1148still useful to read manual pages.
6bf7aab6 1149
93da5dff 1150@findex manual-entry
e79c6b89 1151 You can read the man page for an operating system command, library
2a185919
CY
1152function, or system call, with the @kbd{M-x man} command. This
1153prompts for a topic, with completion (@pxref{Completion}), and runs
1154the @command{man} program to format the corresponding man page. If
1155the system permits, it runs @command{man} asynchronously, so that you
1156can keep on editing while the page is being formatted. The result
1c64e6ed 1157goes in a buffer named @file{*Man @var{topic}*}. These buffers use a
2a185919
CY
1158special major mode, Man mode, that facilitates scrolling and jumping
1159to other manual pages. For details, type @kbd{C-h m} while in a Man
1160mode buffer.
6bf7aab6 1161
93da5dff 1162@cindex sections of manual pages
e79c6b89 1163 Each man page belongs to one of ten or more @dfn{sections}, each
2a185919
CY
1164named by a digit or by a digit and a letter. Sometimes there are man
1165pages with the same name in different sections. To read a man page
1166from a specific section, type @samp{@var{topic}(@var{section})} or
1167@samp{@var{section} @var{topic}} when @kbd{M-x manual-entry} prompts
1168for the topic. For example, the man page for the C library function
1169@code{chmod} is in section 2, but there is a shell command of the same
1170name, whose man page is in section 1; to view the former, type
1171@kbd{M-x manual-entry @key{RET} chmod(2) @key{RET}}.
6bf7aab6 1172
08220274 1173@vindex Man-switches
2a185919
CY
1174@kindex M-n @r{(Man mode)}
1175@kindex M-p @r{(Man mode)}
1176 If you do not specify a section, @kbd{M-x man} normally displays
1177only the first man page found. On some systems, the @code{man}
1178program accepts a @samp{-a} command-line option, which tells it to
1179display all the man pages for the specified topic. To make use of
1180this, change the value of the variable @code{Man-switches} to
1181@samp{"-a"}. Then, in the Man mode buffer, you can type @kbd{M-n} and
1182@kbd{M-p} to switch between man pages in different sections. The mode
1183line shows how many manual pages are available.
93da5dff
RS
1184
1185@findex woman
1186@cindex manual pages, on MS-DOS/MS-Windows
1187 An alternative way of reading manual pages is the @kbd{M-x woman}
2a185919
CY
1188command. Unlike @kbd{M-x man}, it does not run any external programs
1189to format and display the man pages; the formatting is done by Emacs,
1190so it works on systems such as MS-Windows where the @command{man}
1191program may be unavailable. It prompts for a man page, and displays
1c64e6ed 1192it in a buffer named @file{*WoMan @var{section} @var{topic}}.
2a185919
CY
1193
1194 @kbd{M-x woman} computes the completion list for manpages the first
1195time you invoke the command. With a numeric argument, it recomputes
1196this list; this is useful if you add or delete manual pages.
93da5dff
RS
1197
1198 If you type a name of a manual page and @kbd{M-x woman} finds that
1199several manual pages by the same name exist in different sections, it
1200pops up a window with possible candidates asking you to choose one of
1201them.
1202
93da5dff 1203 For more information about setting up and using @kbd{M-x woman}, see
ec7ae032
CY
1204@ifinfo
1205@ref{Top, WoMan, Browse UN*X Manual Pages WithOut Man, woman, The
1206WoMan Manual}.
1207@end ifinfo
1208@ifnotinfo
1209the WoMan Info manual, which is distributed with Emacs.
1210@end ifnotinfo
93da5dff
RS
1211
1212@node Lisp Doc
1213@subsection Emacs Lisp Documentation Lookup
1214
2a185919
CY
1215 When editing Emacs Lisp code, you can use the commands @kbd{C-h f}
1216(@code{describe-function}) and @kbd{C-h v} (@code{describe-variable})
1217to view the built-in documentation for the Lisp functions and
1218variables that you want to use. @xref{Name Help}.
93da5dff
RS
1219
1220@cindex Eldoc mode
1221@findex eldoc-mode
2a185919
CY
1222 Eldoc is a buffer-local minor mode that helps with looking up Lisp
1223documention. When it is enabled, the echo area displays some useful
1224information whenever there is a Lisp function or variable at point;
1225for a function, it shows the argument list, and for a variable it
1226shows the first line of the variable's documentation string. To
1227toggle Eldoc mode, type @kbd{M-x eldoc-mode}. Eldoc mode can be used
1228with the Emacs Lisp and Lisp Interaction major modes.
6bf7aab6 1229
51ed0ea0
DL
1230@node Hideshow
1231@section Hideshow minor mode
2a185919
CY
1232@cindex Hideshow mode
1233@cindex mode, Hideshow
51ed0ea0
DL
1234
1235@findex hs-minor-mode
2a185919
CY
1236 Hideshow mode is a buffer-local minor mode that allows you to
1237selectively display portions of a program, which are referred to as
1238@dfn{blocks}. Type @kbd{M-x hs-minor-mode} to toggle this minor mode
1239(@pxref{Minor Modes}).
1240
1241 When you use Hideshow mode to hide a block, the block disappears
1242from the screen, to be replaced by an ellipsis (three periods in a
1243row). Just what constitutes a block depends on the major mode. In C
1244mode and related modes, blocks are delimited by braces, while in Lisp
1245mode they are delimited by parentheses. Multi-line comments also
1246count as blocks.
51ed0ea0 1247
2a185919 1248 Hideshow mode provides the following commands:
51ed0ea0
DL
1249
1250@findex hs-hide-all
1251@findex hs-hide-block
1252@findex hs-show-all
1253@findex hs-show-block
1254@findex hs-show-region
1255@findex hs-hide-level
1256@findex hs-minor-mode
6401dc86
EZ
1257@kindex C-c @@ C-h
1258@kindex C-c @@ C-s
1259@kindex C-c @@ C-M-h
1260@kindex C-c @@ C-M-s
1261@kindex C-c @@ C-r
1262@kindex C-c @@ C-l
9234c238
RS
1263@kindex S-Mouse-2
1264@table @kbd
6401dc86 1265@item C-c @@ C-h
9234c238 1266Hide the current block (@code{hs-hide-block}).
6401dc86 1267@item C-c @@ C-s
9234c238 1268Show the current block (@code{hs-show-block}).
6401dc86 1269@item C-c @@ C-c
ea118de1 1270Either hide or show the current block (@code{hs-toggle-hiding}).
9234c238 1271@item S-Mouse-2
2a185919 1272Toggle hiding for the block you click on (@code{hs-mouse-toggle-hiding}).
6401dc86 1273@item C-c @@ C-M-h
9234c238 1274Hide all top-level blocks (@code{hs-hide-all}).
6401dc86 1275@item C-c @@ C-M-s
2a185919 1276Show all blocks in the buffer (@code{hs-show-all}).
6401dc86 1277@item C-c @@ C-l
9234c238
RS
1278Hide all blocks @var{n} levels below this block
1279(@code{hs-hide-level}).
1280@end table
51ed0ea0
DL
1281
1282@vindex hs-hide-comments-when-hiding-all
51ed0ea0
DL
1283@vindex hs-isearch-open
1284@vindex hs-special-modes-alist
2a185919 1285 These variables can be used to customize Hideshow mode:
9234c238 1286
51ed0ea0
DL
1287@table @code
1288@item hs-hide-comments-when-hiding-all
2a185919
CY
1289If non-@code{nil}, @kbd{C-c @@ C-M-h} (@code{hs-hide-all}) hides
1290comments too.
d2fab838 1291
51ed0ea0 1292@item hs-isearch-open
2a185919
CY
1293This variable specifies the conditions under which incremental search
1294should unhide a hidden block when matching text occurs within the
1295block. Its value should be either @code{code} (unhide only code
1296blocks), @code{comment} (unhide only comments), @code{t} (unhide both
1297code blocks and comments), or @code{nil} (unhide neither code blocks
1298nor comments). The default value is @code{code}.
51ed0ea0
DL
1299@end table
1300
93da5dff
RS
1301@node Symbol Completion
1302@section Completion for Symbol Names
1303@cindex completion (symbol names)
3b8b8888 1304
2a185919
CY
1305 Completion is normally done in the minibuffer (@pxref{Completion}),
1306but you can also complete symbol names in ordinary Emacs buffers.
3b8b8888 1307
93da5dff 1308@kindex M-TAB
2a185919
CY
1309@kindex C-M-i
1310 In programming language modes, type @kbd{C-M-i} or @kbd{M-@key{TAB}}
1311to complete the partial symbol before point. On graphical displays,
1312the @kbd{M-@key{TAB}} key is usually reserved by the window manager
1313for switching graphical windows, so you should type @kbd{C-M-i} or
1314@kbd{@key{ESC} @key{TAB}} instead.
6bf7aab6 1315
93da5dff 1316@cindex tags-based completion
3d992aa0 1317@findex completion-at-point
93da5dff
RS
1318@cindex Lisp symbol completion
1319@cindex completion (Lisp symbols)
3d992aa0
CY
1320 In most programming language modes, @kbd{C-M-i} (or
1321@kbd{M-@key{TAB}}) invokes the command @code{completion-at-point},
1322which generates its completion list in a flexible way. If Semantic
1323mode is enabled, it tries to use the Semantic parser data for
1324completion (@pxref{Semantic}). If Semantic mode is not enabled or
1325fails at performing completion, it tries to complete using the
1326selected tags table (@pxref{Tags}). If in Emacs Lisp mode, it
1327performs completion using the function, variable, or property names
1328defined in the current Emacs session.
2a185919
CY
1329
1330 In all other respects, in-buffer symbol completion behaves like
1331minibuffer completion. For instance, if Emacs cannot complete to a
1332unique symbol, it displays a list of completion alternatives in
1333another window. @xref{Completion}.
6bf7aab6 1334
93da5dff
RS
1335 In Text mode and related modes, @kbd{M-@key{TAB}} completes words
1336based on the spell-checker's dictionary. @xref{Spelling}.
6bf7aab6 1337
93da5dff
RS
1338@node Glasses
1339@section Glasses minor mode
1340@cindex Glasses mode
2a185919
CY
1341@cindex camel case
1342@findex mode, Glasses
1343
1344 Glasses mode is a buffer-local minor mode that makes it easier to
1345read mixed-case (or ``CamelCase'') symbols like
1346@samp{unReadableSymbol}, by altering how they are displayed. By
1347default, it displays extra underscores between each lower-case letter
1348and the following capital letter. This does not alter the buffer
1349text, only how it is displayed.
1350
1351 To toggle Glasses mode, type @kbd{M-x glasses-mode} (@pxref{Minor
1352Modes}). When Glasses mode is enabled, the minor mode indicator
1353@samp{o^o} appears in the mode line. For more information about
1354Glasses mode, type @kbd{C-h P glasses @key{RET}}.
6bf7aab6 1355
a42dbee1
CY
1356@node Semantic
1357@section Semantic
1358@cindex Semantic package
1359
1360Semantic is a package that provides language-aware editing commands
1361based on @code{source code parsers}. This section provides a brief
ec7ae032 1362description of Semantic; for full details,
a42dbee1 1363@ifnottex
ec7ae032 1364see @ref{Top, Semantic,, semantic, Semantic}.
a42dbee1
CY
1365@end ifnottex
1366@iftex
ec7ae032 1367see the Semantic Info manual, which is distributed with Emacs.
a42dbee1
CY
1368@end iftex
1369
2a185919
CY
1370 Most of the ``language aware'' features in Emacs, such as Font Lock
1371mode (@pxref{Font Lock}), rely on ``rules of thumb''@footnote{Regular
a42dbee1
CY
1372expressions and syntax tables.} that usually give good results but are
1373never completely exact. In contrast, the parsers used by Semantic
1374have an exact understanding of programming language syntax. This
1375allows Semantic to provide search, navigation, and completion commands
1376that are powerful and precise.
1377
b09d01da
CY
1378@cindex Semantic mode
1379@cindex mode, Semantic
a42dbee1
CY
1380 To begin using Semantic, type @kbd{M-x semantic-mode} or click on
1381the menu item named @samp{Source Code Parsers (Semantic)} in the
1382@samp{Tools} menu. This enables Semantic mode, a global minor mode.
1383
1384 When Semantic mode is enabled, Emacs automatically attempts to
fc5b3b95 1385parse each file you visit. Currently, Semantic understands C, C++,
a42dbee1
CY
1386Scheme, Javascript, Java, HTML, and Make. Within each parsed buffer,
1387the following commands are available:
1388
1389@table @kbd
1390@item C-c , j
1391@kindex C-c , j
1392Prompt for the name of a function defined in the current file, and
1393move point there (@code{semantic-complete-jump-local}).
1394
1395@item C-c , J
1396@kindex C-c , J
1397Prompt for the name of a function defined in any file Emacs has
1398parsed, and move point there (@code{semantic-complete-jump}).
1399
1400@item C-c , @key{SPC}
1401@kindex C-c , @key{SPC}
1402Display a list of possible completions for the symbol at point
1403(@code{semantic-complete-analyze-inline}). This also activates a set
e7a3ff06 1404of special key bindings for choosing a completion: @key{RET} accepts
a42dbee1
CY
1405the current completion, @kbd{M-n} and @kbd{M-p} cycle through possible
1406completions, @key{TAB} completes as far as possible and then cycles,
1407and @kbd{C-g} or any other key aborts completion.
1408
1409@item C-c , l
1410@kindex C-c , l
1411Display a list of the possible completions of the symbol at point, in
1412another window (@code{semantic-analyze-possible-completions}).
1413@end table
1414
1415@noindent
1416In addition to the above commands, the Semantic package provides a
1417variety of other ways to make use of parser information. For
1418instance, you can use it to display a list of completions when Emacs
1419is idle.
1420@ifnottex
1421@xref{Top, Semantic,, semantic, Semantic}, for details.
1422@end ifnottex
1423
93da5dff
RS
1424@node Misc for Programs
1425@section Other Features Useful for Editing Programs
6bf7aab6 1426
2a185919
CY
1427 Some Emacs commands that aren't designed specifically for editing
1428programs are useful for that nonetheless.
6bf7aab6 1429
93da5dff
RS
1430 The Emacs commands that operate on words, sentences and paragraphs
1431are useful for editing code. Most symbols names contain words
2a185919
CY
1432(@pxref{Words}), while sentences can be found in strings and comments
1433(@pxref{Sentences}). As for paragraphs, they are defined in most
1434programming language modes to begin and end at blank lines
1435(@pxref{Paragraphs}). Therefore, judicious use of blank lines to make
1436the program clearer will also provide useful chunks of text for the
1437paragraph commands to work on. Auto Fill mode, if enabled in a
1438programming language major mode, indents the new lines which it
1439creates.
1440
0aca1292
GM
1441@findex electric-layout-mode
1442 Electric Layout mode (@kbd{M-x electric-layout-mode}) is a global
1443minor mode that automatically inserts newlines when you type certain
1444characters; for example, @samp{@{}, @samp{@}} and @samp{;} in Javascript
1445mode.
1446
2a185919
CY
1447 Apart from Hideshow mode (@pxref{Hideshow}), another way to
1448selectively display parts of a program is to use the selective display
1449feature (@pxref{Selective Display}). Programming modes often also
1450support Outline minor mode (@pxref{Outline Mode}), which can be used
1451with the Foldout package (@pxref{Foldout}).
6bf7aab6 1452
ec7ae032 1453@ifinfo
93da5dff
RS
1454 The ``automatic typing'' features may be useful for writing programs.
1455@xref{Top,,Autotyping, autotype, Autotyping}.
ec7ae032 1456@end ifinfo
6bf7aab6
DL
1457
1458@node C Modes
1459@section C and Related Modes
1460@cindex C mode
1461@cindex Java mode
1462@cindex Pike mode
1463@cindex IDL mode
1464@cindex CORBA IDL mode
1465@cindex Objective C mode
1466@cindex C++ mode
7ae8ad94 1467@cindex AWK mode
6bf7aab6
DL
1468@cindex mode, Java
1469@cindex mode, C
7ae8ad94 1470@cindex mode, C++
6bf7aab6
DL
1471@cindex mode, Objective C
1472@cindex mode, CORBA IDL
1473@cindex mode, Pike
7ae8ad94 1474@cindex mode, AWK
6bf7aab6 1475
9234c238 1476 This section gives a brief description of the special features
7ae8ad94 1477available in C, C++, Objective-C, Java, CORBA IDL, Pike and AWK modes.
16152b76 1478(These are called ``C mode and related modes''.)
ec7ae032
CY
1479@ifinfo
1480@xref{Top,, CC Mode, ccmode, CC Mode}, for more details.
1481@end ifinfo
1482@ifnotinfo
1483For more details, see the CC mode Info manual, which is distributed
1484with Emacs.
1485@end ifnotinfo
51ed0ea0 1486
6bf7aab6 1487@menu
7ae8ad94
RS
1488* Motion in C:: Commands to move by C statements, etc.
1489* Electric C:: Colon and other chars can automatically reindent.
1490* Hungry Delete:: A more powerful DEL command.
1491* Other C Commands:: Filling comments, viewing expansion of macros,
1492 and other neat features.
6bf7aab6
DL
1493@end menu
1494
1495@node Motion in C
1496@subsection C Mode Motion Commands
1497
1498 This section describes commands for moving point, in C mode and
1499related modes.
1500
1501@table @code
47d42d81
AM
1502@item C-M-a
1503@itemx C-M-e
7ae8ad94
RS
1504@findex c-beginning-of-defun
1505@findex c-end-of-defun
1506Move point to the beginning or end of the current function or
47d42d81
AM
1507top-level definition. In languages with enclosing scopes (such as
1508C++'s classes) the @dfn{current function} is the immediate one,
1509possibly inside a scope. Otherwise it is the one defined by the least
7ae8ad94 1510enclosing braces. (By contrast, @code{beginning-of-defun} and
47d42d81
AM
1511@code{end-of-defun} search for braces in column zero.) @xref{Moving
1512by Defuns}.
7ae8ad94 1513
6bf7aab6
DL
1514@item C-c C-u
1515@kindex C-c C-u @r{(C mode)}
1516@findex c-up-conditional
1517Move point back to the containing preprocessor conditional, leaving the
1518mark behind. A prefix argument acts as a repeat count. With a negative
1519argument, move point forward to the end of the containing
7ae8ad94
RS
1520preprocessor conditional.
1521
1522@samp{#elif} is equivalent to @samp{#else} followed by @samp{#if}, so
1523the function will stop at a @samp{#elif} when going backward, but not
1524when going forward.
6bf7aab6
DL
1525
1526@item C-c C-p
1527@kindex C-c C-p @r{(C mode)}
1528@findex c-backward-conditional
1529Move point back over a preprocessor conditional, leaving the mark
1530behind. A prefix argument acts as a repeat count. With a negative
1531argument, move forward.
1532
1533@item C-c C-n
1534@kindex C-c C-n @r{(C mode)}
1535@findex c-forward-conditional
1536Move point forward across a preprocessor conditional, leaving the mark
1537behind. A prefix argument acts as a repeat count. With a negative
1538argument, move backward.
1539
1540@item M-a
7ae8ad94 1541@kindex M-a (C mode)
6bf7aab6
DL
1542@findex c-beginning-of-statement
1543Move point to the beginning of the innermost C statement
1544(@code{c-beginning-of-statement}). If point is already at the beginning
1545of a statement, move to the beginning of the preceding statement. With
1546prefix argument @var{n}, move back @var{n} @minus{} 1 statements.
1547
7ae8ad94
RS
1548In comments or in strings which span more than one line, this command
1549moves by sentences instead of statements.
6bf7aab6
DL
1550
1551@item M-e
7ae8ad94 1552@kindex M-e (C mode)
6bf7aab6 1553@findex c-end-of-statement
7ae8ad94
RS
1554Move point to the end of the innermost C statement or sentence; like
1555@kbd{M-a} except that it moves in the other direction
1556(@code{c-end-of-statement}).
6bf7aab6
DL
1557@end table
1558
1559@node Electric C
1560@subsection Electric C Characters
1561
1562 In C mode and related modes, certain printing characters are
108262a0
AM
1563@dfn{electric}---in addition to inserting themselves, they also
1564reindent the current line, and optionally also insert newlines. The
64e207c0
RS
1565``electric'' characters are @kbd{@{}, @kbd{@}}, @kbd{:}, @kbd{#},
1566@kbd{;}, @kbd{,}, @kbd{<}, @kbd{>}, @kbd{/}, @kbd{*}, @kbd{(}, and
f5eb910a 1567@kbd{)}.
108262a0
AM
1568
1569 You might find electric indentation inconvenient if you are editing
1570chaotically indented code. If you are new to CC Mode, you might find
1571it disconcerting. You can toggle electric action with the command
1572@kbd{C-c C-l}; when it is enabled, @samp{/l} appears in the mode line
1573after the mode name:
6bf7aab6 1574
108262a0
AM
1575@table @kbd
1576@item C-c C-l
1577@kindex C-c C-l @r{(C mode)}
1578@findex c-toggle-electric-state
1579Toggle electric action (@code{c-toggle-electric-state}). With a
eceeb5fc
CY
1580positive prefix argument, this command enables electric action, with a
1581negative one it disables it.
108262a0
AM
1582@end table
1583
1584 Electric characters insert newlines only when, in addition to the
1585electric state, the @dfn{auto-newline} feature is enabled (indicated
1586by @samp{/la} in the mode line after the mode name). You can turn
1587this feature on or off with the command @kbd{C-c C-a}:
6bf7aab6
DL
1588
1589@table @kbd
1590@item C-c C-a
1591@kindex C-c C-a @r{(C mode)}
108262a0
AM
1592@findex c-toggle-auto-newline
1593Toggle the auto-newline feature (@code{c-toggle-auto-newline}). With a
6bf7aab6
DL
1594prefix argument, this command turns the auto-newline feature on if the
1595argument is positive, and off if it is negative.
1596@end table
1597
f5eb910a
RS
1598 Usually the CC Mode style configures the exact circumstances in
1599which Emacs inserts auto-newlines. You can also configure this
1600directly. @xref{Custom Auto-newlines,,, ccmode, The CC Mode Manual}.
6bf7aab6
DL
1601
1602@node Hungry Delete
1603@subsection Hungry Delete Feature in C
7ae8ad94 1604@cindex hungry deletion (C Mode)
6bf7aab6 1605
108262a0
AM
1606 If you want to delete an entire block of whitespace at point, you
1607can use @dfn{hungry deletion}. This deletes all the contiguous
1608whitespace either before point or after point in a single operation.
1609@dfn{Whitespace} here includes tabs and newlines, but not comments or
1610preprocessor commands.
6bf7aab6
DL
1611
1612@table @kbd
69d271a7
AM
1613@item C-c C-@key{DEL}
1614@itemx C-c @key{DEL}
aca2cfd2 1615@findex c-hungry-delete-backwards
69d271a7
AM
1616@kindex C-c C-@key{DEL} (C Mode)
1617@kindex C-c @key{DEL} (C Mode)
eceeb5fc 1618Delete the entire block of whitespace preceding point (@code{c-hungry-delete-backwards}).
108262a0 1619
6bf7aab6 1620@item C-c C-d
69d271a7
AM
1621@itemx C-c C-@key{DELETE}
1622@itemx C-c @key{DELETE}
108262a0
AM
1623@findex c-hungry-delete-forward
1624@kindex C-c C-d (C Mode)
69d271a7
AM
1625@kindex C-c C-@key{DELETE} (C Mode)
1626@kindex C-c @key{DELETE} (C Mode)
eceeb5fc 1627Delete the entire block of whitespace after point (@code{c-hungry-delete-forward}).
108262a0
AM
1628@end table
1629
1630 As an alternative to the above commands, you can enable @dfn{hungry
1631delete mode}. When this feature is enabled (indicated by @samp{/h} in
d884be12
RS
1632the mode line after the mode name), a single @key{DEL} deletes all
1633preceding whitespace, not just one space, and a single @kbd{C-c C-d}
1634(but @emph{not} plain @key{DELETE}) deletes all following whitespace.
6bf7aab6 1635
108262a0
AM
1636@table @kbd
1637@item M-x c-toggle-hungry-state
1638@findex c-toggle-hungry-state
1639Toggle the hungry-delete feature
eceeb5fc 1640(@code{c-toggle-hungry-state}). With a prefix argument,
108262a0
AM
1641this command turns the hungry-delete feature on if the argument is
1642positive, and off if it is negative.
6bf7aab6
DL
1643@end table
1644
1645@vindex c-hungry-delete-key
1646 The variable @code{c-hungry-delete-key} controls whether the
1647hungry-delete feature is enabled.
1648
1649@node Other C Commands
1650@subsection Other Commands for C Mode
1651
1652@table @kbd
108262a0 1653@item C-c C-w
aaef4f91
MH
1654@itemx M-x subword-mode
1655@findex subword-mode
f5eb910a 1656Enable (or disable) @dfn{subword mode}. In subword mode, Emacs's word
8a75579f 1657commands recognize upper case letters in
f5eb910a
RS
1658@samp{StudlyCapsIdentifiers} as word boundaries. This is indicated by
1659the flag @samp{/w} on the mode line after the mode name
1df7defd 1660(e.g., @samp{C/law}). You can even use @kbd{M-x subword-mode} in
f5eb910a 1661non-CC Mode buffers.
108262a0 1662
dfec8297
RS
1663In the GNU project, we recommend using underscores to separate words
1664within an identifier in C or C++, rather than using case distinctions.
1665
7ae8ad94
RS
1666@item M-x c-context-line-break
1667@findex c-context-line-break
1668This command inserts a line break and indents the new line in a manner
1669appropriate to the context. In normal code, it does the work of
1670@kbd{C-j} (@code{newline-and-indent}), in a C preprocessor line it
1671additionally inserts a @samp{\} at the line break, and within comments
1672it's like @kbd{M-j} (@code{c-indent-new-comment-line}).
1673
1674@code{c-context-line-break} isn't bound to a key by default, but it
1675needs a binding to be useful. The following code will bind it to
108262a0
AM
1676@kbd{C-j}. We use @code{c-initialization-hook} here to make sure
1677the keymap is loaded before we try to change it.
1678
eceeb5fc 1679@example
108262a0 1680(defun my-bind-clb ()
166bc0c8
CY
1681 (define-key c-mode-base-map "\C-j"
1682 'c-context-line-break))
108262a0 1683(add-hook 'c-initialization-hook 'my-bind-clb)
eceeb5fc 1684@end example
7ae8ad94 1685
6bf7aab6 1686@item C-M-h
6bf7aab6
DL
1687Put mark at the end of a function definition, and put point at the
1688beginning (@code{c-mark-function}).
1689
1690@item M-q
1691@kindex M-q @r{(C mode)}
1692@findex c-fill-paragraph
1693Fill a paragraph, handling C and C++ comments (@code{c-fill-paragraph}).
1694If any part of the current line is a comment or within a comment, this
1695command fills the comment or the paragraph of it that point is in,
1696preserving the comment indentation and comment delimiters.
1697
1698@item C-c C-e
1699@cindex macro expansion in C
1700@cindex expansion of C macros
1701@findex c-macro-expand
1702@kindex C-c C-e @r{(C mode)}
1703Run the C preprocessor on the text in the region, and show the result,
1704which includes the expansion of all the macro calls
1705(@code{c-macro-expand}). The buffer text before the region is also
1706included in preprocessing, for the sake of macros defined there, but the
1707output from this part isn't shown.
1708
1709When you are debugging C code that uses macros, sometimes it is hard to
1710figure out precisely how the macros expand. With this command, you
1711don't have to figure it out; you can see the expansions.
1712
1713@item C-c C-\
1714@findex c-backslash-region
1715@kindex C-c C-\ @r{(C mode)}
1716Insert or align @samp{\} characters at the ends of the lines of the
1717region (@code{c-backslash-region}). This is useful after writing or
1718editing a C macro definition.
1719
1720If a line already ends in @samp{\}, this command adjusts the amount of
1721whitespace before it. Otherwise, it inserts a new @samp{\}. However,
1722the last line in the region is treated specially; no @samp{\} is
1723inserted on that line, and any @samp{\} there is deleted.
1724
1725@item M-x cpp-highlight-buffer
1726@cindex preprocessor highlighting
1727@findex cpp-highlight-buffer
1728Highlight parts of the text according to its preprocessor conditionals.
1c64e6ed 1729This command displays another buffer named @file{*CPP Edit*}, which
6bf7aab6
DL
1730serves as a graphic menu for selecting how to display particular kinds
1731of conditionals and their contents. After changing various settings,
1732click on @samp{[A]pply these settings} (or go to that buffer and type
1733@kbd{a}) to rehighlight the C mode buffer accordingly.
1734
1735@item C-c C-s
1736@findex c-show-syntactic-information
1737@kindex C-c C-s @r{(C mode)}
1738Display the syntactic information about the current source line
054af0fd
SE
1739(@code{c-show-syntactic-information}). This information directs how
1740the line is indented.
3b8b8888
DL
1741
1742@item M-x cwarn-mode
1743@itemx M-x global-cwarn-mode
1744@findex cwarn-mode
1745@findex global-cwarn-mode
7ae8ad94 1746@vindex global-cwarn-mode
3b8b8888
DL
1747@cindex CWarn mode
1748@cindex suspicious constructions in C, C++
9234c238 1749CWarn minor mode highlights certain suspicious C and C++ constructions:
3b8b8888
DL
1750
1751@itemize @bullet{}
1752@item
9234c238 1753Assignments inside expressions.
3b8b8888
DL
1754@item
1755Semicolon following immediately after @samp{if}, @samp{for}, and @samp{while}
1756(except after a @samp{do @dots{} while} statement);
1757@item
1758C++ functions with reference parameters.
1759@end itemize
1760
1761@noindent
9234c238
RS
1762You can enable the mode for one buffer with the command @kbd{M-x
1763cwarn-mode}, or for all suitable buffers with the command @kbd{M-x
1764global-cwarn-mode} or by customizing the variable
1765@code{global-cwarn-mode}. You must also enable Font Lock mode to make
1766it work.
3b8b8888
DL
1767
1768@item M-x hide-ifdef-mode
1769@findex hide-ifdef-mode
1770@cindex Hide-ifdef mode
8474de5b 1771@vindex hide-ifdef-shadow
3b8b8888 1772Hide-ifdef minor mode hides selected code within @samp{#if} and
8474de5b
CY
1773@samp{#ifdef} preprocessor blocks. If you change the variable
1774@code{hide-ifdef-shadow} to @code{t}, Hide-ifdef minor mode
1775``shadows'' preprocessor blocks by displaying them with a less
1776prominent face, instead of hiding them entirely. See the
1777documentation string of @code{hide-ifdef-mode} for more information.
9234c238
RS
1778
1779@item M-x ff-find-related-file
1780@cindex related files
1781@findex ff-find-related-file
1782@vindex ff-related-file-alist
1783Find a file ``related'' in a special way to the file visited by the
1784current buffer. Typically this will be the header file corresponding
1785to a C/C++ source file, or vice versa. The variable
1786@code{ff-related-file-alist} specifies how to compute related file
1787names.
6bf7aab6
DL
1788@end table
1789
6bf7aab6
DL
1790@node Asm Mode
1791@section Asm Mode
1792
1793@cindex Asm mode
9234c238 1794@cindex assembler mode
6bf7aab6
DL
1795Asm mode is a major mode for editing files of assembler code. It
1796defines these commands:
1797
1798@table @kbd
1799@item @key{TAB}
1800@code{tab-to-tab-stop}.
1801@item C-j
1802Insert a newline and then indent using @code{tab-to-tab-stop}.
1803@item :
1804Insert a colon and then remove the indentation from before the label
1805preceding colon. Then do @code{tab-to-tab-stop}.
1806@item ;
1807Insert or align a comment.
1808@end table
1809
1810 The variable @code{asm-comment-char} specifies which character
1811starts comments in assembler syntax.
ab5796a9 1812
b23ef7a5
EZ
1813@ifnottex
1814@include fortran-xtra.texi
1815@end ifnottex