Mercurial > emacs
annotate doc/misc/cc-mode.texi @ 103198:f63bce93c7a1
* gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
what we expect to get in the next ConfigureNotify event.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Mon, 11 May 2009 06:42:45 +0000 |
parents | 9bcea07061a8 |
children | 00b7bce74d52 |
rev | line source |
---|---|
84286 | 1 \input texinfo |
2 @c Notes to self regarding line handling: | |
3 @c | |
4 @c Empty lines are often significant before @end directives; avoid them. | |
5 @c | |
6 @c Empty lines before and after @example directives are significant in | |
7 @c info output but not in TeX. Empty lines inside @example directives | |
8 @c are significant. | |
9 | |
10 @c Conventions for formatting examples: | |
11 @c o If the example contains empty lines then put the surrounding empty | |
12 @c lines inside the @example directives. Put them outside otherwise. | |
13 @c o Use @group inside the example only if it shows indentation where | |
14 @c the relation between lines inside is relevant. | |
15 @c o Format line number columns like this: | |
16 @c 1: foo | |
17 @c 2: bar | |
18 @c ^ one space | |
19 @c ^^ two columns, right alignment | |
20 @c o Check line lengths in TeX output; they can typically be no longer | |
21 @c than 70 chars, 60 if the paragraph is indented. | |
22 | |
23 @comment TBD: Document the finer details of statement anchoring? | |
24 | |
25 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
26 @comment %**start of header (This is for running Texinfo on a region) | |
27 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
28 | |
29 | |
30 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
31 @comment How to make the various output formats: | |
32 @comment (Thanks to Robert Chassell for supplying this information.) | |
33 @comment Note that Texinfo 4.7 (or later) is needed. | |
34 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
35 @ignore | |
36 In each of the following pairs of commands, the first generates a | |
37 version with cross references pointing to the GNU Emacs manuals, | |
38 the second with them pointing to the XEmacs manuals. | |
39 ## Info output | |
40 makeinfo cc-mode.texi | |
41 makeinfo -DXEMACS cc-mode.texi | |
42 | |
43 ## DVI output | |
44 ## You may need to set up the environment variable TEXINPUTS so | |
45 ## that tex can find the file texinfo.tex - See the tex | |
46 ## manpage. | |
47 texi2dvi cc-mode.texi | |
48 texi2dvi -t "@set XEMACS " cc-mode.texi | |
49 | |
50 ## HTML output. (The --no-split parameter is optional) | |
51 makeinfo --html --no-split cc-mode.texi | |
52 makeinfo --html --no-split -DXEMACS cc-mode.texi | |
53 | |
54 ## Plain text output | |
55 makeinfo --fill-column=70 --no-split --paragraph-indent=0 \ | |
56 --no-headers --output=cc-mode.txt cc-mode.texi | |
57 makeinfo --fill-column=70 --no-split --paragraph-indent=0 \ | |
58 --no-headers --output=cc-mode.txt -DXEMACS cc-mode.texi | |
59 | |
60 ## DocBook output | |
61 makeinfo --docbook --no-split --paragraph-indent=0 \ | |
62 cc-mode.texi | |
63 makeinfo --docbook --no-split --paragraph-indent=0 \ | |
64 -DXEMACS cc-mode.texi | |
65 | |
66 ## XML output | |
67 makeinfo --xml --no-split --paragraph-indent=0 \ | |
68 cc-mode.texi | |
69 makeinfo --xml --no-split --paragraph-indent=0 \ | |
70 -DXEMACS cc-mode.texi | |
71 | |
72 #### (You must be in the same directory as the viewed file.) | |
73 | |
74 ## View DVI output | |
75 xdvi cc-mode.dvi & | |
76 | |
77 ## View HTML output | |
78 mozilla cc-mode.html | |
79 @end ignore | |
80 | |
81 @comment No overfull hbox marks in the dvi file. | |
82 @finalout | |
83 | |
84329
3d431f1997d8
(setfilename): Go up one more level to ../../info.
Glenn Morris <rgm@gnu.org>
parents:
84286
diff
changeset
|
84 @setfilename ../../info/ccmode |
84286 | 85 @settitle CC Mode Manual |
86 @footnotestyle end | |
87 | |
88 @c The following four macros generate the filenames and titles of the | |
89 @c main (X)Emacs manual and the Elisp/Lispref manual. Leave the | |
90 @c Texinfo variable `XEMACS' unset to generate a GNU Emacs version, set it | |
91 @c to generate an XEmacs version, e.g. with | |
92 @c "makeinfo -DXEMACS cc-mode.texi". | |
93 @ifset XEMACS | |
94 @macro emacsman | |
95 xemacs | |
96 @end macro | |
97 @macro emacsmantitle | |
98 XEmacs User's Manual | |
99 @end macro | |
100 @macro lispref | |
101 lispref | |
102 @end macro | |
103 @macro lispreftitle | |
104 XEmacs Lisp Reference Manual | |
105 @end macro | |
106 @end ifset | |
107 | |
108 @ifclear XEMACS | |
109 @macro emacsman | |
110 emacs | |
111 @end macro | |
112 @macro emacsmantitle | |
113 GNU Emacs Manual | |
114 @end macro | |
115 @macro lispref | |
116 elisp | |
117 @end macro | |
118 @macro lispreftitle | |
119 GNU Emacs Lisp Reference Manual | |
120 @end macro | |
121 @end ifclear | |
122 | |
123 | |
124 @macro ccmode | |
125 CC Mode | |
126 @end macro | |
127 | |
128 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
129 @comment @setchapternewpage odd !! we don't want blank pages !! | |
130 @comment %**end of header (This is for running Texinfo on a region) | |
131 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
132 | |
133 | |
134 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
135 @comment | |
136 @comment Texinfo manual for CC Mode | |
137 @comment Generated from the original README file by Krishna Padmasola | |
138 @comment <krishna@earth-gw.njit.edu> | |
139 @comment | |
140 @comment Authors: | |
141 @comment Barry A. Warsaw | |
142 @comment Martin Stjernholm | |
143 @comment Alan Mackenzie | |
144 @comment | |
145 @comment Maintained by Martin Stjernholm and Alan Mackenzie <bug-cc-mode@gnu.org> | |
146 @comment | |
147 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
148 | |
149 @comment Define an index for syntactic symbols. | |
150 @ifnottex @c In texi2dvi, the @defindex would create an empty cc-mode.ss | |
151 @c For Info, unlike tex, @syncodeindex needs a matching @defindex. | |
152 @defindex ss | |
153 @end ifnottex | |
154 | |
155 @comment Combine key, syntactic symbol and concept indices into one. | |
156 @syncodeindex ss cp | |
157 @syncodeindex ky cp | |
158 | |
159 @copying | |
160 This manual is for CC Mode in Emacs. | |
161 | |
162 Copyright @copyright{} 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, | |
100974 | 163 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
84286 | 164 |
165 @quotation | |
166 Permission is granted to copy, distribute and/or modify this document | |
99709
6de181810d0f
Relicense all texi files under FDL 1.3 or later.
Glenn Morris <rgm@gnu.org>
parents:
96449
diff
changeset
|
167 under the terms of the GNU Free Documentation License, Version 1.3 or |
95936
ce35dd677448
Remove references to external license, since doclicense is included.
Glenn Morris <rgm@gnu.org>
parents:
95874
diff
changeset
|
168 any later version published by the Free Software Foundation; with no |
ce35dd677448
Remove references to external license, since doclicense is included.
Glenn Morris <rgm@gnu.org>
parents:
95874
diff
changeset
|
169 Invariant Sections, with the Front-Cover texts being ``A GNU Manual'', |
ce35dd677448
Remove references to external license, since doclicense is included.
Glenn Morris <rgm@gnu.org>
parents:
95874
diff
changeset
|
170 and with the Back-Cover Texts as in (a) below. A copy of the license |
ce35dd677448
Remove references to external license, since doclicense is included.
Glenn Morris <rgm@gnu.org>
parents:
95874
diff
changeset
|
171 is included in the section entitled ``GNU Free Documentation License''. |
84286 | 172 |
95874
eafbd7a5c9be
Update Back-Cover Text as per maintain.info.
Glenn Morris <rgm@gnu.org>
parents:
92570
diff
changeset
|
173 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and |
eafbd7a5c9be
Update Back-Cover Text as per maintain.info.
Glenn Morris <rgm@gnu.org>
parents:
92570
diff
changeset
|
174 modify this GNU manual. Buying copies from the FSF supports it in |
eafbd7a5c9be
Update Back-Cover Text as per maintain.info.
Glenn Morris <rgm@gnu.org>
parents:
92570
diff
changeset
|
175 developing GNU and promoting software freedom.'' |
84286 | 176 @end quotation |
177 @end copying | |
178 | |
179 @comment Info directory entry for use by install-info. The indentation | |
180 @comment here is by request from the FSF folks. | |
181 @dircategory Emacs | |
182 @direntry | |
183 * CC Mode: (ccmode). Emacs mode for editing C, C++, Objective-C, | |
184 Java, Pike, AWK, and CORBA IDL code. | |
185 @end direntry | |
186 | |
187 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
188 @comment TeX title page | |
189 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
190 | |
191 @titlepage | |
192 @sp 10 | |
193 | |
194 @center @titlefont{CC Mode 5.31} | |
195 @sp 2 | |
196 @center @subtitlefont{A GNU Emacs mode for editing C and C-like languages} | |
197 @sp 2 | |
198 @center Barry A. Warsaw, Martin Stjernholm, Alan Mackenzie | |
199 | |
200 @page | |
201 @vskip 0pt plus 1filll | |
202 @insertcopying | |
203 | |
85173
de920bbb6866
Remove RCS keywords from doc/misc/cc-mode.texi
Miles Bader <miles@gnu.org>
parents:
84329
diff
changeset
|
204 This manual was generated from cc-mode.texi, which can be downloaded |
de920bbb6866
Remove RCS keywords from doc/misc/cc-mode.texi
Miles Bader <miles@gnu.org>
parents:
84329
diff
changeset
|
205 from |
84329
3d431f1997d8
(setfilename): Go up one more level to ../../info.
Glenn Morris <rgm@gnu.org>
parents:
84286
diff
changeset
|
206 @url{http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/doc/misc/cc-mode.texi}. |
84286 | 207 @end titlepage |
208 | |
209 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
210 @comment The Top node contains the master menu for the Info file. | |
211 @comment This appears only in the Info file, not the printed manual. | |
212 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
213 | |
102059
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
214 @summarycontents |
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
215 @contents |
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
216 |
84286 | 217 @node Top, Introduction, (dir), (dir) |
218 @comment node-name, next, previous, up | |
219 | |
102059
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
220 @ifnottex |
84286 | 221 @top @ccmode{} |
222 | |
223 @ccmode{} is a GNU Emacs mode for editing files containing C, C++, | |
224 Objective-C, Java, CORBA IDL (and the variants PSDL and CIDL), Pike | |
225 and AWK code. It provides syntax-based indentation, font locking, and | |
226 has several handy commands and some minor modes to make the editing | |
227 easier. It does not provide tools to look up and navigate between | |
228 functions, classes etc - there are other packages for that. | |
102059
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
229 |
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
230 @insertcopying |
9bcea07061a8
consistently use @insertcopying, @direntry, @contents
Karl Berry <karl@gnu.org>
parents:
100974
diff
changeset
|
231 @end ifnottex |
84286 | 232 |
233 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
234 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
235 | |
236 @menu | |
237 * Introduction:: | |
238 * Overview:: | |
239 * Getting Started:: | |
240 * Commands:: | |
241 * Font Locking:: | |
242 * Config Basics:: | |
243 * Custom Filling and Breaking:: | |
244 * Custom Auto-newlines:: | |
245 * Clean-ups:: | |
246 * Indentation Engine Basics:: | |
247 * Customizing Indentation:: | |
248 * Custom Macros:: | |
249 * Odds and Ends:: | |
250 * Sample .emacs File:: | |
251 * Performance Issues:: | |
252 * Limitations and Known Bugs:: | |
253 * FAQ:: | |
254 * Updating CC Mode:: | |
255 * Mailing Lists and Bug Reports:: | |
256 * GNU Free Documentation License:: | |
257 * Command and Function Index:: | |
258 * Variable Index:: | |
259 * Concept and Key Index:: | |
260 | |
261 @detailmenu | |
262 --- The Detailed Node Listing --- | |
263 | |
264 Commands | |
265 | |
266 * Indentation Commands:: | |
267 * Comment Commands:: | |
268 * Movement Commands:: | |
269 * Filling and Breaking:: | |
270 * Minor Modes:: | |
271 * Electric Keys:: | |
272 * Auto-newlines:: | |
273 * Hungry WS Deletion:: | |
274 * Subword Movement:: | |
275 * Other Commands:: | |
276 | |
277 Font Locking | |
278 | |
279 * Font Locking Preliminaries:: | |
280 * Faces:: | |
281 * Doc Comments:: | |
282 * AWK Mode Font Locking:: | |
283 | |
284 Configuration Basics | |
285 | |
286 * CC Hooks:: | |
287 * Style Variables:: | |
288 * Styles:: | |
289 | |
290 Styles | |
291 | |
292 * Built-in Styles:: | |
293 * Choosing a Style:: | |
294 * Adding Styles:: | |
295 * File Styles:: | |
296 | |
297 Customizing Auto-newlines | |
298 | |
299 * Hanging Braces:: | |
300 * Hanging Colons:: | |
301 * Hanging Semicolons and Commas:: | |
302 | |
303 Hanging Braces | |
304 | |
305 * Custom Braces:: | |
306 | |
307 Indentation Engine Basics | |
308 | |
309 * Syntactic Analysis:: | |
310 * Syntactic Symbols:: | |
311 * Indentation Calculation:: | |
312 | |
313 Syntactic Symbols | |
314 | |
315 * Function Symbols:: | |
316 * Class Symbols:: | |
317 * Conditional Construct Symbols:: | |
318 * Switch Statement Symbols:: | |
319 * Brace List Symbols:: | |
320 * External Scope Symbols:: | |
321 * Paren List Symbols:: | |
322 * Literal Symbols:: | |
323 * Multiline Macro Symbols:: | |
324 * Objective-C Method Symbols:: | |
325 * Anonymous Class Symbol:: | |
326 * Statement Block Symbols:: | |
327 * K&R Symbols:: | |
328 | |
329 Customizing Indentation | |
330 | |
331 * c-offsets-alist:: | |
332 * Interactive Customization:: | |
333 * Line-Up Functions:: | |
334 * Custom Line-Up:: | |
335 * Other Indentation:: | |
336 | |
337 Line-Up Functions | |
338 | |
339 * Brace/Paren Line-Up:: | |
340 * List Line-Up:: | |
341 * Operator Line-Up:: | |
342 * Comment Line-Up:: | |
343 * Misc Line-Up:: | |
344 | |
345 @end detailmenu | |
346 @end menu | |
347 | |
348 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
349 @node Introduction, Overview, Top, Top | |
350 @comment node-name, next, previous, up | |
351 @chapter Introduction | |
352 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
353 | |
354 @cindex BOCM | |
355 @cindex history | |
356 @cindex awk-mode.el | |
357 @cindex c-mode.el | |
358 @cindex c++-mode.el | |
359 | |
360 Welcome to @ccmode{}, a GNU Emacs mode for editing files containing C, | |
361 C++, Objective-C, Java, CORBA IDL (and the variants CORBA PSDL and | |
362 CIDL), Pike and AWK code. This incarnation of the mode is descended | |
363 from @file{c-mode.el} (also called ``Boring Old C Mode'' or BOCM | |
364 @t{:-)}, @file{c++-mode.el} version 2, which Barry Warsaw had been | |
365 maintaining since 1992, and @file{awk-mode.el}, a long neglected mode | |
366 in the (X)Emacs base. | |
367 | |
368 Late in 1997, Martin Stjernholm joined Barry on the @ccmode{} | |
369 Maintainers Team, and implemented the Pike support. In 2000 Martin | |
370 took over as the sole maintainer. In 2001 Alan Mackenzie joined the | |
371 team, implementing AWK support in version 5.30. @ccmode{} did not | |
372 originally contain the font lock support for its languages --- that | |
373 was added in version 5.30. | |
374 | |
375 This manual describes @ccmode{} | |
376 @comment The following line must appear on its own, so that the | |
377 version 5.31. | |
378 @comment Release.py script can update the version number automatically | |
379 | |
380 @ccmode{} supports the editing of K&R and ANSI C, C++, Objective-C, | |
381 Java, CORBA's Interface Definition Language, Pike@footnote{A C-like | |
382 scripting language with its roots in the LPC language used in some MUD | |
383 engines. See @uref{http://pike.ida.liu.se/}.} and AWK files. In this | |
384 way, you can easily set up consistent font locking and coding styles for | |
385 use in editing all of these languages, although AWK is not yet as | |
386 uniformly integrated as the other languages. | |
387 | |
388 @findex c-mode | |
389 @findex c++-mode | |
390 @findex objc-mode | |
391 @findex java-mode | |
392 @findex idl-mode | |
393 @findex pike-mode | |
394 @findex awk-mode | |
395 Note that the name of this package is ``@ccmode{}'', but there is no top | |
396 level @code{cc-mode} entry point. All of the variables, commands, and | |
397 functions in @ccmode{} are prefixed with @code{c-@var{thing}}, and | |
398 @code{c-mode}, @code{c++-mode}, @code{objc-mode}, @code{java-mode}, | |
399 @code{idl-mode}, @code{pike-mode}, and @code{awk-mode} entry points are | |
400 provided. This package is intended to be a replacement for | |
401 @file{c-mode.el}, @file{c++-mode.el} and @file{awk-mode.el}. | |
402 | |
403 A special word of thanks goes to Krishna Padmasola for his work in | |
404 converting the original @file{README} file to Texinfo format. I'd | |
405 also like to thank all the @ccmode{} victims who help enormously | |
406 during the early beta stages of @ccmode{}'s development. | |
407 | |
408 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
409 @node Overview, Getting Started, Introduction, Top | |
410 @comment node-name, next, previous, up@cindex organization of the manual | |
411 @chapter Overview of the Manual | |
412 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
413 | |
414 @noindent | |
415 The manual starts with several introductory chapters (including this | |
416 one). | |
417 | |
418 @noindent | |
419 The next chunk of the manual describes the day to day @emph{use} of | |
420 @ccmode{} (as contrasted with how to customize it). | |
421 | |
422 @itemize @bullet | |
423 @item | |
424 The chapter ``Commands'' describes in detail how to use (nearly) all | |
425 of @ccmode{}'s features. There are extensive cross-references from | |
426 here to the corresponding sections later in the manual which tell you | |
427 how to customize these features. | |
428 | |
429 @item | |
430 ``Font Locking'' describes how ``syntax highlighting'' is applied to | |
431 your buffers. It is mainly background information and can be skipped | |
432 over at a first reading. | |
433 @end itemize | |
434 | |
435 @noindent | |
436 The next chunk of the manual describes how to @emph{customize} | |
437 @ccmode{}. Typically, an overview of a topic is given at the chapter | |
438 level, then the sections and subsections describe the material in | |
439 increasing detail. | |
440 | |
441 @itemize @bullet | |
442 @item | |
443 The chapter ``Configuration Basics'' tells you @emph{how} to write | |
444 customizations - whether in hooks, in styles, in both, or in neither, | |
445 depending on your needs. It describes the @ccmode{} style system and | |
446 lists the standard styles that @ccmode{} supplies. | |
447 | |
448 @item | |
449 The next few chapters describe in detail how to customize the various | |
450 features of @ccmode{}. | |
451 | |
452 @item | |
453 Finally, there is a sample @file{.emacs} fragment, which might help you | |
454 in creating your own customization. | |
455 @end itemize | |
456 | |
457 @noindent | |
458 The manual ends with ``this and that'', things that don't fit cleanly | |
459 into any of the previous chunks. | |
460 | |
461 @itemize @bullet | |
462 @item | |
463 Two chapters discuss the performance of @ccmode{} and known | |
464 bugs/limitations. | |
465 | |
466 @item | |
467 The FAQ contains a list of common problems and questions. | |
468 | |
469 @item | |
470 The next two chapters tell you how to get in touch with the @ccmode{} | |
471 project - whether for updating @ccmode{} or submitting bug reports. | |
472 @end itemize | |
473 | |
474 @noindent | |
475 Finally, there are the customary indices. | |
476 | |
477 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
478 @node Getting Started, Commands, Overview, Top | |
479 @comment node-name, next, previous, up | |
480 @chapter Getting Started | |
481 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
482 | |
483 If you got this version of @ccmode{} with Emacs or XEmacs, it should | |
484 work just fine right out of the box. Note however that you might not | |
485 have the latest @ccmode{} release and might want to upgrade your copy | |
486 (see below). | |
487 | |
87453 | 488 You should probably start by skimming through the entire Commands chapter |
489 (@pxref{Commands}) to get an overview of @ccmode{}'s capabilities. | |
84286 | 490 |
491 After trying out some commands, you may dislike some aspects of | |
492 @ccmode{}'s default configuration. Here is an outline of how to | |
493 change some of the settings that newcomers to @ccmode{} most often | |
494 want to change: | |
495 | |
496 @table @asis | |
497 @item c-basic-offset | |
498 This Lisp variable holds an integer, the number of columns @ccmode{} | |
499 indents nested code. To set this value to 6, customize | |
500 @code{c-basic-offset} or put this into your @file{.emacs}: | |
501 | |
502 @example | |
503 (setq c-basic-offset 6) | |
504 @end example | |
505 | |
506 @item The (indentation) style | |
507 The basic ``shape'' of indentation created by @ccmode{}---by default, | |
508 this is @code{gnu} style (except for Java and AWK buffers). A list of | |
509 the available styles and their descriptions can be found in | |
510 @ref{Built-in Styles}. A complete specification of the @ccmode{} | |
511 style system, including how to create your own style, can be found in | |
512 the chapter @ref{Styles}. To set your style to @code{linux}, either | |
513 customize @code{c-default-style} or put this into your @file{.emacs}: | |
514 | |
515 @example | |
516 (setq c-default-style '((java-mode . "java") | |
517 (awk-mode . "awk") | |
518 (other . "linux"))) | |
519 @end example | |
520 | |
521 @item Electric Indentation | |
522 Normally, when you type ``punctuation'' characters such as @samp{;} or | |
523 @samp{@{}, @ccmode{} instantly reindents the current line. This can | |
524 be disconcerting until you get used to it. To disable @dfn{electric | |
525 indentation} in the current buffer, type @kbd{C-c C-l}. Type the same | |
526 thing to enable it again. To have electric indentation disabled by | |
527 default, put the following into your @file{.emacs} file@footnote{There | |
528 is no ``easy customization'' facility for making this change.}: | |
529 | |
530 @example | |
531 (setq-default c-electric-flag nil) | |
532 @end example | |
533 | |
534 @noindent | |
535 Details of this and other similar ``Minor Modes'' appear in the | |
536 section @ref{Minor Modes}. | |
537 | |
538 @item Making the @key{RET} key indent the new line | |
539 The standard Emacs binding for @key{RET} just adds a new line. If you | |
540 want it to reindent the new line as well, rebind the key. Note that | |
541 the action of rebinding would fail if the pertinent keymap didn't yet | |
542 exist---we thus need to delay the action until after @ccmode{} has | |
543 been loaded. Put the following code into your @file{.emacs}: | |
544 | |
545 @example | |
546 (defun my-make-CR-do-indent () | |
547 (define-key c-mode-base-map "\C-m" 'c-context-line-break)) | |
548 (add-hook 'c-initialization-hook 'my-make-CR-do-indent) | |
549 @end example | |
550 | |
551 @noindent | |
552 This example demonstrates the use of a very powerful @ccmode{} (and | |
553 Emacs) facility, the hook. The use of @ccmode{}'s hooks is described | |
554 in @ref{CC Hooks}. | |
555 @end table | |
556 | |
557 All these settings should occur in your @file{.emacs} @emph{before} | |
558 any @ccmode{} buffers get loaded---in particular, before any call of | |
559 @code{desktop-read}. | |
560 | |
561 As you get to know the mode better, you may want to make more | |
562 ambitious changes to your configuration. For this, you should start | |
563 reading the chapter @ref{Config Basics}. | |
564 | |
565 If you are upgrading an existing @ccmode{} installation, please see | |
566 the @file{README} file for installation details. In particular, if | |
567 you are going to be editing AWK files, @file{README} describes how to | |
568 configure your (X)Emacs so that @ccmode{} will supersede the obsolete | |
569 @code{awk-mode.el} which might have been supplied with your (X)Emacs. | |
570 @ccmode{} might not work with older versions of Emacs or XEmacs. See | |
571 the @ccmode{} release notes at @uref{http://cc-mode.sourceforge.net} | |
572 for the latest information on Emacs version and package compatibility | |
573 (@pxref{Updating CC Mode}). | |
574 | |
575 @deffn Command c-version | |
576 @findex version (c-) | |
577 You can find out what version of @ccmode{} you are using by visiting a C | |
578 file and entering @kbd{M-x c-version RET}. You should see this message in | |
579 the echo area: | |
580 | |
581 @example | |
582 Using CC Mode version 5.XX | |
583 @end example | |
584 | |
585 @noindent | |
586 where @samp{XX} is the minor release number. | |
587 @end deffn | |
588 | |
589 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
590 @node Commands, Font Locking, Getting Started, Top | |
591 @comment node-name, next, previous, up | |
592 @chapter Commands | |
593 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
594 | |
595 This chapter specifies all of CC Mode's commands, and thus contains | |
596 nearly everything you need to know to @emph{use} @ccmode{} (as | |
597 contrasted with configuring it). @dfn{Commands} here means both | |
598 control key sequences and @dfn{electric keys}, these being characters | |
599 such as @samp{;} which, as well as inserting themselves into the | |
600 buffer, also do other things. | |
601 | |
602 You might well want to review | |
603 @ifset XEMACS | |
604 @ref{Lists,,,@emacsman{}, @emacsmantitle{}}, | |
605 @end ifset | |
606 @ifclear XEMACS | |
607 @ref{Moving by Parens,,,@emacsman{}, @emacsmantitle{}}, | |
608 @end ifclear | |
609 which describes commands for moving around brace and parenthesis | |
610 structures. | |
611 | |
612 | |
613 @menu | |
614 * Indentation Commands:: | |
615 * Comment Commands:: | |
616 * Movement Commands:: | |
617 * Filling and Breaking:: | |
618 * Minor Modes:: | |
619 * Electric Keys:: | |
620 * Auto-newlines:: | |
621 * Hungry WS Deletion:: | |
622 * Subword Movement:: | |
623 * Other Commands:: | |
624 @end menu | |
625 | |
626 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
627 @node Indentation Commands, Comment Commands, Commands, Commands | |
628 @comment node-name, next, previous,up | |
629 @section Indentation Commands | |
630 @cindex indentation | |
631 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
632 | |
633 The following commands reindent C constructs. Note that when you | |
634 change your coding style, either interactively or through some other | |
635 means, your file does @emph{not} automatically get reindented. You | |
636 will need to execute one of the following commands to see the effects | |
637 of your changes. | |
638 | |
639 @cindex GNU indent program | |
640 Also, variables like @code{c-hanging-*} and @code{c-cleanup-list} | |
641 (@pxref{Custom Auto-newlines}) only affect how on-the-fly code is | |
642 formatted. Changing the ``hanginess'' of a brace and then | |
643 reindenting, will not move the brace to a different line. For this, | |
644 you're better off getting an external program like GNU @code{indent}, | |
645 which will rearrange brace location, amongst other things. | |
646 | |
647 Preprocessor directives are handled as syntactic whitespace from other | |
648 code, i.e. they can be interspersed anywhere without affecting the | |
649 indentation of the surrounding code, just like comments. | |
650 | |
651 The code inside macro definitions is, by default, still analyzed | |
652 syntactically so that you get relative indentation there just as you'd | |
653 get if the same code was outside a macro. However, since there is no | |
654 hint about the syntactic context, i.e. whether the macro expands to an | |
655 expression, to some statements, or perhaps to whole functions, the | |
656 syntactic recognition can be wrong. @ccmode{} manages to figure it | |
657 out correctly most of the time, though. | |
658 | |
659 Reindenting large sections of code can take a long time. When | |
660 @ccmode{} reindents a region of code, it is essentially equivalent to | |
661 hitting @key{TAB} on every line of the region. | |
662 | |
663 These commands indent code: | |
664 | |
665 @table @asis | |
666 @item @kbd{@key{TAB}} (@code{c-indent-command}) | |
667 @kindex TAB | |
668 @findex c-indent-command | |
669 @findex indent-command (c-) | |
670 This command indents the current line. That is all you need to know | |
671 about it for normal use. | |
672 | |
673 @code{c-indent-command} does different things, depending on the | |
674 setting of @code{c-syntactic-indentation} (@pxref{Indentation Engine | |
675 Basics}): | |
676 | |
677 @itemize @bullet | |
678 @item | |
679 When it's non-@code{nil} (which it normally is), the command indents | |
680 the line according to its syntactic context. With a prefix argument | |
681 (@kbd{C-u @key{TAB}}), it will re-indent the entire | |
682 expression@footnote{this is only useful for a line starting with a | |
683 comment opener or an opening brace, parenthesis, or string quote.} | |
684 that begins at the line's left margin. | |
685 | |
686 @item | |
687 When it's @code{nil}, the command indents the line by an extra | |
688 @code{c-basic-offset} columns. A prefix argument acts as a | |
689 multiplier. A bare prefix (@kbd{C-u @key{TAB}}) is equivalent to -1, | |
690 removing @code{c-basic-offset} columns from the indentation. | |
691 @end itemize | |
692 | |
693 The precise behavior is modified by several variables: With | |
694 @code{c-tab-always-indent}, you can make @key{TAB} insert whitespace | |
695 in some circumstances---@code{c-insert-tab-function} then defines | |
696 precisely what sort of ``whitespace'' this will be. Set the standard | |
697 Emacs variable @code{indent-tabs-mode} to @code{t} if you want real | |
698 @samp{tab} characters to be used in the indentation, to @code{nil} if | |
699 you want only spaces. @xref{Just Spaces,,, @emacsman{}, | |
700 @emacsmantitle{}}. | |
701 | |
702 @defopt c-tab-always-indent | |
703 @vindex tab-always-indent (c-) | |
704 @cindex literal | |
705 This variable modifies how @key{TAB} operates. | |
706 @itemize @bullet | |
707 @item | |
708 When it is @code{t} (the default), @key{TAB} simply indents the | |
709 current line. | |
710 @item | |
711 When it is @code{nil}, @key{TAB} (re)indents the line only if point is | |
712 to the left of the first non-whitespace character on the line. | |
713 Otherwise it inserts some whitespace (a tab or an equivalent number of | |
714 spaces - see below) at point. | |
715 @item | |
716 With some other value, the line is reindented. Additionally, if point | |
717 is within a string or comment, some whitespace is inserted. | |
718 @end itemize | |
719 @end defopt | |
720 | |
721 @defopt c-insert-tab-function | |
722 @vindex insert-tab-function (c-) | |
723 @findex tab-to-tab-stop | |
724 When ``some whitespace'' is inserted as described above, what actually | |
725 happens is that the function stored in @code{c-insert-tab-function} is | |
726 called. Normally, this is @code{insert-tab}, which inserts a real tab | |
727 character or the equivalent number of spaces (depending on | |
728 @code{indent-tabs-mode}). Some people, however, set | |
729 @code{c-insert-tab-function} to @code{tab-to-tab-stop} so as to get | |
730 hard tab stops when indenting. | |
731 @end defopt | |
732 @end table | |
733 | |
734 @noindent | |
735 The kind of indentation the next five commands do depends on the | |
736 setting of @code{c-syntactic-indentation} (@pxref{Indentation Engine | |
737 Basics}): | |
738 @itemize @bullet | |
739 @item | |
740 when it is non-@code{nil} (the default), the commands indent lines | |
741 according to their syntactic context; | |
742 @item | |
743 when it is @code{nil}, they just indent each line the same amount as | |
744 the previous non-blank line. The commands that indent a region aren't | |
745 very useful in this case. | |
746 @end itemize | |
747 | |
748 @table @asis | |
749 @item @kbd{C-j} (@code{newline-and-indent}) | |
750 @kindex C-j | |
751 @findex newline-and-indent | |
752 Inserts a newline and indents the new blank line, ready to start | |
753 typing. This is a standard (X)Emacs command. | |
754 | |
755 @item @kbd{C-M-q} (@code{c-indent-exp}) | |
756 @kindex C-M-q | |
757 @findex c-indent-exp | |
758 @findex indent-exp (c-) | |
759 Indents an entire balanced brace or parenthesis expression. Note that | |
760 point must be on the opening brace or parenthesis of the expression | |
761 you want to indent. | |
762 | |
763 @item @kbd{C-c C-q} (@code{c-indent-defun}) | |
764 @kindex C-c C-q | |
765 @findex c-indent-defun | |
766 @findex indent-defun (c-) | |
767 Indents the entire top-level function, class or macro definition | |
768 encompassing point. It leaves point unchanged. This function can't be | |
769 used to reindent a nested brace construct, such as a nested class or | |
770 function, or a Java method. The top-level construct being reindented | |
771 must be complete, i.e. it must have both a beginning brace and an ending | |
772 brace. | |
773 | |
774 @item @kbd{C-M-\} (@code{indent-region}) | |
775 @kindex C-M-\ | |
776 @findex indent-region | |
777 Indents an arbitrary region of code. This is a standard Emacs command, | |
778 tailored for C code in a @ccmode{} buffer. Note, of course, that point | |
779 and mark must delineate the region you want to indent. | |
780 | |
781 @item @kbd{C-M-h} (@code{c-mark-function}) | |
782 @kindex C-M-h | |
783 @findex c-mark-function | |
784 @findex mark-function (c-) | |
785 While not strictly an indentation command, this is useful for marking | |
786 the current top-level function or class definition as the current | |
787 region. As with @code{c-indent-defun}, this command operates on | |
788 top-level constructs, and can't be used to mark say, a Java method. | |
789 @end table | |
790 | |
791 These variables are also useful when indenting code: | |
792 | |
793 @defopt indent-tabs-mode | |
794 This is a standard Emacs variable that controls how line indentation | |
795 is composed. When it's non-@code{nil}, tabs can be used in a line's | |
796 indentation, otherwise only spaces are used. | |
797 @end defopt | |
798 | |
799 @defopt c-progress-interval | |
800 @vindex progress-interval (c-) | |
801 When indenting large regions of code, this variable controls how often a | |
802 progress message is displayed. Set this variable to @code{nil} to | |
803 inhibit the progress messages, or set it to an integer which is how | |
804 often (in seconds) progress messages are to be displayed. | |
805 @end defopt | |
806 | |
807 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
808 @node Comment Commands, Movement Commands, Indentation Commands, Commands | |
809 @comment node-name, next, previous, up | |
810 @section Comment Commands | |
811 @cindex comments (insertion of) | |
812 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
813 | |
814 @table @asis | |
815 @item @kbd{C-c C-c} (@code{comment-region}) | |
816 @kindex C-c C-c | |
817 @findex comment-region | |
818 This command comments out the lines that start in the region. With a | |
819 negative argument, it does the opposite - it deletes the comment | |
820 delimiters from these lines. @xref{Multi-Line Comments,,, emacs, GNU | |
821 Emacs Manual}, for fuller details. @code{comment-region} isn't | |
822 actually part of @ccmode{} - it is given a @ccmode{} binding for | |
823 convenience. | |
824 | |
825 @item @kbd{M-;} (@code{comment-dwim} or @code{indent-for-comment} @footnote{The name of this command varies between (X)Emacs versions.}) | |
826 @kindex M-; | |
827 @findex comment-dwim | |
828 @findex indent-for-comment | |
829 Insert a comment at the end of the current line, if none is there | |
830 already. Then reindent the comment according to @code{comment-column} | |
831 @ifclear XEMACS | |
832 (@pxref{Options for Comments,,, emacs, GNU Emacs Manual}) | |
833 @end ifclear | |
834 @ifset XEMACS | |
835 (@pxref{Comments,,, xemacs, XEmacs User's Manual}) | |
836 @end ifset | |
837 and the variables below. Finally, position the point after the | |
838 comment starter. @kbd{C-u M-;} kills any comment on the current line, | |
839 together with any whitespace before it. This is a standard Emacs | |
840 command, but @ccmode{} enhances it a bit with two variables: | |
841 | |
842 @defopt c-indent-comment-alist | |
843 @vindex indent-comment-alist (c-) | |
844 @vindex comment-column | |
845 This style variable allows you to vary the column that @kbd{M-;} puts | |
846 the comment at, depending on what sort of code is on the line, and | |
847 possibly the indentation of any similar comment on the preceding line. | |
848 It is an association list that maps different types of lines to | |
849 actions describing how they should be handled. If a certain line type | |
850 isn't present on the list then the line is indented to the column | |
851 specified by @code{comment-column}. | |
852 | |
853 See the documentation string for a full description of this | |
854 variable (use @kbd{C-h v c-indent-comment-alist}). | |
855 @end defopt | |
856 | |
857 @defopt c-indent-comments-syntactically-p | |
858 @vindex indent-comments-syntactically-p (c-) | |
859 Normally, when this style variable is @code{nil}, @kbd{M-;} will | |
860 indent comment-only lines according to @code{c-indent-comment-alist}, | |
861 just as it does with lines where other code precede the comments. | |
862 However, if you want it to act just like @key{TAB} for comment-only | |
863 lines you can get that by setting | |
864 @code{c-indent-comments-syntactically-p} to non-@code{nil}. | |
865 | |
866 If @code{c-indent-comments-syntactically-p} is non-@code{nil} then | |
867 @code{c-indent-comment-alist} won't be consulted at all for comment-only | |
868 lines. | |
869 @end defopt | |
870 @end table | |
871 | |
872 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
873 @node Movement Commands, Filling and Breaking, Comment Commands, Commands | |
874 @comment node-name, next, previous, up | |
875 @section Movement Commands | |
876 @cindex movement | |
877 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
878 | |
879 @ccmode{} contains some useful commands for moving around in C code. | |
880 | |
881 @table @asis | |
882 @item @kbd{C-M-a} (@code{c-beginning-of-defun}) | |
883 @itemx @kbd{C-M-e} (@code{c-end-of-defun}) | |
884 @findex c-beginning-of-defun | |
885 @findex c-end-of-defun | |
886 | |
887 Move to the beginning or end of the current or next function. Other | |
888 constructs (such as a structs or classes) which have a brace block | |
889 also count as ``functions'' here. To move over several functions, you | |
890 can give these commands a repeat count. | |
891 | |
892 The start of a function is at its header. The end of the function is | |
893 after its closing brace, or after the semicolon of a construct (such | |
894 as a @code{struct}) which doesn't end at the brace. These two | |
895 commands try to leave point at the beginning of a line near the actual | |
896 start or end of the function. This occasionally causes point not to | |
897 move at all. | |
898 | |
899 These functions are analogous to the Emacs built-in commands | |
900 @code{beginning-of-defun} and @code{end-of-defun}, except they | |
901 eliminate the constraint that the top-level opening brace of the defun | |
902 must be in column zero. See @ref{Defuns,,,@emacsman{}, | |
903 @emacsmantitle{}}, for more information. | |
904 | |
905 @item @kbd{C-M-a} (AWK Mode) (@code{c-awk-beginning-of-defun}) | |
906 @itemx @kbd{C-M-e} (AWK Mode) (@code{c-awk-end-of-defun}) | |
907 @kindex C-M-a (AWK Mode) | |
908 @kindex C-M-e (AWK Mode) | |
909 @findex c-awk-beginning-of-defun | |
910 @findex awk-beginning-of-defun (c-) | |
911 @findex c-awk-end-of-defun | |
912 @findex awk-end-of-defun (c-) | |
913 Move to the beginning or end of the current or next AWK defun. These | |
914 commands can take prefix-arguments, their functionality being entirely | |
915 equivalent to @code{beginning-of-defun} and @code{end-of-defun}. | |
916 | |
917 AWK Mode @dfn{defuns} are either pattern/action pairs (either of which | |
918 might be implicit) or user defined functions. Having the @samp{@{} and | |
919 @samp{@}} (if there are any) in column zero, as is suggested for some | |
920 modes, is neither necessary nor helpful in AWK mode. | |
921 | |
922 @item @kbd{M-a} (@code{c-beginning-of-statement}) | |
923 @itemx @kbd{M-e} (@code{c-end-of-statement}) | |
924 @kindex M-a | |
925 @kindex M-e | |
926 @findex c-beginning-of-statement | |
927 @findex c-end-of-statement | |
928 @findex beginning-of-statement (c-) | |
929 @findex end-of-statement (c-) | |
930 Move to the beginning or end of the innermost C statement. If point | |
931 is already there, move to the next beginning or end of a statement, | |
932 even if that means moving into a block. (Use @kbd{C-M-b} or | |
933 @kbd{C-M-f} to move over a balanced block.) A prefix argument @var{n} | |
934 means move over @var{n} statements. | |
935 | |
936 If point is within or next to a comment or a string which spans more | |
937 than one line, these commands move by sentences instead of statements. | |
938 | |
939 When called from a program, these functions take three optional | |
940 arguments: the repetition count, a buffer position limit which is the | |
941 farthest back to search for the syntactic context, and a flag saying | |
942 whether to do sentence motion in or near comments and multiline | |
943 strings. | |
944 | |
945 @item @kbd{C-c C-u} (@code{c-up-conditional}) | |
946 @kindex C-c C-u | |
947 @findex c-up-conditional | |
948 @findex up-conditional (c-) | |
949 Move back to the containing preprocessor conditional, leaving the mark | |
950 behind. A prefix argument acts as a repeat count. With a negative | |
951 argument, move forward to the end of the containing preprocessor | |
952 conditional. | |
953 | |
954 @samp{#elif} is treated like @samp{#else} followed by @samp{#if}, so the | |
955 function stops at them when going backward, but not when going | |
956 forward. | |
957 | |
958 This key sequence is not bound in AWK Mode, which doesn't have | |
959 preprocessor statements. | |
960 | |
961 @item @kbd{M-x c-up-conditional-with-else} | |
962 @findex c-up-conditional-with-else | |
963 @findex up-conditional-with-else (c-) | |
964 A variety of @code{c-up-conditional} that also stops at @samp{#else} | |
965 lines. Normally those lines are ignored. | |
966 | |
967 @item @kbd{M-x c-down-conditional} | |
968 @findex c-down-conditional | |
969 @findex down-conditional (c-) | |
970 Move forward into the next nested preprocessor conditional, leaving | |
971 the mark behind. A prefix argument acts as a repeat count. With a | |
972 negative argument, move backward into the previous nested preprocessor | |
973 conditional. | |
974 | |
975 @samp{#elif} is treated like @samp{#else} followed by @samp{#if}, so the | |
976 function stops at them when going forward, but not when going backward. | |
977 | |
978 @item @kbd{M-x c-down-conditional-with-else} | |
979 @findex c-down-conditional-with-else | |
980 @findex down-conditional-with-else (c-) | |
981 A variety of @code{c-down-conditional} that also stops at @samp{#else} | |
982 lines. Normally those lines are ignored. | |
983 | |
984 @item @kbd{C-c C-p} (@code{c-backward-conditional}) | |
985 @itemx @kbd{C-c C-n} (@code{c-forward-conditional}) | |
986 @kindex C-c C-p | |
987 @kindex C-c C-n | |
988 @findex c-backward-conditional | |
989 @findex c-forward-conditional | |
990 @findex backward-conditional (c-) | |
991 @findex forward-conditional (c-) | |
992 Move backward or forward across a preprocessor conditional, leaving | |
993 the mark behind. A prefix argument acts as a repeat count. With a | |
994 negative argument, move in the opposite direction. | |
995 | |
996 These key sequences are not bound in AWK Mode, which doesn't have | |
997 preprocessor statements. | |
998 | |
999 @item @kbd{M-x c-backward-into-nomenclature} | |
1000 @itemx @kbd{M-x c-forward-into-nomenclature} | |
1001 @findex c-backward-into-nomenclature | |
1002 @findex c-forward-into-nomenclature | |
1003 @findex backward-into-nomenclature (c-) | |
1004 @findex forward-into-nomenclature (c-) | |
1005 A popular programming style, especially for object-oriented languages | |
1006 such as C++ is to write symbols in a mixed case format, where the | |
1007 first letter of each word is capitalized, and not separated by | |
1008 underscores. E.g. @samp{SymbolsWithMixedCaseAndNoUnderlines}. | |
1009 | |
1010 These commands move backward or forward to the beginning of the next | |
1011 capitalized word. With prefix argument @var{n}, move @var{n} times. | |
1012 If @var{n} is negative, move in the opposite direction. | |
1013 | |
1014 Note that these two commands have been superseded by | |
1015 @code{c-subword-mode}, which you should use instead. @xref{Subword | |
1016 Movement}. They might be removed from a future release of @ccmode{}. | |
1017 @end table | |
1018 | |
1019 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1020 @node Filling and Breaking, Minor Modes, Movement Commands, Commands | |
1021 @comment node-name, next, previous, up | |
1022 @section Filling and Line Breaking Commands | |
1023 @cindex text filling | |
1024 @cindex line breaking | |
1025 @cindex comment handling | |
1026 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1027 | |
1028 Since there's a lot of normal text in comments and string literals, | |
1029 @ccmode{} provides features to edit these like in text mode. The goal | |
1030 is to do it seamlessly, i.e. you can use auto fill mode, sentence and | |
1031 paragraph movement, paragraph filling, adaptive filling etc. wherever | |
1032 there's a piece of normal text without having to think much about it. | |
1033 @ccmode{} keeps the indentation, fixes suitable comment line prefixes, | |
1034 and so on. | |
1035 | |
1036 You can configure the exact way comments get filled and broken, and | |
1037 where Emacs does auto-filling (see @pxref{Custom Filling and | |
1038 Breaking}). Typically, the style system (@pxref{Styles}) will have | |
1039 set this up for you, so you probably won't have to bother. | |
1040 | |
1041 @findex auto-fill-mode | |
1042 @cindex Auto Fill mode | |
1043 @cindex paragraph filling | |
1044 Line breaks are by default handled (almost) the same regardless of | |
1045 whether they are made by auto fill mode (@pxref{Auto Fill,,, | |
1046 @emacsman{}, @emacsmantitle{}}), by paragraph filling (e.g. with | |
1047 @kbd{M-q}), or explicitly with @kbd{M-j} or similar methods. In | |
1048 string literals, the new line gets the same indentation as the | |
1049 previous nonempty line.@footnote{You can change this default by | |
1050 setting the @code{string} syntactic symbol (@pxref{Syntactic Symbols} | |
1051 and @pxref{Customizing Indentation})}. | |
1052 | |
1053 @table @asis | |
1054 @item @kbd{M-q} (@code{c-fill-paragraph}) | |
1055 @kindex M-q | |
1056 @findex c-fill-paragraph | |
1057 @findex fill-paragraph (c-) | |
1058 @cindex Javadoc markup | |
1059 @cindex Pike autodoc markup | |
1060 This command fills multiline string literals and both block | |
1061 and line style comments. In Java buffers, the Javadoc markup words | |
1062 are recognized as paragraph starters. The line oriented Pike autodoc | |
1063 markup words are recognized in the same way in Pike mode. | |
1064 | |
1065 The formatting of the starters (@code{/*}) and enders (@code{*/}) of | |
1066 block comments are kept as they were before the filling. I.e., if | |
1067 either the starter or ender were on a line of its own, then it stays | |
1068 on its own line; conversely, if the delimiter has comment text on its | |
1069 line, it keeps at least one word of that text with it on the line. | |
1070 | |
1071 This command is the replacement for @code{fill-paragraph} in @ccmode{} | |
1072 buffers. | |
1073 | |
1074 @item @kbd{M-j} (@code{c-indent-new-comment-line}) | |
1075 @kindex M-j | |
1076 @findex c-indent-new-comment-line | |
1077 @findex indent-new-comment-line (c-) | |
1078 This breaks the current line at point and indents the new line. If | |
1079 point was in a comment, the new line gets the proper comment line | |
1080 prefix. If point was inside a macro, a backslash is inserted before | |
1081 the line break. It is the replacement for | |
1082 @code{indent-new-comment-line}. | |
1083 | |
1084 @item @kbd{M-x c-context-line-break} | |
1085 @findex c-context-line-break | |
1086 @findex context-line-break (c-) | |
1087 Insert a line break suitable to the context: If the point is inside a | |
1088 comment, the new line gets the suitable indentation and comment line | |
1089 prefix like @code{c-indent-new-comment-line}. In normal code it's | |
1090 indented like @code{newline-and-indent} would do. In macros it acts | |
1091 like @code{newline-and-indent} but additionally inserts and optionally | |
1092 aligns the line ending backslash so that the macro remains unbroken. | |
1093 @xref{Custom Macros}, for details about the backslash alignment. In a | |
1094 string, a backslash is inserted only if the string is within a | |
1095 macro@footnote{In GCC, unescaped line breaks within strings are | |
1096 valid.}. | |
1097 | |
1098 This function is not bound to a key by default, but it's intended to be | |
1099 used on the @kbd{RET} key. If you like the behavior of | |
1100 @code{newline-and-indent} on @kbd{RET}, you should consider switching to | |
1101 this function. @xref{Sample .emacs File}. | |
1102 | |
1103 @item @kbd{M-x c-context-open-line} | |
1104 @findex c-context-open-line | |
1105 @findex context-open-line (c-) | |
1106 This is to @kbd{C-o} (@kbd{M-x open-line}) as | |
1107 @code{c-context-line-break} is to @kbd{RET}. I.e. it works just like | |
1108 @code{c-context-line-break} but leaves the point before the inserted | |
1109 line break. | |
1110 @end table | |
1111 | |
1112 | |
1113 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1114 @node Minor Modes, Electric Keys, Filling and Breaking, Commands | |
1115 @comment node-name, next, previous, up | |
1116 @section Minor Modes | |
1117 @cindex Minor Modes | |
1118 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1119 | |
1120 @ccmode{} contains several minor-mode-like features that you might | |
1121 find useful while writing new code or editing old code: | |
1122 | |
1123 @table @asis | |
1124 @item electric mode | |
1125 When this is enabled, certain visible characters cause reformatting as | |
1126 they are typed. This is normally helpful, but can be a nuisance when | |
1127 editing chaotically formatted code. It can also be disconcerting, | |
1128 especially for users who are new to @ccmode{}. | |
1129 @item auto-newline mode | |
1130 This automatically inserts newlines where you'd probably want to type | |
1131 them yourself, e.g. after typing @samp{@}}s. Its action is suppressed | |
1132 when electric mode is disabled. | |
1133 @item hungry-delete mode | |
1134 This lets you delete a contiguous block of whitespace with a single | |
1135 key - for example, the newline and indentation just inserted by | |
1136 auto-newline when you want to back up and write a comment after the | |
1137 last statement. | |
1138 @item subword mode | |
1139 This mode makes basic word movement commands like @kbd{M-f} | |
1140 (@code{forward-word}) and @kbd{M-b} (@code{backward-word}) treat the | |
1141 parts of sillycapsed symbols as different words. | |
1142 E.g. @samp{NSGraphicsContext} is treated as three words @samp{NS}, | |
1143 @samp{Graphics}, and @samp{Context}. | |
1144 @item syntactic-indentation mode | |
1145 When this is enabled (which it normally is), indentation commands such | |
1146 as @kbd{C-j} indent lines of code according to their syntactic | |
1147 structure. Otherwise, a line is simply indented to the same level as | |
1148 the previous one and @kbd{@key{TAB}} adjusts the indentation in steps | |
1149 of `c-basic-offset'. | |
1150 @end table | |
1151 | |
1152 Full details on how these minor modes work are at @ref{Electric Keys}, | |
1153 @ref{Auto-newlines}, @ref{Hungry WS Deletion}, @ref{Subword Movement}, | |
1154 and @ref{Indentation Engine Basics}. | |
1155 | |
1156 You can toggle each of these minor modes on and off, and you can | |
1157 configure @ccmode{} so that it starts up with your favourite | |
1158 combination of them (@pxref{Sample .emacs File}). By default, when | |
1159 you initialize a buffer, electric mode and syntactic-indentation mode | |
1160 are enabled but the other two modes are disabled. | |
1161 | |
1162 @ccmode{} displays the current state of the first four of these minor | |
1163 modes on the modeline by appending letters to the major mode's name, | |
1164 one letter for each enabled minor mode - @samp{l} for electric mode, | |
1165 @samp{a} for auto-newline mode, @samp{h} for hungry delete mode, and | |
1166 @samp{w} for subword mode. If all these modes were enabled, you'd see | |
1167 @samp{C/lahw}@footnote{The @samp{C} would be replaced with the name of | |
1168 the language in question for the other languages @ccmode{} supports.}. | |
1169 | |
1170 Here are the commands to toggle these modes: | |
1171 | |
1172 @table @asis | |
1173 @item @kbd{C-c C-l} (@code{c-toggle-electric-state}) | |
1174 @kindex C-c C-l | |
1175 @findex c-toggle-electric-state | |
1176 @findex toggle-electric-state (c-) | |
1177 Toggle electric minor mode. When the command turns the mode off, it | |
1178 also suppresses auto-newline mode. | |
1179 | |
1180 @item @kbd{C-c C-a} (@code{c-toggle-auto-newline}) | |
1181 @kindex C-c C-a | |
1182 @findex c-toggle-auto-newline | |
1183 @findex toggle-auto-newline (c-) | |
1184 Toggle auto-newline minor mode. When the command turns the mode on, | |
1185 it also enables electric minor mode. | |
1186 | |
1187 @item @kbd{M-x c-toggle-hungry-state}@footnote{Prior to @ccmode{} 5.31, this command was bound to @kbd{C-c C-d}.} | |
1188 @findex c-toggle-hungry-state | |
1189 @findex toggle-hungry-state (c-) | |
1190 Toggle hungry-delete minor mode. | |
1191 | |
1192 @item @kbd{M-x c-toggle-auto-hungry-state}@footnote{Prior to @ccmode{} 5.31, this command was bound to @kbd{C-c C-t}.} | |
1193 @findex c-toggle-auto-hungry-state | |
1194 @findex toggle-auto-hungry-state (c-) | |
1195 Toggle both auto-newline and hungry delete minor modes. | |
1196 | |
1197 @item @kbd{C-c C-w} (@code{M-x c-subword-mode}) | |
1198 @kindex C-c C-w | |
1199 @findex c-subword-mode | |
1200 @findex subword-mode (c-) | |
1201 Toggle subword mode. | |
1202 | |
1203 @item @kbd{M-x c-toggle-syntactic-indentation} | |
1204 @findex c-toggle-syntactic-indentation | |
1205 @findex toggle-syntactic-indentation (c-) | |
1206 Toggle syntactic-indentation mode. | |
1207 @end table | |
1208 | |
1209 Common to all the toggle functions above is that if they are called | |
1210 programmatically, they take an optional numerical argument. A | |
1211 positive value will turn on the minor mode (or both of them in the | |
1212 case of @code{c-toggle-auto-hungry-state}) and a negative value will | |
1213 turn it (or them) off. | |
1214 | |
1215 | |
1216 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1217 @node Electric Keys, Auto-newlines, Minor Modes, Commands | |
1218 @comment node-name, next, previous, up | |
1219 @section Electric Keys and Keywords | |
1220 @cindex electric characters | |
1221 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1222 | |
1223 Most punctuation keys provide @dfn{electric} behavior - as well as | |
1224 inserting themselves they perform some other action, such as | |
1225 reindenting the line. This reindentation saves you from having to | |
1226 reindent a line manually after typing, say, a @samp{@}}. A few | |
1227 keywords, such as @code{else}, also trigger electric action. | |
1228 | |
86093
d223d695f3f3
(Electric Keys, Electric Keys, Custom Macros): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
85173
diff
changeset
|
1229 You can inhibit the electric behavior described here by disabling |
84286 | 1230 electric minor mode (@pxref{Minor Modes}). |
1231 | |
1232 Common to all these keys is that they only behave electrically when | |
1233 used in normal code (as contrasted with getting typed in a string | |
1234 literal or comment). Those which cause re-indentation do so only when | |
1235 @code{c-syntactic-indentation} has a non-@code{nil} value (which it | |
1236 does by default). | |
1237 | |
1238 These keys and keywords are: | |
1239 @c ACM, 2004/8/24: c-electric-pound doesn't check c-s-i: this is more | |
1240 @c like a bug in the code than a bug in this document. It'll get | |
1241 @c fixed in the code sometime. | |
1242 | |
1243 @table @kbd | |
1244 @item # | |
1245 @kindex # | |
1246 @findex c-electric-pound | |
1247 @findex electric-pound (c-) | |
1248 @vindex c-electric-pound-behavior | |
1249 @vindex electric-pound-behavior (c-) | |
1250 Pound (bound to @code{c-electric-pound}) is electric when typed as the | |
1251 first non-whitespace character on a line and not within a macro | |
1252 definition. In this case, the variable @code{c-electric-pound-behavior} | |
1253 is consulted for the electric behavior. This variable takes a list | |
1254 value, although the only element currently defined is @code{alignleft}, | |
1255 which tells this command to force the @samp{#} character into column | |
1256 zero. This is useful for entering preprocessor macro definitions. | |
1257 | |
1258 Pound is not electric in AWK buffers, where @samp{#} starts a comment, | |
1259 and is bound to @code{self-insert-command} like any typical printable | |
1260 character. | |
1261 @c ACM, 2004/8/24: Change this (and the code) to do AWK comment | |
1262 @c reindentation. | |
1263 | |
1264 @item * | |
1265 @kindex * | |
1266 @itemx / | |
1267 @kindex / | |
1268 @findex c-electric-star | |
1269 @findex electric-star (c-) | |
1270 @findex c-electric-slash | |
1271 @findex electric-slash (c-) | |
1272 A star (bound to @code{c-electric-star}) or a slash | |
1273 (@code{c-electric-slash}) causes reindentation when you type it as the | |
1274 second component of a C style block comment opener (@samp{/*}) or a | |
1275 C++ line comment opener (@samp{//}) respectively, but only if the | |
1276 comment opener is the first thing on the line (i.e. there's only | |
1277 whitespace before it). | |
1278 | |
1279 Additionally, you can configure @ccmode{} so that typing a slash at | |
1280 the start of a line within a block comment will terminate the | |
1281 comment. You don't need to have electric minor mode enabled to get | |
86093
d223d695f3f3
(Electric Keys, Electric Keys, Custom Macros): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
85173
diff
changeset
|
1282 this behavior. @xref{Clean-ups}. |
84286 | 1283 |
1284 In AWK mode, @samp{*} and @samp{/} do not delimit comments and are not | |
1285 electric. | |
1286 | |
1287 @item < | |
1288 @kindex < | |
1289 @itemx > | |
1290 @kindex > | |
1291 @findex c-electric-lt-gt | |
1292 @findex electric-lt-gt (c-) | |
1293 A less-than or greater-than sign (bound to @code{c-electric-lt-gt}) is | |
1294 electric in two circumstances: when it is an angle bracket in a C++ | |
1295 @samp{template} declaration (and similar constructs in other | |
1296 languages) and when it is the second of two @kbd{<} or @kbd{>} | |
1297 characters in a C++ style stream operator. In either case, the line | |
1298 is reindented. Angle brackets in C @samp{#include} directives are not | |
1299 electric. | |
1300 | |
1301 @item ( | |
1302 @kindex ( | |
1303 @itemx ) | |
1304 @kindex ) | |
1305 @findex c-electric-paren | |
1306 @findex electric-paren (c-) | |
1307 The normal parenthesis characters @samp{(} and @samp{)} (bound to | |
1308 @code{c-electric-paren}) reindent the current line. This is useful | |
1309 for getting the closing parenthesis of an argument list aligned | |
1310 automatically. | |
1311 | |
1312 You can also configure @ccmode{} to insert a space automatically | |
1313 between a function name and the @samp{(} you've just typed, and to | |
1314 remove it automatically after typing @samp{)}, should the argument | |
1315 list be empty. You don't need to have electric minor mode enabled to | |
1316 get these actions. @xref{Clean-ups}. | |
1317 | |
1318 @item @{ | |
1319 @kindex @{ | |
1320 @itemx @} | |
1321 @kindex @} | |
1322 @findex c-electric-brace | |
1323 @findex electric-brace (c-) | |
1324 Typing a brace (bound to @code{c-electric-brace}) reindents the | |
1325 current line. Also, one or more newlines might be inserted if | |
1326 auto-newline minor mode is enabled. @xref{Auto-newlines}. | |
1327 Additionally, you can configure @ccmode{} to compact excess whitespace | |
1328 inserted by auto-newline mode in certain circumstances. | |
1329 @xref{Clean-ups}. | |
1330 | |
1331 @item : | |
1332 @kindex : | |
1333 @findex c-electric-colon | |
1334 @findex electric-colon (c-) | |
1335 Typing a colon (bound to @code{c-electric-colon}) reindents the | |
1336 current line. Additionally, one or more newlines might be inserted if | |
1337 auto-newline minor mode is enabled. @xref{Auto-newlines}. If you | |
1338 type a second colon immediately after such an auto-newline, by default | |
1339 the whitespace between the two colons is removed, leaving a C++ scope | |
1340 operator. @xref{Clean-ups}. | |
1341 | |
1342 If you prefer, you can insert @samp{::} in a single operation, | |
1343 avoiding all these spurious reindentations, newlines, and clean-ups. | |
1344 @xref{Other Commands}. | |
1345 | |
1346 @item ; | |
1347 @kindex ; | |
1348 @itemx , | |
1349 @kindex , | |
1350 @findex c-electric-semi&comma | |
1351 @findex electric-semi&comma (c-) | |
1352 Typing a semicolon or comma (bound to @code{c-electric-semi&comma}) | |
1353 reindents the current line. Also, a newline might be inserted if | |
1354 auto-newline minor mode is enabled. @xref{Auto-newlines}. | |
1355 Additionally, you can configure @ccmode{} so that when auto-newline | |
1356 has inserted whitespace after a @samp{@}}, it will be removed again | |
1357 when you type a semicolon or comma just after it. @xref{Clean-ups}. | |
1358 | |
1359 @end table | |
1360 | |
1361 @deffn Command c-electric-continued-statement | |
1362 @findex electric-continued-statement (c-) | |
1363 | |
1364 Certain keywords are electric, causing reindentation when they are | |
1365 preceded only by whitespace on the line. The keywords are those that | |
1366 continue an earlier statement instead of starting a new one: | |
1367 @code{else}, @code{while}, @code{catch} (only in C++ and Java) and | |
1368 @code{finally} (only in Java). | |
1369 | |
1370 An example: | |
1371 | |
1372 @example | |
1373 @group | |
1374 for (i = 0; i < 17; i++) | |
1375 if (a[i]) | |
1376 res += a[i]->offset; | |
1377 else | |
1378 @end group | |
1379 @end example | |
1380 | |
1381 Here, the @code{else} should be indented like the preceding @code{if}, | |
1382 since it continues that statement. @ccmode{} will automatically | |
1383 reindent it after the @code{else} has been typed in full, since only | |
1384 then is it possible to decide whether it's a new statement or a | |
1385 continuation of the preceding @code{if}. | |
1386 | |
1387 @vindex abbrev-mode | |
1388 @findex abbrev-mode | |
1389 @cindex Abbrev mode | |
1390 @ccmode{} uses Abbrev mode (@pxref{Abbrevs,,, @emacsman{}, @emacsmantitle{}}) | |
1391 to accomplish this. It's therefore turned on by default in all language | |
1392 modes except IDL mode, since CORBA IDL doesn't have any statements. | |
1393 @end deffn | |
1394 | |
1395 | |
1396 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1397 @node Auto-newlines, Hungry WS Deletion, Electric Keys, Commands | |
1398 @comment node-name, next, previous, up | |
1399 @section Auto-newline Insertion | |
1400 @cindex auto-newline | |
1401 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1402 | |
1403 When you have @dfn{Auto-newline minor mode} enabled (@pxref{Minor | |
1404 Modes}), @ccmode{} inserts newlines for you automatically (in certain | |
1405 syntactic contexts) when you type a left or right brace, a colon, a | |
1406 semicolon, or a comma. Sometimes a newline appears before the | |
1407 character you type, sometimes after it, sometimes both. | |
1408 | |
1409 Auto-newline only triggers when the following conditions hold: | |
1410 | |
1411 @itemize @bullet | |
1412 @item | |
1413 Auto-newline minor mode is enabled, as evidenced by the indicator | |
1414 @samp{a} after the mode name on the modeline (e.g. @samp{C/a} or | |
1415 @samp{C/la}). | |
1416 | |
1417 @item | |
1418 The character was typed at the end of a line, or with only whitespace | |
1419 after it, and possibly a @samp{\} escaping the newline. | |
1420 | |
1421 @item | |
1422 The character is not on its own line already. (This applies only to | |
1423 insertion of a newline @emph{before} the character.) | |
1424 | |
1425 @item | |
1426 @cindex literal | |
1427 @cindex syntactic whitespace | |
1428 The character was not typed inside of a literal @footnote{A | |
1429 @dfn{literal} is defined as any comment, string, or preprocessor macro | |
1430 definition. These constructs are also known as @dfn{syntactic | |
1431 whitespace} since they are usually ignored when scanning C code.}. | |
1432 | |
1433 @item | |
1434 No numeric argument was supplied to the command (i.e. it was typed as | |
1435 normal, with no @kbd{C-u} prefix). | |
1436 @end itemize | |
1437 | |
1438 You can configure the precise circumstances in which newlines get | |
1439 inserted (see @pxref{Custom Auto-newlines}). Typically, the style | |
1440 system (@pxref{Styles}) will have set this up for you, so you probably | |
1441 won't have to bother. | |
1442 | |
1443 Sometimes @ccmode{} inserts an auto-newline where you don't want one, | |
1444 such as after a @samp{@}} when you're about to type a @samp{;}. | |
1445 Hungry deletion can help here (@pxref{Hungry WS Deletion}), or you can | |
1446 activate an appropriate @dfn{clean-up}, which will remove the excess | |
1447 whitespace after you've typed the @samp{;}. See @ref{Clean-ups} for a | |
1448 full description. See also @ref{Electric Keys} for a summary of | |
1449 clean-ups listed by key. | |
1450 | |
1451 | |
1452 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1453 @node Hungry WS Deletion, Subword Movement, Auto-newlines, Commands | |
1454 @comment node-name, next, previous, up | |
1455 @section Hungry Deletion of Whitespace | |
1456 @cindex hungry-deletion | |
1457 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1458 | |
1459 If you want to delete an entire block of whitespace at point, you can | |
1460 use @dfn{hungry deletion}. This deletes all the contiguous whitespace | |
1461 either before point or after point in a single operation. | |
1462 ``Whitespace'' here includes tabs and newlines, but not comments or | |
1463 preprocessor commands. Hungry deletion can markedly cut down on the | |
1464 number of times you have to hit deletion keys when, for example, | |
1465 you've made a mistake on the preceding line and have already pressed | |
1466 @kbd{C-j}. | |
1467 | |
1468 Hungry deletion is a simple feature that some people find extremely | |
1469 useful. In fact, you might find yourself wanting it in @strong{all} | |
1470 your editing modes! | |
1471 | |
1472 Loosely speaking, in what follows, @dfn{@key{DEL}} means ``the | |
1473 backspace key'' and @dfn{@key{DELETE}} means ``the forward delete | |
1474 key''. This is discussed in more detail below. | |
1475 | |
1476 There are two different ways you can use hungry deletion: | |
1477 | |
1478 @table @asis | |
1479 @item Using @dfn{Hungry Delete Mode} with @kbd{@key{DEL}} and @kbd{C-d} | |
1480 Here you toggle Hungry Delete minor mode with @kbd{M-x | |
1481 c-toggle-hungry-state}@footnote{Prior to @ccmode{} 5.31, this command | |
1482 was bound to @kbd{C-c C-d}. @kbd{C-c C-d} is now the default binding | |
1483 for @code{c-hungry-delete-forward}.} (@pxref{Minor Modes}.) This | |
1484 makes @kbd{@key{DEL}} and @kbd{C-d} do backwards and forward hungry | |
1485 deletion. | |
1486 | |
1487 @table @asis | |
1488 @item @kbd{@key{DEL}} (@code{c-electric-backspace}) | |
1489 @kindex DEL | |
1490 @findex c-electric-backspace | |
1491 @findex electric-backspace (c-) | |
1492 This command is run by default when you hit the @kbd{DEL} key. When | |
1493 hungry delete mode is enabled, it deletes any amount of whitespace in | |
1494 the backwards direction. Otherwise, or when used with a prefix | |
1495 argument or in a literal (@pxref{Auto-newlines}), the command just | |
1496 deletes backwards in the usual way. (More precisely, it calls the | |
1497 function contained in the variable @code{c-backspace-function}, | |
1498 passing it the prefix argument, if any.) | |
1499 | |
1500 @item @code{c-backspace-function} | |
1501 @vindex c-backspace-function | |
1502 @vindex backspace-function (c-) | |
1503 @findex backward-delete-char-untabify | |
1504 Hook that gets called by @code{c-electric-backspace} when it doesn't | |
1505 do an ``electric'' deletion of the preceding whitespace. The default | |
1506 value is @code{backward-delete-char-untabify} | |
1507 (@pxref{Deletion,,,@lispref{}, @lispreftitle{}}, the function which | |
1508 deletes a single character. | |
1509 | |
1510 @item @kbd{C-d} (@code{c-electric-delete-forward}) | |
1511 @kindex C-d | |
1512 @findex c-electric-delete-forward | |
1513 @findex electric-delete-forward (c-) | |
1514 This function, which is bound to @kbd{C-d} by default, works just like | |
1515 @code{c-electric-backspace} but in the forward direction. When it | |
1516 doesn't do an ``electric'' deletion of the following whitespace, it | |
1517 just does @code{delete-char}, more or less. (Strictly speaking, it | |
1518 calls the function in @code{c-delete-function} with the prefix | |
1519 argument.) | |
1520 | |
1521 @item @code{c-delete-function} | |
1522 @vindex c-delete-function | |
1523 @vindex delete-function (c-) | |
1524 @findex delete-char | |
1525 Hook that gets called by @code{c-electric-delete-forward} when it | |
1526 doesn't do an ``electric'' deletion of the following whitespace. The | |
1527 default value is @code{delete-char}. | |
1528 @end table | |
1529 | |
1530 @item Using Distinct Bindings | |
1531 The other (newer and recommended) way to use hungry deletion is to | |
1532 perform @code{c-hungry-delete-backwards} and | |
1533 @code{c-hungry-delete-forward} directly through their key sequences | |
1534 rather than using the minor mode toggling. | |
1535 | |
1536 @table @asis | |
1537 @item @kbd{C-c C-@key{DEL}}, or @kbd{C-c @key{DEL}} (@code{c-hungry-delete-backwards})@footnote{This command was formerly known as @code{c-hungry-backspace}.} | |
1538 @kindex C-c C-<backspace> | |
1539 @kindex C-c <backspace> | |
1540 @kindex C-c C-DEL | |
1541 @kindex C-c DEL | |
1542 @findex c-hungry-delete-backwards | |
1543 @findex hungry-delete-backwards (c-) | |
1544 Delete any amount of whitespace in the backwards direction (regardless | |
1545 whether hungry-delete mode is enabled or not). This command is bound | |
1546 to both @kbd{C-c C-@key{DEL}} and @kbd{C-c @key{DEL}}, since the more | |
1547 natural one, @kbd{C-c C-@key{DEL}}, is sometimes difficult to type at | |
1548 a character terminal. | |
1549 | |
1550 @item @kbd{C-c C-d}, @kbd{C-c C-@key{DELETE}}, or @kbd{C-c @key{DELETE}} (@code{c-hungry-delete-forward}) | |
1551 @kindex C-c C-d | |
1552 @kindex C-c C-<DELETE> | |
1553 @kindex C-c <DELETE> | |
1554 @findex c-hungry-delete-forward | |
1555 @findex hungry-delete-forward (c-) | |
1556 Delete any amount of whitespace in the forward direction (regardless | |
1557 whether hungry-delete mode is enabled or not). This command is bound | |
1558 to both @kbd{C-c C-@key{DELETE}} and @kbd{C-c @key{DELETE}} for the | |
1559 same reason as for @key{DEL} above. | |
1560 @end table | |
1561 @end table | |
1562 | |
1563 @kindex <delete> | |
1564 @kindex <backspace> | |
1565 | |
1566 When we talk about @kbd{@key{DEL}}, and @kbd{@key{DELETE}} above, we | |
1567 actually do so without connecting them to the physical keys commonly | |
1568 known as @key{Backspace} and @key{Delete}. The default bindings to | |
1569 those two keys depends on the flavor of (X)Emacs you are using. | |
1570 | |
1571 @findex c-electric-delete | |
1572 @findex electric-delete (c-) | |
1573 @findex c-hungry-delete | |
1574 @findex hungry-delete (c-) | |
1575 @vindex delete-key-deletes-forward | |
1576 In XEmacs 20.3 and beyond, the @key{Backspace} key is bound to | |
1577 @code{c-electric-backspace} and the @key{Delete} key is bound to | |
1578 @code{c-electric-delete}. You control the direction it deletes in by | |
1579 setting the variable @code{delete-key-deletes-forward}, a standard | |
1580 XEmacs variable. | |
1581 @c This variable is encapsulated by XEmacs's (defsubst delete-forward-p ...). | |
1582 When this variable is non-@code{nil}, @code{c-electric-delete} will do | |
1583 forward deletion with @code{c-electric-delete-forward}, otherwise it | |
1584 does backward deletion with @code{c-electric-backspace}. Similarly, | |
1585 @kbd{C-c @key{Delete}} and @kbd{C-c C-@key{Delete}} are bound to | |
1586 @code{c-hungry-delete} which is controlled in the same way by | |
1587 @code{delete-key-deletes-forward}. | |
1588 | |
1589 @findex normal-erase-is-backspace-mode | |
1590 | |
1591 Emacs 21 and later automatically binds @key{Backspace} and | |
1592 @key{Delete} to @kbd{DEL} and @kbd{C-d} according to your environment, | |
1593 and @ccmode{} extends those bindings to @kbd{C-c C-@key{Backspace}} | |
1594 etc. If you need to change the bindings through | |
1595 @code{normal-erase-is-backspace-mode} then @ccmode{} will also adapt | |
1596 its extended bindings accordingly. | |
1597 | |
1598 In earlier (X)Emacs versions, @ccmode{} doesn't bind either | |
1599 @key{Backspace} or @key{Delete} directly. Only the key codes | |
1600 @kbd{DEL} and @kbd{C-d} are bound, and it's up to the default bindings | |
1601 to map the physical keys to them. You might need to modify this | |
1602 yourself if the defaults are unsuitable. | |
1603 | |
1604 Getting your @key{Backspace} and @key{Delete} keys properly set up can | |
1605 sometimes be tricky. The information in @ref{DEL Does Not | |
1606 Delete,,,emacs, GNU Emacs Manual}, might be helpful if you're having | |
1607 trouble with this in GNU Emacs. | |
1608 | |
1609 | |
1610 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1611 @node Subword Movement, Other Commands, Hungry WS Deletion, Commands | |
1612 @comment node-name, next, previous, up | |
1613 @section Subword Movement and Editing | |
1614 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1615 | |
1616 @cindex nomenclature | |
1617 @cindex subword | |
1618 In spite of the GNU Coding Standards, it is popular to name a symbol | |
1619 by mixing uppercase and lowercase letters, e.g. @samp{GtkWidget}, | |
1620 @samp{EmacsFrameClass}, or @samp{NSGraphicsContext}. Here we call | |
1621 these mixed case symbols @dfn{nomenclatures}. Also, each capitalized | |
1622 (or completely uppercase) part of a nomenclature is called a | |
1623 @dfn{subword}. Here are some examples: | |
1624 | |
1625 @multitable {@samp{NSGraphicsContext}} {@samp{NS}, @samp{Graphics}, and @samp{Context}} | |
1626 @c This could be converted to @headitem when we require Texinfo 4.7 | |
1627 @iftex | |
1628 @item @b{Nomenclature} | |
1629 @tab @b{Subwords} | |
1630 @end iftex | |
1631 @ifnottex | |
1632 @item Nomenclature | |
1633 @tab Subwords | |
1634 @item --------------------------------------------------------- | |
1635 @end ifnottex | |
1636 @item @samp{GtkWindow} | |
1637 @tab @samp{Gtk} and @samp{Window} | |
1638 @item @samp{EmacsFrameClass} | |
1639 @tab @samp{Emacs}, @samp{Frame}, and @samp{Class} | |
1640 @item @samp{NSGraphicsContext} | |
1641 @tab @samp{NS}, @samp{Graphics}, and @samp{Context} | |
1642 @end multitable | |
1643 | |
1644 The subword minor mode replaces the basic word oriented movement and | |
1645 editing commands with variants that recognize subwords in a | |
1646 nomenclature and treat them as separate words: | |
1647 | |
1648 @findex c-forward-subword | |
1649 @findex forward-subword (c-) | |
1650 @findex c-backward-subword | |
1651 @findex backward-subword (c-) | |
1652 @findex c-mark-subword | |
1653 @findex mark-subword (c-) | |
1654 @findex c-kill-subword | |
1655 @findex kill-subword (c-) | |
1656 @findex c-backward-kill-subword | |
1657 @findex backward-kill-subword (c-) | |
1658 @findex c-transpose-subwords | |
1659 @findex transpose-subwords (c-) | |
1660 @findex c-capitalize-subword | |
1661 @findex capitalize-subword (c-) | |
1662 @findex c-upcase-subword | |
1663 @findex upcase-subword (c-) | |
1664 @findex c-downcase-subword | |
1665 @findex downcase-subword (c-) | |
1666 @multitable @columnfractions .20 .40 .40 | |
1667 @c This could be converted to @headitem when we require Texinfo 4.7 | |
1668 @iftex | |
1669 @item @b{Key} @tab @b{Word oriented command} @tab @b{Subword oriented command} | |
1670 @end iftex | |
1671 @ifnottex | |
1672 @item Key @tab Word oriented command @tab Subword oriented command | |
1673 @item ---------------------------------------------------------------------------- | |
1674 @end ifnottex | |
1675 @item @kbd{M-f} @tab @code{forward-word} @tab @code{c-forward-subword} | |
1676 @item @kbd{M-b} @tab @code{backward-word} @tab @code{c-backward-subword} | |
1677 @item @kbd{M-@@} @tab @code{mark-word} @tab @code{c-mark-subword} | |
1678 @item @kbd{M-d} @tab @code{kill-word} @tab @code{c-kill-subword} | |
1679 @item @kbd{M-DEL} @tab @code{backward-kill-word} @tab @code{c-backward-kill-subword} | |
1680 @item @kbd{M-t} @tab @code{transpose-words} @tab @code{c-transpose-subwords} | |
1681 @item @kbd{M-c} @tab @code{capitalize-word} @tab @code{c-capitalize-subword} | |
1682 @item @kbd{M-u} @tab @code{upcase-word} @tab @code{c-upcase-subword} | |
1683 @item @kbd{M-l} @tab @code{downcase-word} @tab @code{c-downcase-subword} | |
1684 @end multitable | |
1685 | |
1686 Note that if you have changed the key bindings for the word oriented | |
1687 commands in your @file{.emacs} or a similar place, the keys you have | |
1688 configured are also used for the corresponding subword oriented | |
1689 commands. | |
1690 | |
1691 Type @kbd{C-c C-w} to toggle subword mode on and off. To make the | |
1692 mode turn on automatically, put the following code in your | |
1693 @file{.emacs}: | |
1694 | |
1695 @example | |
1696 (add-hook 'c-mode-common-hook | |
1697 (lambda () (c-subword-mode 1))) | |
1698 @end example | |
1699 | |
1700 As a bonus, you can also use @code{c-subword-mode} in non-@ccmode{} | |
1701 buffers by typing @kbd{M-x c-subword-mode}. | |
1702 | |
1703 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1704 @node Other Commands, , Subword Movement, Commands | |
1705 @comment node-name, next, previous, up | |
1706 @section Other Commands | |
1707 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1708 | |
1709 Here are the various other commands that didn't fit anywhere else: | |
1710 | |
1711 @table @asis | |
1712 @item @kbd{C-c .} (@code{c-set-style}) | |
1713 @kindex C-c . | |
1714 @findex c-set-style | |
1715 @findex set-style (c-) | |
1716 Switch to the specified style in the current buffer. Use like this: | |
1717 | |
1718 @example | |
1719 @kbd{C-c . @var{style-name} @key{RET}} | |
1720 @end example | |
1721 | |
1722 You can use the @key{TAB} in the normal way to do completion on the | |
1723 style name. Note that all style names are case insensitive, even the | |
1724 ones you define yourself. | |
1725 | |
1726 Setting a style in this way does @emph{not} automatically reindent your | |
1727 file. For commands that you can use to view the effect of your changes, | |
1728 see @ref{Indentation Commands} and @ref{Filling and Breaking}. | |
1729 | |
1730 For details of the @ccmode{} style system, see @ref{Styles}. | |
1731 @item @kbd{C-c :} (@code{c-scope-operator}) | |
1732 @kindex C-c : | |
1733 @findex c-scope-operator | |
1734 @findex scope-operator (c-) | |
1735 In C++, it is also sometimes desirable to insert the double-colon scope | |
1736 operator without performing the electric behavior of colon insertion. | |
1737 @kbd{C-c :} does just this. | |
1738 | |
1739 @item @kbd{C-c C-\} (@code{c-backslash-region}) | |
1740 @kindex C-c C-\ | |
1741 @findex c-backslash-region | |
1742 @findex backslash-region (c-) | |
1743 This function inserts and aligns or deletes end-of-line backslashes in | |
1744 the current region. These are typically used in multi-line macros. | |
1745 | |
1746 With no prefix argument, it inserts any missing backslashes and aligns | |
1747 them according to the @code{c-backslash-column} and | |
1748 @code{c-backslash-max-column} variables. With a prefix argument, it | |
1749 deletes any backslashes. | |
1750 | |
1751 The function does not modify blank lines at the start of the region. If | |
1752 the region ends at the start of a line, it always deletes the backslash | |
1753 (if any) at the end of the previous line. | |
1754 | |
1755 To customize the precise workings of this command, @ref{Custom Macros}. | |
1756 @end table | |
1757 | |
1758 @noindent | |
1759 The recommended line breaking function, @code{c-context-line-break} | |
1760 (@pxref{Filling and Breaking}), is especially nice if you edit | |
1761 multiline macros frequently. When used inside a macro, it | |
1762 automatically inserts and adjusts the mandatory backslash at the end | |
1763 of the line to keep the macro together, and it leaves the point at the | |
1764 right indentation column for the code. Thus you can write code inside | |
1765 macros almost exactly as you can elsewhere, without having to bother | |
1766 with the trailing backslashes. | |
1767 | |
1768 @table @asis | |
1769 @item @kbd{C-c C-e} (@code{c-macro-expand}) | |
1770 @kindex C-c C-e | |
1771 @findex c-macro-expand | |
1772 @findex macro-expand (c-) | |
1773 This command expands C, C++, Objective C or Pike macros in the region, | |
1774 using an appropriate external preprocessor program. Normally it | |
1775 displays its output in a temporary buffer, but if you give it a prefix | |
1776 arg (with @kbd{C-u C-c C-e}) it will overwrite the original region | |
1777 with the expansion. | |
1778 | |
1779 The command does not work in any of the other modes, and the key | |
1780 sequence is not bound in these other modes. | |
1781 | |
1782 @code{c-macro-expand} isn't actually part of @ccmode{}, even though it | |
1783 is bound to a @ccmode{} key sequence. If you need help setting it up | |
1784 or have other problems with it, you can either read its source code or | |
1785 ask for help in the standard (X)Emacs forums. | |
1786 @end table | |
1787 | |
1788 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1789 @node Font Locking, Config Basics, Commands, Top | |
1790 @comment node-name, next, previous, up | |
1791 @chapter Font Locking | |
1792 @cindex font locking | |
1793 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1794 | |
1795 @cindex Font Lock mode | |
1796 | |
1797 @ccmode{} provides font locking for its supported languages by | |
1798 supplying patterns for use with Font Lock mode. This means that you | |
1799 get distinct faces on the various syntactic parts such as comments, | |
1800 strings, keywords and types, which is very helpful in telling them | |
1801 apart at a glance and discovering syntactic errors. @xref{Font | |
1802 Lock,,, emacs, GNU Emacs Manual}, for ways to enable font locking in | |
1803 @ccmode{} buffers. | |
1804 | |
1805 @strong{Please note:} The font locking in AWK mode is currently not | |
1806 integrated with the rest of @ccmode{}. Only the last section of this | |
1807 chapter, @ref{AWK Mode Font Locking}, applies to AWK. The other | |
1808 sections apply to the other languages. | |
1809 | |
1810 @menu | |
1811 * Font Locking Preliminaries:: | |
1812 * Faces:: | |
1813 * Doc Comments:: | |
1814 * AWK Mode Font Locking:: | |
1815 @end menu | |
1816 | |
1817 | |
1818 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1819 @node Font Locking Preliminaries, Faces, Font Locking, Font Locking | |
1820 @comment node-name, next, previous, up | |
1821 @section Font Locking Preliminaries | |
1822 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1823 | |
1824 The font locking for most of the @ccmode{} languages were provided | |
1825 directly by the Font Lock package prior to version 5.30 of @ccmode{}. | |
1826 In the transition to @ccmode{} the patterns have been reworked | |
1827 completely and are applied uniformly across all the languages except AWK | |
1828 mode, just like the indentation rules (although each language still has | |
1829 some peculiarities of its own, of course). Since the languages | |
1830 previously had completely separate font locking patterns, this means | |
1831 that it's a bit different in most languages now. | |
1832 | |
1833 The main goal for the font locking in @ccmode{} is accuracy, to provide | |
1834 a dependable aid in recognizing the various constructs. Some, like | |
1835 strings and comments, are easy to recognize while others, like | |
1836 declarations and types, can be very tricky. @ccmode{} can go to great | |
1837 lengths to recognize declarations and casts correctly, especially when | |
1838 the types aren't recognized by standard patterns. This is a fairly | |
1839 demanding analysis which can be slow on older hardware, and it can | |
1840 therefore be disabled by choosing a lower decoration level with the | |
1841 variable @code{font-lock-maximum-decoration} (@pxref{Font Lock,,, | |
1842 emacs, GNU Emacs Manual}). | |
1843 | |
1844 @vindex font-lock-maximum-decoration | |
1845 | |
1846 The decoration levels are used as follows: | |
1847 | |
1848 @enumerate | |
1849 @comment 1 | |
1850 @item | |
1851 Minimal font locking: Fontify only comments, strings and preprocessor | |
1852 directives (in the languages that use cpp). | |
1853 | |
1854 @comment 2 | |
1855 @item | |
1856 Fast font locking: In addition to level 1, fontify keywords, simple | |
1857 types and declarations that are easy to recognize. The variables | |
1858 @code{*-font-lock-extra-types} (where @samp{*} is the name of the | |
1859 language) are used to recognize types (see below). Documentation | |
1860 comments like Javadoc are fontified according to | |
1861 @code{c-doc-comment-style} (@pxref{Doc Comments}). | |
1862 | |
1863 Use this if you think the font locking is too slow. It's the closest | |
1864 corresponding level to level 3 in the old font lock patterns. | |
1865 | |
1866 @comment 3 | |
1867 @item | |
1868 Accurate font locking: Like level 2 but uses a different approach that | |
1869 can recognize types and declarations much more accurately. The | |
1870 @code{*-font-lock-extra-types} variables are still used, but user | |
1871 defined types are recognized correctly anyway in most cases. Therefore | |
1872 those variables should be fairly restrictive and not contain patterns | |
1873 that are uncertain. | |
1874 | |
1875 @cindex Lazy Lock mode | |
1876 @cindex Just-in-time Lock mode | |
1877 | |
1878 This level is designed for fairly modern hardware and a font lock | |
1879 support mode like Lazy Lock or Just-in-time Lock mode that only | |
1880 fontifies the parts that are actually shown. Fontifying the whole | |
1881 buffer at once can easily get bothersomely slow even on contemporary | |
1882 hardware. @xref{Font Lock,,,@emacsman{}, @emacsmantitle{}}. | |
1883 @end enumerate | |
1884 | |
1885 @cindex user defined types | |
1886 @cindex types, user defined | |
1887 | |
1888 Since user defined types are hard to recognize you can provide | |
1889 additional regexps to match those you use: | |
1890 | |
1891 @defopt c-font-lock-extra-types | |
1892 @defoptx c++-font-lock-extra-types | |
1893 @defoptx objc-font-lock-extra-types | |
1894 @defoptx java-font-lock-extra-types | |
1895 @defoptx idl-font-lock-extra-types | |
1896 @defoptx pike-font-lock-extra-types | |
1897 For each language there's a variable @code{*-font-lock-extra-types}, | |
1898 where @samp{*} stands for the language in question. It contains a list | |
1899 of regexps that matches identifiers that should be recognized as types, | |
1900 e.g. @samp{\\sw+_t} to recognize all identifiers ending with @samp{_t} | |
1901 as is customary in C code. Each regexp should not match more than a | |
1902 single identifier. | |
1903 | |
1904 The default values contain regexps for many types in standard runtime | |
1905 libraries that are otherwise difficult to recognize, and patterns for | |
1906 standard type naming conventions like the @samp{_t} suffix in C and C++. | |
1907 Java, Objective-C and Pike have as a convention to start class names | |
1908 with capitals, so there are patterns for that in those languages. | |
1909 | |
1910 Despite the names of these variables, they are not only used for | |
1911 fontification but in other places as well where @ccmode{} needs to | |
1912 recognize types. | |
1913 @end defopt | |
1914 | |
1915 | |
1916 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1917 @node Faces, Doc Comments, Font Locking Preliminaries, Font Locking | |
1918 @comment node-name, next, previous, up | |
1919 @section Faces | |
1920 @cindex faces | |
1921 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
1922 | |
1923 @ccmode{} attempts to use the standard faces for programming languages | |
1924 in accordance with their intended purposes as far as possible. No extra | |
1925 faces are currently provided, with the exception of a replacement face | |
1926 @code{c-invalid-face} for emacsen that don't provide | |
1927 @code{font-lock-warning-face}. | |
1928 | |
1929 @itemize @bullet | |
1930 @item | |
1931 @vindex font-lock-comment-face | |
1932 Normal comments are fontified in @code{font-lock-comment-face}. | |
1933 | |
1934 @item | |
1935 @vindex font-lock-doc-face | |
1936 @vindex font-lock-doc-string-face | |
1937 @vindex font-lock-comment-face | |
1938 Comments that are recognized as documentation (@pxref{Doc Comments}) | |
1939 get @code{font-lock-doc-face} (Emacs) or | |
1940 @code{font-lock-doc-string-face} (XEmacs) if those faces exist. If | |
1941 they don't then @code{font-lock-comment-face} is used. | |
1942 | |
1943 @item | |
1944 @vindex font-lock-string-face | |
1945 String and character literals are fontified in | |
1946 @code{font-lock-string-face}. | |
1947 | |
1948 @item | |
1949 @vindex font-lock-keyword-face | |
1950 Keywords are fontified with @code{font-lock-keyword-face}. | |
1951 | |
1952 @item | |
1953 @vindex font-lock-function-name-face | |
1954 @code{font-lock-function-name-face} is used for function names in | |
1955 declarations and definitions, and classes in those contexts. It's also | |
1956 used for preprocessor defines with arguments. | |
1957 | |
1958 @item | |
1959 @vindex font-lock-variable-name-face | |
1960 Variables in declarations and definitions, and other identifiers in such | |
1961 variable contexts, get @code{font-lock-variable-name-face}. It's also | |
1962 used for preprocessor defines without arguments. | |
1963 | |
1964 @item | |
1965 @vindex font-lock-constant-face | |
1966 @vindex font-lock-reference-face | |
1967 Builtin constants are fontified in @code{font-lock-constant-face} if it | |
1968 exists, @code{font-lock-reference-face} otherwise. As opposed to the | |
1969 preceding two faces, this is used on the names in expressions, and it's | |
1970 not used in declarations, even if there happen to be a @samp{const} in | |
1971 them somewhere. | |
1972 | |
1973 @item | |
1974 @vindex font-lock-type-face | |
1975 @code{font-lock-type-face} is put on types (both predefined and user | |
1976 defined) and classes in type contexts. | |
1977 | |
1978 @item | |
1979 @vindex font-lock-constant-face | |
1980 @vindex font-lock-reference-face | |
1981 Label identifiers get @code{font-lock-constant-face} if it exists, | |
1982 @code{font-lock-reference-face} otherwise. | |
1983 | |
1984 @item | |
1985 Name qualifiers and identifiers for scope constructs are fontified like | |
1986 labels. | |
1987 | |
1988 @item | |
1989 Special markup inside documentation comments are also fontified like | |
1990 labels. | |
1991 | |
1992 @item | |
1993 @vindex font-lock-preprocessor-face | |
1994 @vindex font-lock-builtin-face | |
1995 @vindex font-lock-reference-face | |
1996 Preprocessor directives get @code{font-lock-preprocessor-face} if it | |
1997 exists (i.e. XEmacs). In Emacs they get @code{font-lock-builtin-face} | |
1998 or @code{font-lock-reference-face}, for lack of a closer equivalent. | |
1999 | |
2000 @item | |
2001 @vindex font-lock-warning-face | |
2002 @vindex c-invalid-face | |
2003 @vindex invalid-face (c-) | |
2004 Some kinds of syntactic errors are fontified with | |
2005 @code{font-lock-warning-face} in Emacs. In older XEmacs versions | |
2006 there's no corresponding standard face, so there a special | |
2007 @code{c-invalid-face} is used, which is defined to stand out sharply by | |
2008 default. | |
2009 | |
2010 Note that it's not used for @samp{#error} or @samp{#warning} directives, | |
2011 since those aren't syntactic errors in themselves. | |
2012 @end itemize | |
2013 | |
2014 | |
2015 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2016 @node Doc Comments, AWK Mode Font Locking, Faces, Font Locking | |
2017 @comment node-name, next, previous, up | |
2018 @section Documentation Comments | |
2019 @cindex documentation comments | |
2020 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2021 | |
2022 There are various tools to supply documentation in the source as | |
2023 specially structured comments, e.g. the standard Javadoc tool in Java. | |
2024 @ccmode{} provides an extensible mechanism to fontify such comments and | |
2025 the special markup inside them. | |
2026 | |
2027 @defopt c-doc-comment-style | |
2028 @vindex doc-comment-style (c-) | |
2029 This is a style variable that specifies which documentation comment | |
2030 style to recognize, e.g. @code{javadoc} for Javadoc comments. | |
2031 | |
2032 The value may also be a list of styles, in which case all of them are | |
2033 recognized simultaneously (presumably with markup cues that don't | |
2034 conflict). | |
2035 | |
2036 The value may also be an association list to specify different comment | |
2037 styles for different languages. The symbol for the major mode is then | |
2038 looked up in the alist, and the value of that element is interpreted as | |
2039 above if found. If it isn't found then the symbol `other' is looked up | |
2040 and its value is used instead. | |
2041 | |
2042 The default value for @code{c-doc-comment-style} is | |
2043 @w{@code{((java-mode . javadoc) (pike-mode . autodoc) (c-mode . gtkdoc))}}. | |
2044 | |
2045 Note that @ccmode{} uses this variable to set other variables that | |
2046 handle fontification etc. That's done at mode initialization or when | |
2047 you switch to a style which sets this variable. Thus, if you change it | |
2048 in some other way, e.g. interactively in a CC Mode buffer, you will need | |
2049 to do @kbd{M-x java-mode} (or whatever mode you're currently using) to | |
2050 reinitialize. | |
2051 | |
2052 @findex c-setup-doc-comment-style | |
2053 @findex setup-doc-comment-style (c-) | |
2054 Note also that when @ccmode{} starts up, the other variables are | |
2055 modified before the mode hooks are run. If you change this variable in | |
2056 a mode hook, you'll have to call @code{c-setup-doc-comment-style} | |
2057 afterwards to redo that work. | |
2058 @end defopt | |
2059 | |
2060 @ccmode{} currently provides handing of the following doc comment | |
2061 styles: | |
2062 | |
2063 @table @code | |
2064 @item javadoc | |
2065 @cindex Javadoc markup | |
2066 Javadoc comments, the standard tool in Java. | |
2067 | |
2068 @item autodoc | |
2069 @cindex Pike autodoc markup | |
2070 For Pike autodoc markup, the standard in Pike. | |
2071 | |
2072 @item gtkdoc | |
2073 @cindex GtkDoc markup | |
2074 For GtkDoc markup, widely used in the Gnome community. | |
2075 @end table | |
2076 | |
2077 The above is by no means complete. If you'd like to see support for | |
2078 other doc comment styles, please let us know (@pxref{Mailing Lists and | |
2079 Bug Reports}). | |
2080 | |
2081 You can also write your own doc comment fontification support to use | |
2082 with @code{c-doc-comment-style}: Supply a variable or function | |
2083 @code{*-font-lock-keywords} where @samp{*} is the name you want to use | |
2084 in @code{c-doc-comment-style}. If it's a variable, it's prepended to | |
2085 @code{font-lock-keywords}. If it's a function, it's called at mode | |
2086 initialization and the result is prepended. For an example, see | |
2087 @code{javadoc-font-lock-keywords} in @file{cc-fonts.el}. | |
2088 | |
2089 If you add support for another doc comment style, please consider | |
2090 contributing it - send a note to @email{bug-cc-mode@@gnu.org}. | |
2091 | |
2092 | |
2093 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2094 @node AWK Mode Font Locking, , Doc Comments, Font Locking | |
2095 @comment node-name, next, previous, up | |
2096 @section AWK Mode Font Locking | |
2097 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2098 | |
2099 The general appearance of font-locking in AWK mode is much like in any | |
2100 other programming mode. @xref{Faces For Font Lock,,,elisp, GNU Emacs | |
2101 Lisp Reference Manual}. | |
2102 | |
2103 The following faces are, however, used in a non-standard fashion in | |
2104 AWK mode: | |
2105 | |
2106 @table @asis | |
2107 @item @code{font-lock-variable-name-face} | |
2108 This face was intended for variable declarations. Since variables are | |
2109 not declared in AWK, this face is used instead for AWK system | |
2110 variables (such as @code{NF}) and ``Special File Names'' (such as | |
2111 @code{"/dev/stderr"}). | |
2112 | |
2113 @item @code{font-lock-builtin-face} (Emacs)/@code{font-lock-preprocessor-face} (XEmacs) | |
2114 This face is normally used for preprocessor directives in @ccmode{}. | |
2115 There are no such things in AWK, so this face is used instead for | |
2116 standard functions (such as @code{match}). | |
2117 | |
2118 @item @code{font-lock-string-face} | |
2119 As well as being used for strings, including localizable strings, | |
2120 (delimited by @samp{"} and @samp{_"}), this face is also used for AWK | |
2121 regular expressions (delimited by @samp{/}). | |
2122 | |
2123 @item @code{font-lock-warning-face} (Emacs)/@code{c-invalid-face} (XEmacs) | |
2124 This face highlights the following syntactically invalid AWK | |
2125 constructs: | |
2126 | |
2127 @itemize @bullet | |
2128 @item | |
2129 An unterminated string or regular expression. Here the opening | |
2130 delimiter (@samp{"} or @samp{/} or @samp{_"}) is displayed in | |
2131 @code{font-lock-warning-face}. This is most noticeable when typing in a | |
2132 new string/regular expression into a buffer, when the warning-face | |
2133 serves as a continual reminder to terminate the construct. | |
2134 | |
2135 AWK mode fontifies unterminated strings/regular expressions | |
2136 differently from other modes: Only the text up to the end of the line | |
2137 is fontified as a string (escaped newlines being handled correctly), | |
2138 rather than the text up to the next string quote. | |
2139 | |
2140 @item | |
2141 A space between the function name and opening parenthesis when calling | |
2142 a user function. The last character of the function name and the | |
2143 opening parenthesis are highlighted. This font-locking rule will | |
2144 spuriously highlight a valid concatenation expression where an | |
2145 identifier precedes a parenthesised expression. Unfortunately. | |
2146 | |
2147 @item | |
2148 Whitespace following the @samp{\} in what otherwise looks like an | |
2149 escaped newline. The @samp{\} is highlighted. | |
2150 @end itemize | |
2151 @end table | |
2152 | |
2153 | |
2154 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2155 @node Config Basics, Custom Filling and Breaking, Font Locking, Top | |
2156 @comment node-name, next, previous, up | |
2157 @chapter Configuration Basics | |
2158 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2159 | |
2160 @cindex Emacs Initialization File | |
2161 @cindex Configuration | |
2162 You configure @ccmode{} by setting Lisp variables and calling (and | |
2163 perhaps writing) Lisp functions@footnote{DON'T PANIC!!! This isn't | |
2164 difficult.}, which is usually done by adding code to an Emacs | |
2165 initialization file. This file might be @file{site-start.el} or | |
2166 @file{.emacs} or @file{init.el} or @file{default.el} or perhaps some | |
2167 other file. @xref{Init File,,,@emacsman{}, @emacsmantitle{}}. For | |
2168 the sake of conciseness, we just call this file ``your @file{.emacs}'' | |
2169 throughout the rest of the manual. | |
2170 | |
2171 Several of these variables (currently 16), are known collectively as | |
2172 @dfn{style variables}. @ccmode{} provides a special mechanism, known | |
2173 as @dfn{styles} to make it easier to set these variables as a group, | |
2174 to ``inherit'' settings from one style into another, and so on. Style | |
2175 variables remain ordinary Lisp variables, whose values can be read and | |
2176 changed independently of the style system. @xref{Style Variables}. | |
2177 | |
2178 There are several ways you can write the code, depending on the | |
2179 precise effect you want---they are described further down on this page. | |
2180 If you are new to @ccmode{}, we suggest you begin with the simplest | |
2181 method, ``Top-level commands or the customization interface''. | |
2182 | |
2183 If you make conflicting settings in several of these ways, the way | |
2184 that takes precedence is the one that appears latest in this list: | |
2185 @itemize @asis | |
2186 @item | |
2187 @table @asis | |
2188 @item Style | |
2189 @itemx Top-level command or ``customization interface'' | |
2190 @itemx Hook | |
2191 @itemx File Style | |
2192 @end table | |
2193 @end itemize | |
2194 | |
2195 Here is a summary of the different ways of writing your configuration | |
2196 settings: | |
2197 | |
2198 @table @asis | |
2199 @item Top-level commands or the ``customization interface'' | |
2200 Most simply, you can write @code{setq} and similar commands at the top | |
2201 level of your @file{.emacs} file. When you load a @ccmode{} buffer, | |
2202 it initializes its configuration from these global values (at least, | |
2203 for those settings you have given values to), so it makes sense to | |
2204 have these @code{setq} commands run @emph{before} @ccmode{} is first | |
2205 initialized---in particular, before any call to @code{desktop-read} | |
2206 (@pxref{Saving Emacs Sessions,,, emacs, GNU Emacs Manual}). For | |
2207 example, you might set c-basic-offset thus: | |
2208 | |
2209 @example | |
2210 (setq c-basic-offset 4) | |
2211 @end example | |
2212 | |
2213 You can use the more user friendly Customization interface instead, | |
2214 but this manual does not cover in detail how that works. To do this, | |
2215 start by typing @kbd{M-x customize-group @key{RET} c @key{RET}}. | |
2216 @xref{Easy Customization,,,@emacsman{}, @emacsmantitle{}}. | |
2217 @c The following note really belongs in the Emacs manual. | |
2218 Emacs normally writes the customizations at the end of your | |
2219 @file{.emacs} file. If you use @code{desktop-read}, you should edit | |
2220 your @file{.emacs} to place the call to @code{desktop-read} @emph{after} | |
2221 the customizations. | |
2222 | |
2223 The first initialization of @ccmode{} puts a snapshot of the | |
2224 configuration settings into the special style @code{user}. | |
2225 @xref{Built-in Styles}. | |
2226 | |
2227 For basic use of Emacs, either of these ways of configuring is | |
2228 adequate. However, the settings are then the same in all @ccmode{} | |
2229 buffers and it can be clumsy to communicate them between programmers. | |
2230 For more flexibility, you'll want to use one (or both) of @ccmode{}'s | |
2231 more sophisticated facilities, hooks and styles. | |
2232 | |
2233 @item Hooks | |
2234 An Emacs @dfn{hook} is a place to put Lisp functions that you want | |
2235 Emacs to execute later in specific circumstances. | |
2236 @xref{Hooks,,,@lispref{}, @lispreftitle{}}. @ccmode{} supplies a main | |
2237 hook and a language-specific hook for each language it supports - any | |
2238 functions you put onto these hooks get executed as the last part of a | |
2239 buffer's initialization. Typically you put most of your customization | |
2240 within the main hook, and use the language-specific hooks to vary the | |
2241 customization settings between language modes. For example, if you | |
2242 wanted different (non-standard) values of @code{c-basic-offset} in C | |
2243 Mode and Java Mode buffers, you could do it like this: | |
2244 | |
2245 @example | |
2246 @group | |
2247 (defun my-c-mode-hook () | |
2248 (setq c-basic-offset 3)) | |
2249 (add-hook 'c-mode-hook 'my-c-mode-hook) | |
2250 | |
2251 (defun my-java-mode-hook () | |
2252 (setq c-basic-offset 6)) | |
2253 (add-hook 'java-mode-hook 'my-java-mode-hook) | |
2254 @end group | |
2255 @end example | |
2256 | |
2257 See @ref{CC Hooks} for more details on the use of @ccmode{} hooks. | |
2258 | |
2259 @item Styles | |
2260 A @ccmode{} @dfn{style} is a coherent collection of customizations | |
2261 with a name. At any time, exactly one style is active in each | |
2262 @ccmode{} buffer, either the one you have selected or a default. | |
2263 @ccmode{} is delivered with several existing styles. Additionally, | |
2264 you can create your own styles, possibly based on these existing | |
2265 styles. If you worked in a programming team called the ``Free | |
2266 Group'', which had its own coding standards, you might well have this | |
2267 in your @file{.emacs} file: | |
2268 | |
2269 @example | |
2270 (setq c-default-style '((java-mode . "java") | |
2271 (awk-mode . "awk") | |
2272 (other . "free-group-style"))) | |
2273 @end example | |
2274 | |
2275 See @ref{Styles} for fuller details on using @ccmode{} styles and how | |
2276 to create them. | |
2277 | |
2278 @item File Styles | |
2279 A @dfn{file style} is a rarely used variant of the ``style'' mechanism | |
2280 described above, which applies to an individual source file. To use | |
2281 it, you set certain Emacs local variables in a special block at the | |
2282 end of the source file. @xref{File Styles}. | |
2283 | |
2284 @item Hooks with Styles | |
2285 For ultimate flexibility, you can use hooks and styles together. For | |
2286 example, if your team were developing a product which required a | |
2287 Linux driver, you'd probably want to use the ``linux'' style for the | |
2288 driver, and your own team's style for the rest of the code. You | |
2289 could achieve this with code like this in your @file{.emacs}: | |
2290 | |
2291 @example | |
2292 @group | |
2293 (defun my-c-mode-hook () | |
2294 (c-set-style | |
2295 (if (and (buffer-file-name) | |
2296 (string-match "/usr/src/linux" (buffer-file-name))) | |
2297 "linux" | |
2298 "free-group-style"))) | |
2299 (add-hook 'c-mode-hook 'my-c-mode-hook) | |
2300 @end group | |
2301 @end example | |
2302 | |
2303 In a programming team, a hook is a also a good place for each member | |
2304 to put his own personal preferences. For example, you might be the | |
2305 only person in your team who likes Auto-newline minor mode. You could | |
2306 have it enabled by default by placing the following in your | |
2307 @file{.emacs}: | |
2308 | |
2309 @example | |
2310 @group | |
2311 (defun my-turn-on-auto-newline () | |
2312 (c-toggle-auto-newline 1)) | |
2313 (add-hook 'c-mode-common-hook 'my-turn-on-auto-newline) | |
2314 @end group | |
2315 @end example | |
2316 @end table | |
2317 | |
2318 @menu | |
2319 * CC Hooks:: | |
2320 * Style Variables:: | |
2321 * Styles:: | |
2322 @end menu | |
2323 | |
2324 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2325 @node CC Hooks, Style Variables, Config Basics, Config Basics | |
2326 @comment node-name, next, previous, up | |
2327 @section Hooks | |
2328 @cindex mode hooks | |
2329 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2330 @c The node name is "CC Hooks" rather than "Hooks" because of a bug in | |
2331 @c some older versions of Info, e.g. the info.el in GNU Emacs 21.3. | |
2332 @c If you go to "Config Basics" and hit <CR> on the xref to "CC | |
2333 @c Hooks" the function Info-follow-reference searches for "*Note: CC | |
2334 @c Hooks" from the beginning of the page. If this node were instead | |
2335 @c named "Hooks", that search would spuriously find "*Note: | |
2336 @c Hooks(elisp)" and go to the wrong node. | |
2337 | |
2338 @ccmode{} provides several hooks that you can use to customize the | |
2339 mode for your coding style. The main hook is | |
2340 @code{c-mode-common-hook}; typically, you'll put the bulk of your | |
2341 customizations here. In addition, each language mode has its own | |
2342 hook, allowing you to fine tune your settings individually for the | |
2343 different @ccmode{} languages, and there is a package initialization | |
2344 hook. Finally, there is @code{c-special-indent-hook}, which enables | |
2345 you to solve anomalous indentation problems. It is described in | |
2346 @ref{Other Indentation}, not here. All these hooks adhere to the | |
2347 standard Emacs conventions. | |
2348 | |
2349 When you open a buffer, @ccmode{} first initializes it with the | |
2350 currently active style (@pxref{Styles}). Then it calls | |
2351 @code{c-mode-common-hook}, and finally it calls the language-specific | |
2352 hook. Thus, any style settings done in these hooks will override | |
2353 those set by @code{c-default-style}. | |
2354 | |
2355 @defvar c-initialization-hook | |
2356 @vindex initialization-hook (c-) | |
2357 Hook run only once per Emacs session, when @ccmode{} is initialized. | |
2358 This is a good place to change key bindings (or add new ones) in any | |
2359 of the @ccmode{} key maps. @xref{Sample .emacs File}. | |
2360 @end defvar | |
2361 | |
2362 @defvar c-mode-common-hook | |
2363 @vindex mode-common-hook (c-) | |
2364 Common hook across all languages. It's run immediately before the | |
2365 language specific hook. | |
2366 @end defvar | |
2367 | |
2368 @defvar c-mode-hook | |
2369 @defvarx c++-mode-hook | |
2370 @defvarx objc-mode-hook | |
2371 @defvarx java-mode-hook | |
2372 @defvarx idl-mode-hook | |
2373 @defvarx pike-mode-hook | |
2374 @defvarx awk-mode-hook | |
2375 The language specific mode hooks. The appropriate one is run as the | |
2376 last thing when you enter that language mode. | |
2377 @end defvar | |
2378 | |
2379 Although these hooks are variables defined in @ccmode{}, you can give | |
2380 them values before @ccmode{}'s code is loaded---indeed, this is the | |
2381 only way to use @code{c-initialization-hook}. Their values aren't | |
2382 overwritten when @ccmode{} gets loaded. | |
2383 | |
2384 Here's a simplified example of what you can add to your @file{.emacs} | |
2385 file to do things whenever any @ccmode{} language is edited. See the | |
2386 Emacs manuals for more information on customizing Emacs via hooks. | |
2387 @xref{Sample .emacs File}, for a more complete sample @file{.emacs} | |
2388 file. | |
2389 | |
2390 @example | |
2391 (defun my-c-mode-common-hook () | |
2392 ;; my customizations for all of c-mode and related modes | |
2393 (no-case-fold-search) | |
2394 ) | |
2395 (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) | |
2396 @end example | |
2397 | |
2398 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2399 @node Style Variables, Styles, CC Hooks, Config Basics | |
2400 @comment node-name, next, previous, up | |
2401 @section Style Variables | |
2402 @cindex styles | |
2403 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2404 | |
2405 @cindex style variables | |
2406 The variables that @ccmode{}'s style system control are called | |
2407 @dfn{style variables}. Note that style variables are ordinary Lisp | |
2408 variables, which the style system initializes; you can change their | |
2409 values at any time (e.g. in a hook function). The style system can | |
2410 also set other variables, to some extent. @xref{Styles}. | |
2411 | |
2412 @dfn{Style variables} are handled specially in several ways: | |
2413 | |
2414 @itemize @bullet | |
2415 @item | |
2416 Style variables are by default buffer-local variables. However, they | |
2417 can instead be made global by setting | |
2418 @code{c-style-variables-are-local-p} to @code{nil} before @ccmode{} is | |
2419 initialized. | |
2420 | |
2421 @item | |
2422 @vindex c-old-style-variable-behavior | |
2423 @vindex old-style-variable-behavior (c-) | |
2424 The default global binding of any style variable (with two exceptions | |
2425 - see below) is the special symbol @code{set-from-style}. When the | |
2426 style system initializes a buffer-local copy of a style variable for a | |
2427 @ccmode{} buffer, if its global binding is still that symbol then it | |
2428 will be set from the current style. Otherwise it will retain its | |
2429 global default@footnote{This is a big change from versions of | |
2430 @ccmode{} earlier than 5.26, where such settings would get overridden | |
2431 by the style system unless special precautions were taken. That was | |
2432 changed since it was counterintuitive and confusing, especially to | |
2433 novice users. If your configuration depends on the old overriding | |
2434 behavior, you can set the variable | |
2435 @code{c-old-style-variable-behavior} to non-@code{nil}.}. This | |
2436 ``otherwise'' happens, for example, when you've set the variable with | |
2437 @code{setq} at the top level of your @file{.emacs} (@pxref{Config | |
2438 Basics}). | |
2439 | |
2440 @item | |
2441 The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is | |
2442 an association list with an element for each syntactic symbol. It's | |
2443 handled a little differently from the other style variables. It's | |
2444 default global binding is the empty list @code{nil}, rather than | |
2445 @code{set-from-style}. Before the style system is initialized, you | |
2446 can add individual elements to @code{c-offsets-alist} by calling | |
2447 @code{c-set-offset}(@pxref{c-offsets-alist}) just like you would set | |
2448 other style variables with @code{setq}. Those elements will then | |
2449 prevail when the style system later initializes a buffer-local copy of | |
2450 @code{c-offsets-alist}. | |
2451 | |
2452 @item | |
2453 The style variable @code{c-special-indent-hook} is also handled in a | |
2454 special way. Styles can only add functions to this hook, not remove | |
2455 them, so any global settings you put on it are always | |
2456 preserved@footnote{This did not change in version 5.26.}. The value | |
2457 you give this variable in a style definition can be either a function | |
2458 or a list of functions. | |
2459 | |
2460 @item | |
2461 The global bindings of the style variables get captured in the special | |
2462 @code{user} style when the style system is first initialized. | |
2463 @xref{Built-in Styles}, for details. | |
2464 @end itemize | |
2465 | |
2466 The style variables are:@* | |
2467 @code{c-indent-comment-alist}, | |
2468 @code{c-indent-comments-syntactically-p} (@pxref{Indentation | |
2469 Commands});@* | |
2470 @code{c-doc-comment-style} (@pxref{Doc Comments});@* | |
2471 @code{c-block-comment-prefix}, @code{c-comment-prefix-regexp} | |
2472 (@pxref{Custom Filling and Breaking});@* | |
2473 @code{c-hanging-braces-alist} (@pxref{Hanging Braces});@* | |
2474 @code{c-hanging-colons-alist} (@pxref{Hanging Colons});@* | |
2475 @code{c-hanging-semi&comma-criteria} (@pxref{Hanging Semicolons and | |
2476 Commas});@* | |
2477 @code{c-cleanup-list} (@pxref{Clean-ups});@* | |
2478 @code{c-basic-offset} (@pxref{Customizing Indentation});@* | |
2479 @code{c-offsets-alist} (@pxref{c-offsets-alist});@* | |
2480 @code{c-comment-only-line-offset} (@pxref{Comment Line-Up});@* | |
2481 @code{c-special-indent-hook}, @code{c-label-minimum-indentation} | |
2482 (@pxref{Other Indentation});@* | |
2483 @code{c-backslash-column}, @code{c-backslash-max-column} | |
2484 (@pxref{Custom Macros}). | |
2485 | |
2486 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2487 @node Styles, , Style Variables, Config Basics | |
2488 @comment node-name, next, previous, up | |
2489 @section Styles | |
2490 @cindex styles | |
2491 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2492 | |
2493 By @dfn{style} we mean the layout of the code---things like how many | |
2494 columns to indent a block of code, whether an opening brace gets | |
2495 indented to the level of the code it encloses, or of the construct | |
2496 that introduces it, or ``hangs'' at the end of a line. | |
2497 | |
2498 Most people only need to edit code formatted in just a few well-defined | |
2499 and consistent styles. For example, their organization might impose a | |
2500 ``blessed'' style that all its programmers must conform to. Similarly, | |
2501 people who work on GNU software will have to use the GNU coding style. | |
2502 Some shops are more lenient, allowing a variety of coding styles, and as | |
2503 programmers come and go, there could be a number of styles in use. For | |
2504 this reason, @ccmode{} makes it convenient for you to set up logical | |
2505 groupings of customizations called @dfn{styles}, associate a single name | |
2506 for any particular style, and pretty easily start editing new or | |
2507 existing code using these styles. | |
2508 | |
2509 @menu | |
2510 * Built-in Styles:: | |
2511 * Choosing a Style:: | |
2512 * Adding Styles:: | |
2513 * File Styles:: | |
2514 @end menu | |
2515 | |
2516 | |
2517 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2518 @node Built-in Styles, Choosing a Style, Styles, Styles | |
2519 @comment node-name, next, previous, up | |
2520 @subsection Built-in Styles | |
2521 @cindex styles, built-in | |
2522 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2523 | |
2524 If you're lucky, one of @ccmode{}'s built-in styles might be just | |
2525 what you're looking for. These are: | |
2526 | |
2527 @table @code | |
2528 @item gnu | |
2529 @cindex GNU style | |
2530 Coding style blessed by the Free Software Foundation | |
2531 for C code in GNU programs. | |
2532 | |
2533 @item k&r | |
2534 @cindex K&R style | |
2535 The classic Kernighan and Ritchie style for C code. | |
2536 | |
2537 @item bsd | |
2538 @cindex BSD style | |
2539 Also known as ``Allman style'' after Eric Allman. | |
2540 | |
2541 @item whitesmith | |
2542 @cindex Whitesmith style | |
2543 Popularized by the examples that came with Whitesmiths C, an early | |
2544 commercial C compiler. | |
2545 | |
2546 @item stroustrup | |
2547 @cindex Stroustrup style | |
2548 The classic Stroustrup style for C++ code. | |
2549 | |
2550 @item ellemtel | |
2551 @cindex Ellemtel style | |
2552 Popular C++ coding standards as defined by ``Programming in C++, Rules | |
2553 and Recommendations,'' Erik Nyquist and Mats Henricson, | |
2554 Ellemtel@footnote{This document is available at | |
2555 @uref{http://www.doc.ic.ac.uk/lab/cplus/c++.rules/} among other | |
2556 places.}. | |
2557 @c N.B. This URL was still valid at 2005/8/28 (ACM). | |
2558 | |
2559 @item linux | |
2560 @cindex Linux style | |
2561 C coding standard for Linux (the kernel). | |
2562 | |
2563 @item python | |
2564 @cindex Python style | |
2565 C coding standard for Python extension modules@footnote{Python is a | |
2566 high level scripting language with a C/C++ foreign function interface. | |
2567 For more information, see @uref{http://www.python.org/}.}. | |
2568 | |
2569 @item java | |
2570 @cindex Java style | |
2571 The style for editing Java code. Note that the default | |
2572 value for @code{c-default-style} installs this style when you enter | |
2573 @code{java-mode}. | |
2574 | |
2575 @item awk | |
2576 @cindex AWK style | |
2577 The style for editing AWK code. Note that the default value for | |
2578 @code{c-default-style} installs this style when you enter | |
2579 @code{awk-mode}. | |
2580 | |
2581 @item user | |
2582 @cindex User style | |
2583 This is a special style created by you. It consists of the factory | |
2584 defaults for all the style variables as modified by the customizations | |
2585 you do either with the Customization interface or by writing | |
2586 @code{setq}s and @code{c-set-offset}s at the top level of your | |
2587 @file{.emacs} file (@pxref{Config Basics}). The style system creates | |
2588 this style as part of its initialization and doesn't modify it | |
2589 afterwards. | |
2590 @end table | |
2591 | |
2592 | |
2593 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2594 @node Choosing a Style, Adding Styles, Built-in Styles, Styles | |
2595 @comment node-name, next, previous, up | |
2596 @subsection Choosing a Style | |
2597 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2598 | |
2599 When you create a new buffer, its style will be set from | |
2600 @code{c-default-style}. The factory default is the style @code{gnu}, | |
2601 except in Java and AWK modes where it's @code{java} and @code{awk}. | |
2602 | |
2603 Remember that if you set a style variable with the Customization | |
2604 interface or at the top level of your @file{.emacs} file before the | |
96449
80392a5671b7
American English spelling fixes.
Glenn Morris <rgm@gnu.org>
parents:
95936
diff
changeset
|
2605 style system is initialized (@pxref{Config Basics}), this setting will |
84286 | 2606 override the one that the style system would have given the variable. |
2607 | |
2608 To set a buffer's style interactively, use the command @kbd{C-c .} | |
2609 (@pxref{Other Commands}). To set it from a file's local variable | |
2610 list, @ref{File Styles}. | |
2611 | |
2612 @defopt c-default-style | |
2613 @vindex default-style (c-) | |
2614 This variable specifies which style to install by default in new | |
2615 buffers. It takes either a style name string, or an association list | |
2616 of major mode symbols to style names: | |
2617 | |
2618 @enumerate | |
2619 @item | |
2620 When @code{c-default-style} is a string, it must be an existing style | |
2621 name. This style is then used for all modes. | |
2622 | |
2623 @item | |
2624 When @code{c-default-style} is an association list, the mode language | |
2625 is looked up to find a style name string. | |
2626 | |
2627 @item | |
2628 If @code{c-default-style} is an association list where the mode | |
2629 language mode isn't found then the special symbol @samp{other} is | |
2630 looked up. If it's found then the associated style is used. | |
2631 | |
2632 @item | |
2633 If @samp{other} is not found then the @samp{gnu} style is used. | |
2634 @end enumerate | |
2635 | |
2636 In all cases, the style described in @code{c-default-style} is installed | |
2637 @emph{before} the language hooks are run, so you can always override | |
2638 this setting by including an explicit call to @code{c-set-style} in your | |
2639 language mode hook, or in @code{c-mode-common-hook}. | |
2640 | |
2641 The standard value of @code{c-default-style} is @w{@code{((java-mode | |
2642 . "java") (awk-mode . "awk") (other . "gnu"))}}. | |
2643 @end defopt | |
2644 | |
2645 @defvar c-indentation-style | |
2646 @vindex indentation-style (c-) | |
2647 This variable always contains the buffer's current style name, as a | |
2648 string. | |
2649 @end defvar | |
2650 | |
2651 | |
2652 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2653 @node Adding Styles, File Styles, Choosing a Style, Styles | |
2654 @comment node-name, next, previous, up | |
2655 @subsection Adding and Amending Styles | |
2656 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2657 | |
2658 If none of the built-in styles is appropriate, you'll probably want to | |
2659 create a new @dfn{style definition}, possibly based on an existing | |
2660 style. To do this, put the new style's settings into a list with the | |
2661 following format - the list can then be passed as an argument to the | |
2662 function @code{c-add-style}. You can see an example of a style | |
2663 definition in @ref{Sample .emacs File}. | |
2664 | |
2665 @cindex style definition | |
2666 @c @defvr {List} style definition | |
2667 @table @asis | |
2668 @item Structure of a Style Definition List | |
2669 ([@var{base-style}] [(@var{variable} . @var{value}) @dots{}]) | |
2670 | |
2671 Optional @var{base-style}, if present, must be a string which is the | |
2672 name of the @dfn{base style} from which this style inherits. At most | |
2673 one @var{base-style} is allowed in a style definition. If | |
2674 @var{base-style} is not specified, the style inherits from the table | |
2675 of factory default values@footnote{This table is stored internally in | |
2676 the variable c-fallback-style.} instead. All styles eventually | |
2677 inherit from this internal table. Style loops generate errors. The | |
2678 list of pre-existing styles can be seen in @ref{Built-in Styles}. | |
2679 | |
2680 The dotted pairs (@var{variable} . @var{value}) each consist of a | |
2681 variable and the value it is to be set to when the style is later | |
2682 activated.@footnote{Note that if the variable has been given a value | |
2683 by the Customization interface or a @code{setq} at the top level of | |
2684 your @file{.emacs}, this value will override the one the style system | |
2685 tries to give it. @xref{Config Basics}.} The variable can be either a | |
2686 @ccmode{} style variable or an arbitrary Emacs variable. In the | |
2687 latter case, it is @emph{not} made buffer-local by the @ccmode{} style | |
2688 system. | |
2689 @c @end defvr | |
2690 | |
2691 Two variables are treated specially in the dotted pair list: | |
2692 | |
2693 @table @code | |
2694 @item c-offsets-alist | |
2695 The value is in turn a list of dotted pairs of the form | |
2696 | |
2697 @example | |
2698 (@r{@var{syntactic-symbol}} . @r{@var{offset}}) | |
2699 @end example | |
2700 | |
2701 as described in @ref{c-offsets-alist}. These are passed to | |
2702 @code{c-set-offset} so there is no need to set every syntactic symbol | |
2703 in your style, only those that are different from the inherited style. | |
2704 | |
2705 @item c-special-indent-hook | |
2706 The value is added to @code{c-special-indent-hook} using | |
2707 @code{add-hook}, so any functions already on it are kept. If the value | |
2708 is a list, each element of the list is added with @code{add-hook}. | |
2709 @end table | |
2710 @end table | |
2711 | |
2712 Styles are kept in the @code{c-style-alist} variable, but you | |
2713 should never modify this variable directly. Instead, @ccmode{} | |
2714 provides the function @code{c-add-style} for this purpose. | |
2715 | |
2716 @defun c-add-style stylename description &optional set-p | |
2717 @findex add-style (c-) | |
2718 Add or update a style called @var{stylename}, a string. | |
2719 @var{description} is the new style definition in the form described | |
2720 above. If @var{stylename} already exists in @code{c-style-alist} then | |
2721 it is replaced by @var{description}. (Note, this replacement is | |
2722 total. The old style is @emph{not} merged into the new one.) | |
2723 Otherwise, a new style is added. | |
2724 | |
2725 If the optional @var{set-p} is non-@code{nil} then the new style is | |
2726 applied to the current buffer as well. The use of this facility is | |
2727 deprecated and it might be removed from @ccmode{} in a future release. | |
2728 You should use @code{c-set-style} instead. | |
2729 | |
2730 The sample @file{.emacs} file provides a concrete example of how a new | |
2731 style can be added and automatically set. @xref{Sample .emacs File}. | |
2732 @end defun | |
2733 | |
2734 @defvar c-style-alist | |
2735 @vindex style-alist (c-) | |
2736 This is the variable that holds the definitions for the styles. It | |
2737 should not be changed directly; use @code{c-add-style} instead. | |
2738 @end defvar | |
2739 | |
2740 | |
2741 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2742 @node File Styles, , Adding Styles, Styles | |
2743 @comment node-name, next, previous, up | |
2744 @subsection File Styles | |
2745 @cindex styles, file local | |
2746 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2747 | |
2748 @cindex file local variables | |
2749 | |
2750 The Emacs manual describes how you can customize certain variables on a | |
2751 per-file basis by including a @dfn{file local variable} block at the end | |
2752 of the file (@pxref{File Variables,, Local Variables in Files, @emacsman{}, | |
2753 @emacsmantitle{}}). | |
2754 | |
2755 So far, you've only seen a functional interface for setting styles in | |
2756 @ccmode{}, and this can't be used here. @ccmode{} fills the gap by | |
2757 providing two variables for use in a file's local variable list. | |
2758 Don't use them anywhere else! These allow you to customize the style | |
2759 on a per-file basis: | |
2760 | |
2761 @defvar c-file-style | |
2762 @vindex file-style (c-) | |
2763 Set this variable to a style name string in the Local Variables list. | |
2764 From now on, when you visit the file, @ccmode{} will automatically set | |
2765 the file's style to this one using @code{c-set-style}. | |
2766 @end defvar | |
2767 | |
2768 @defvar c-file-offsets | |
2769 @vindex file-offsets (c-) | |
2770 Set this variable (in the Local Variables list) to an association list | |
2771 of the same format as @code{c-offsets-alist}. From now on, when you | |
2772 visit the file, @ccmode{} will automatically institute these offsets | |
2773 using @code{c-set-offset}. | |
2774 @end defvar | |
2775 | |
2776 Note that file style settings (i.e. @code{c-file-style}) are applied | |
2777 before file offset settings | |
2778 (i.e. @code{c-file-offsets})@footnote{Also, if either of these are set | |
2779 in a file's local variable section, all the style variable values are | |
2780 made local to that buffer, even if | |
2781 @code{c-style-variables-are-local-p} is @code{nil}. Since this | |
2782 variable is virtually always non-@code{nil} anyhow, you're unlikely to | |
2783 notice this effect.}. | |
2784 | |
2785 If you set any variables, including style variables, by the file local | |
2786 variables mechanism, these settings take priority over all other | |
2787 settings, even those in your mode hooks (@pxref{CC Hooks}). If you | |
2788 use @code{c-file-style} or @code{c-file-offsets} and also explicitly | |
2789 set a style variable in a local variable block, the explicit setting | |
2790 will take priority. | |
2791 | |
2792 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2793 @node Custom Filling and Breaking, Custom Auto-newlines, Config Basics, Top | |
2794 @comment node-name, next, previous, up | |
2795 @chapter Customizing Filling and Line Breaking | |
2796 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
2797 | |
2798 Since there's a lot of normal text in comments and string literals, | |
2799 @ccmode{} provides features to edit these like in text mode. It does | |
2800 this by hooking in on the different line breaking functions and tuning | |
2801 relevant variables as necessary. | |
2802 | |
2803 @vindex c-comment-prefix-regexp | |
2804 @vindex comment-prefix-regexp (c-) | |
2805 @cindex comment line prefix | |
2806 @vindex comment-start | |
2807 @vindex comment-end | |
2808 @vindex comment-start-skip | |
2809 @vindex paragraph-start | |
2810 @vindex paragraph-separate | |
2811 @vindex paragraph-ignore-fill-prefix | |
2812 @vindex adaptive-fill-mode | |
2813 @vindex adaptive-fill-regexp | |
2814 @vindex adaptive-fill-first-line-regexp | |
2815 To make Emacs recognize comments and treat text in them as normal | |
2816 paragraphs, @ccmode{} makes several standard | |
2817 variables@footnote{@code{comment-start}, @code{comment-end}, | |
2818 @code{comment-start-skip}, @code{paragraph-start}, | |
2819 @code{paragraph-separate}, @code{paragraph-ignore-fill-prefix}, | |
2820 @code{adaptive-fill-mode}, @code{adaptive-fill-regexp}, and | |
2821 @code{adaptive-fill-first-line-regexp}.} buffer-local and modifies them | |
2822 according to the language syntax and the comment line prefix. | |
2823 | |
2824 @defopt c-comment-prefix-regexp | |
2825 @vindex comment-prefix-regexp (c-) | |
2826 This style variable contains the regexp used to recognize the | |
2827 @dfn{comment line prefix}, which is the line decoration that starts | |
2828 every line in a comment. The variable is either the comment line | |
2829 prefix itself, or (more usually) an association list with different | |
2830 values for different languages. The symbol for the major mode is | |
2831 looked up in the alist to get the regexp for the language, and if it | |
2832 isn't found then the special symbol @samp{other} is looked up instead. | |
2833 | |
2834 When a comment line gets divided by @kbd{M-j} or the like, @ccmode{} | |
96449
80392a5671b7
American English spelling fixes.
Glenn Morris <rgm@gnu.org>
parents:
95936
diff
changeset
|
2835 inserts the comment line prefix from a neighboring line at the start |
84286 | 2836 of the new line. The default value of c-comment-prefix-regexp is |
2837 @samp{//+\\|\\**}, which matches C++ style line comments like | |
2838 | |
2839 @example | |
2840 // blah blah | |
2841 @end example | |
2842 | |
2843 @noindent | |
2844 with two or more slashes in front of them, and the second and | |
2845 subsequent lines of C style block comments like | |
2846 | |
2847 @example | |
2848 @group | |
2849 /* | |
2850 * blah blah | |
2851 */ | |
2852 @end group | |
2853 @end example | |
2854 | |
2855 @noindent | |
2856 with zero or more stars at the beginning of every line. If you change | |
2857 this variable, please make sure it still matches the comment starter | |
2858 (i.e. @code{//}) of line comments @emph{and} the line prefix inside | |
2859 block comments. | |
2860 | |
2861 @findex c-setup-paragraph-variables | |
2862 @findex setup-paragraph-variables (c-) | |
2863 Also note that since @ccmode{} uses the value of | |
2864 @code{c-comment-prefix-regexp} to set up several other variables at | |
2865 mode initialization, there won't be any effect if you just change it | |
2866 inside a @ccmode{} buffer. You need to call the command | |
2867 @code{c-setup-paragraph-variables} too, to update those other | |
2868 variables. That's also the case if you modify | |
2869 @code{c-comment-prefix-regexp} in a mode hook, since @ccmode{} will | |
2870 already have set up these variables before calling the hook. | |
2871 @end defopt | |
2872 | |
2873 In comments, @ccmode{} uses @code{c-comment-prefix-regexp} to adapt | |
2874 the line prefix from the other lines in the comment. | |
2875 | |
2876 @vindex adaptive-fill-mode | |
2877 @cindex Adaptive Fill mode | |
2878 @ccmode{} uses adaptive fill mode (@pxref{Adaptive Fill,,, emacs, GNU | |
2879 Emacs Manual}) to make Emacs correctly keep the line prefix when | |
2880 filling paragraphs. That also makes Emacs preserve the text | |
2881 indentation @emph{inside} the comment line prefix. E.g. in the | |
2882 following comment, both paragraphs will be filled with the left | |
2883 margins of the texts kept intact: | |
2884 | |
2885 @example | |
2886 @group | |
2887 /* Make a balanced b-tree of the nodes in the incoming | |
2888 * stream. But, to quote the famous words of Donald E. | |
2889 * Knuth, | |
2890 * | |
2891 * Beware of bugs in the above code; I have only | |
2892 * proved it correct, not tried it. | |
2893 */ | |
2894 @end group | |
2895 @end example | |
2896 | |
2897 @findex c-setup-filladapt | |
2898 @findex setup-filladapt (c-) | |
2899 @findex filladapt-mode | |
2900 @vindex filladapt-mode | |
2901 @cindex Filladapt mode | |
2902 It's also possible to use other adaptive filling packages, notably Kyle | |
2903 E. Jones' Filladapt package@footnote{It's available from | |
2904 @uref{http://www.wonderworks.com/}. As of version 2.12, it does however | |
2905 lack a feature that makes it work suboptimally when | |
2906 @code{c-comment-prefix-regexp} matches the empty string (which it does | |
2907 by default). A patch for that is available from | |
2908 @uref{http://cc-mode.sourceforge.net/,, the CC Mode web site}.}, | |
2909 @c 2005/11/22: The above is still believed to be the case. | |
2910 which handles things like bulleted lists nicely. There's a convenience | |
2911 function @code{c-setup-filladapt} that tunes the relevant variables in | |
2912 Filladapt for use in @ccmode{}. Call it from a mode hook, e.g. with | |
2913 something like this in your @file{.emacs}: | |
2914 | |
2915 @example | |
2916 (defun my-c-mode-common-hook () | |
2917 (c-setup-filladapt) | |
2918 (filladapt-mode 1)) | |
2919 (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) | |
2920 @end example | |
2921 | |
2922 @defopt c-block-comment-prefix | |
2923 @vindex block-comment-prefix (c-) | |
2924 @vindex c-comment-continuation-stars | |
2925 @vindex comment-continuation-stars (c-) | |
2926 Normally the comment line prefix inserted for a new line inside a | |
2927 comment is deduced from other lines in it. However there's one | |
2928 situation when there's no hint about what the prefix should look like, | |
2929 namely when a block comment is broken for the first time. This style | |
2930 variable@footnote{In versions before 5.26, this variable was called | |
2931 @code{c-comment-continuation-stars}. As a compatibility measure, | |
2932 @ccmode{} still uses the value on that variable if it's set.} is used | |
2933 then as the comment prefix. It defaults to @samp{* | |
2934 }@footnote{Actually, this default setting of | |
2935 @code{c-block-comment-prefix} typically gets overridden by the default | |
2936 style @code{gnu}, which sets it to blank. You can see the line | |
2937 splitting effect described here by setting a different style, | |
2938 e.g. @code{k&r} @xref{Choosing a Style}.}, which makes a comment | |
2939 | |
2940 @example | |
2941 /* Got O(n^2) here, which is a Bad Thing. */ | |
2942 @end example | |
2943 | |
2944 @noindent | |
2945 break into | |
2946 | |
2947 @example | |
2948 @group | |
2949 /* Got O(n^2) here, which | |
2950 * is a Bad Thing. */ | |
2951 @end group | |
2952 @end example | |
2953 | |
2954 Note that it won't work to adjust the indentation by putting leading | |
2955 spaces in @code{c-block-comment-prefix}, since @ccmode{} still uses the | |
2956 normal indentation engine to indent the line. Thus, the right way to | |
2957 fix the indentation is by customizing the @code{c} syntactic symbol. It | |
2958 defaults to @code{c-lineup-C-comments}, which handles the indentation of | |
2959 most common comment styles, see @ref{Line-Up Functions}. | |
2960 @end defopt | |
2961 | |
2962 @defopt c-ignore-auto-fill | |
2963 @vindex ignore-auto-fill (c-) | |
2964 When auto fill mode is enabled, @ccmode{} can selectively ignore it | |
2965 depending on the context the line break would occur in, e.g. to never | |
2966 break a line automatically inside a string literal. This variable | |
2967 takes a list of symbols for the different contexts where auto-filling | |
2968 never should occur: | |
2969 | |
2970 @table @code | |
2971 @item string | |
2972 Inside a string or character literal. | |
2973 @item c | |
2974 Inside a C style block comment. | |
2975 @item c++ | |
2976 Inside a C++ style line comment. | |
2977 @item cpp | |
2978 Inside a preprocessor directive. | |
2979 @item code | |
2980 Anywhere else, i.e. in normal code. | |
2981 @end table | |
2982 | |
2983 By default, @code{c-ignore-auto-fill} is set to @code{(string cpp | |
2984 code)}, which means that when auto-fill mode is activated, | |
2985 auto-filling only occurs in comments. In literals, it's often | |
2986 desirable to have explicit control over newlines. In preprocessor | |
2987 directives, the necessary @samp{\} escape character before the newline | |
2988 is not automatically inserted, so an automatic line break would | |
2989 produce invalid code. In normal code, line breaks are normally | |
2990 dictated by some logical structure in the code rather than the last | |
2991 whitespace character, so automatic line breaks there will produce poor | |
2992 results in the current implementation. | |
2993 @end defopt | |
2994 | |
2995 @vindex comment-multi-line | |
2996 If inside a comment and @code{comment-multi-line} (@pxref{Auto Fill,,, | |
2997 @emacsman{}, @emacsmantitle{}} is non-@code{nil}, the indentation and | |
2998 line prefix are preserved. If inside a comment and | |
2999 @code{comment-multi-line} is @code{nil}, a new comment of the same | |
3000 type is started on the next line and indented as appropriate for | |
3001 comments. | |
3002 | |
3003 Note that @ccmode{} sets @code{comment-multi-line} to @code{t} at | |
3004 startup. The reason is that @kbd{M-j} could otherwise produce sequences | |
3005 of single line block comments for texts that should logically be treated | |
3006 as one comment, and the rest of the paragraph handling code | |
3007 (e.g. @kbd{M-q} and @kbd{M-a}) can't cope with that, which would lead to | |
3008 inconsistent behavior. | |
3009 | |
3010 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3011 @node Custom Auto-newlines, Clean-ups, Custom Filling and Breaking, Top | |
3012 @comment node-name, next, previous, up | |
3013 @chapter Customizing Auto-newlines | |
3014 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3015 | |
3016 @ccmode{} determines whether to insert auto-newlines in two basically | |
3017 different ways, depending on the character just typed: | |
3018 | |
3019 @table @asis | |
3020 @item Braces and Colons | |
3021 @ccmode{} first determines the syntactic context of the brace or colon | |
3022 (@pxref{Syntactic Symbols}), then looks for a corresponding element in | |
3023 an alist. This element specifies where to put newlines - this is any | |
3024 combination of before and after the brace or colon. If no alist | |
3025 element is found, newlines are inserted both before and after a brace, | |
3026 but none are inserted around a colon. See @ref{Hanging Braces} and | |
3027 @ref{Hanging Colons}. | |
3028 | |
3029 @item Semicolons and Commas | |
3030 The variable @code{c-hanging-semi&comma-criteria} contains a list of | |
3031 functions which determine whether to insert a newline after a newly | |
3032 typed semicolon or comma. @xref{Hanging Semicolons and Commas}. | |
3033 @end table | |
3034 | |
3035 The names of these configuration variables contain @samp{hanging} | |
3036 because they let you @dfn{hang} the pertinent characters. A character | |
3037 which introduces a C construct is said to @dfn{hang on the right} when | |
3038 it appears at the end of a line after other code, being separated by a | |
3039 line break from the construct it introduces, like the opening brace in: | |
3040 | |
3041 @example | |
3042 @group | |
3043 while (i < MAX) @{ | |
3044 total += entry[i]; | |
3045 entry [i++] = 0; | |
3046 @} | |
3047 @end group | |
3048 @end example | |
3049 | |
3050 @noindent | |
3051 A character @dfn{hangs on the left} when it appears at the start of | |
3052 the line after the construct it closes off, like the above closing | |
3053 brace. | |
3054 | |
3055 The next chapter, ``Clean-ups'', describes how to configure @ccmode{} | |
3056 to remove these automatically added newlines in certain specific | |
3057 circumstances. @xref{Clean-ups}. | |
3058 | |
3059 @menu | |
3060 * Hanging Braces:: | |
3061 * Hanging Colons:: | |
3062 * Hanging Semicolons and Commas:: | |
3063 @end menu | |
3064 | |
3065 | |
3066 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3067 @node Hanging Braces, Hanging Colons, Custom Auto-newlines, Custom Auto-newlines | |
3068 @comment node-name, next, previous, up | |
3069 @section Hanging Braces | |
3070 @cindex hanging braces | |
3071 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3072 | |
3073 To specify which kinds of braces you want auto-newlines put around, | |
3074 you set the style variable @code{c-hanging-braces-alist}. Its | |
3075 structure and semantics are described in this section. Details of how | |
3076 to set it up, and its relationship to CC Mode's style system are given | |
3077 in @ref{Style Variables}. | |
3078 | |
3079 Say you wanted an auto-newline after (but not before) the following | |
3080 @samp{@{}: | |
3081 | |
3082 @example | |
3083 if (foo < 17) @{ | |
3084 @end example | |
3085 | |
3086 @noindent | |
3087 First you need to find the @dfn{syntactic context} of the brace---type | |
3088 a @key{RET} before the brace to get it on a line of its | |
3089 own@footnote{Also insert a @samp{\} at the end of the previous line if | |
3090 you're in AWK Mode.}, then type @kbd{C-c C-s}. That will tell you | |
3091 something like: | |
3092 | |
3093 @example | |
3094 ((substatement-open 1061)) | |
3095 @end example | |
3096 | |
3097 @noindent | |
3098 So here you need to put the entry @code{(substatement-open . (after))} | |
3099 into @code{c-hanging-braces-alist}. | |
3100 | |
3101 If you don't want any auto-newlines for a particular syntactic symbol, | |
3102 put this into @code{c-hanging-braces-alist}: | |
3103 | |
3104 @example | |
3105 (brace-entry-open) | |
3106 @end example | |
3107 | |
3108 If some brace syntactic symbol is not in @code{c-hanging-brace-alist}, | |
3109 its entry is taken by default as @code{(before after)}---insert a | |
3110 newline both before and after the brace. In place of a | |
3111 ``before/after'' list you can specify a function in this alist---this | |
3112 is useful when the auto newlines depend on the code around the brace. | |
3113 | |
3114 @defopt c-hanging-braces-alist | |
3115 @vindex hanging-braces-alist (c-) | |
3116 | |
3117 This variable is an association list which maps syntactic symbols to | |
3118 lists of places to insert a newline. @xref{Association | |
3119 Lists,,,@lispref{}, @lispreftitle{}}. The key of each element is the | |
3120 syntactic symbol, the associated value is either @code{nil}, a list, | |
3121 or a function. | |
3122 | |
3123 @table @asis | |
3124 @item The Key - the syntactic symbol | |
3125 The syntactic symbols that are useful as keys in this list are | |
3126 @code{brace-list-intro}, @code{statement-cont}, | |
3127 @code{inexpr-class-open}, @code{inexpr-class-close}, and all the | |
3128 @code{*-open} and @code{*-close} symbols. @xref{Syntactic Symbols}, | |
3129 for a more detailed description of these syntactic symbols, except for | |
3130 @code{inexpr-class-open} and @code{inexpr-class-close}, which aren't | |
3131 actual syntactic symbols. Elements with any other value as a key get | |
3132 ignored. | |
3133 | |
3134 The braces of anonymous inner classes in Java are given the special | |
3135 symbols @code{inexpr-class-open} and @code{inexpr-class-close}, so that | |
3136 they can be distinguished from the braces of normal classes@footnote{The | |
3137 braces of anonymous classes produce a combination of | |
3138 @code{inexpr-class}, and @code{class-open} or @code{class-close} in | |
3139 normal indentation analysis.}. | |
3140 | |
3141 Note that the aggregate constructs in Pike mode, @samp{(@{}, @samp{@})}, | |
3142 @samp{([}, @samp{])}, and @samp{(<}, @samp{>)}, do not count as brace | |
3143 lists in this regard, even though they do for normal indentation | |
3144 purposes. It's currently not possible to set automatic newlines on | |
3145 these constructs. | |
3146 | |
3147 @item The associated value - the ``ACTION'' list or function | |
3148 The value associated with each syntactic symbol in this association | |
3149 list is called an @var{action}, which can be either a list or a | |
3150 function which returns a list. @xref{Custom Braces}, for how to use | |
3151 a function as a brace hanging @var{action}. | |
3152 | |
3153 The list @var{action} (or the list returned by @var{action} when it's | |
3154 a function) contains some combination of the symbols @code{before} and | |
3155 @code{after}, directing @ccmode{} where to put newlines in | |
3156 relationship to the brace being inserted. Thus, if the list contains | |
3157 only the symbol @code{after}, then the brace hangs on the right side | |
3158 of the line, as in: | |
3159 | |
3160 @example | |
3161 // here, open braces always `hang' | |
3162 void spam( int i ) @{ | |
3163 if( i == 7 ) @{ | |
3164 dosomething(i); | |
3165 @} | |
3166 @} | |
3167 @end example | |
3168 | |
3169 When the list contains both @code{after} and @code{before}, the braces | |
3170 will appear on a line by themselves, as shown by the close braces in | |
3171 the above example. The list can also be empty, in which case newlines | |
3172 are added neither before nor after the brace. | |
3173 @end table | |
3174 | |
3175 If a syntactic symbol is missing entirely from | |
3176 @code{c-hanging-braces-alist}, it's treated in the same way as an | |
3177 @var{action} with a list containing @code{before} and @code{after}, so | |
3178 that braces by default end up on their own line. | |
3179 | |
3180 For example, the default value of @code{c-hanging-braces-alist} is: | |
3181 | |
3182 @example | |
3183 ((brace-list-open) | |
3184 (brace-entry-open) | |
3185 (statement-cont) | |
3186 (substatement-open after) | |
3187 (block-close . c-snug-do-while) | |
3188 (extern-lang-open after) | |
3189 (namespace-open after) | |
3190 (module-open after) | |
3191 (composition-open after) | |
3192 (inexpr-class-open after) | |
3193 (inexpr-class-close before)) | |
3194 @end example | |
3195 | |
3196 @noindent which says that @code{brace-list-open}, | |
3197 @code{brace-entry-open} and @code{statement-cont}@footnote{Brace lists | |
3198 inside statements, such as initializers for static array variables | |
3199 inside functions in C, are recognized as @code{statement-cont}. All | |
3200 normal substatement blocks are recognized with other symbols.} braces | |
3201 should both hang on the right side and allow subsequent text to follow | |
3202 on the same line as the brace. Also, @code{substatement-open}, | |
3203 @code{extern-lang-open}, and @code{inexpr-class-open} braces should hang | |
3204 on the right side, but subsequent text should follow on the next line. | |
3205 The opposite holds for @code{inexpr-class-close} braces; they won't | |
3206 hang, but the following text continues on the same line. Here, in the | |
3207 @code{block-close} entry, you also see an example of using a function as | |
3208 an @var{action}. In all other cases, braces are put on a line by | |
3209 themselves. | |
3210 @end defopt | |
3211 | |
3212 @menu | |
3213 * Custom Braces:: | |
3214 @end menu | |
3215 | |
3216 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3217 @node Custom Braces, , Hanging Braces, Hanging Braces | |
3218 @comment node-name, next, previous, up | |
3219 @subsection Custom Brace Hanging | |
3220 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3221 | |
3222 @vindex c-hanging-braces-alist | |
3223 @vindex hanging-braces-alist (c-) | |
3224 @cindex action functions | |
3225 Syntactic symbols aren't the only place where you can customize | |
3226 @ccmode{} with the lisp equivalent of callback functions. Remember | |
3227 that @var{action}s are usually a list containing some combination of | |
3228 the symbols @code{before} and @code{after} (@pxref{Hanging Braces}). | |
3229 For more flexibility, you can instead specify brace ``hanginess'' by | |
3230 giving a syntactic symbol an @dfn{action function} in | |
3231 @code{c-hanging-braces-alist}; this function determines the | |
3232 ``hanginess'' of a brace, usually by looking at the code near it. | |
3233 | |
3234 @cindex customization, brace hanging | |
3235 An action function is called with two arguments: the syntactic symbol | |
3236 for the brace (e.g. @code{substatement-open}), and the buffer position | |
3237 where the brace has been inserted. Point is undefined on entry to an | |
3238 action function, but the function must preserve it (e.g. by using | |
3239 @code{save-excursion}). The return value should be a list containing | |
3240 some combination of @code{before} and @code{after}, including neither | |
3241 of them (i.e. @code{nil}). | |
3242 | |
3243 @defvar c-syntactic-context | |
3244 @vindex syntactic-context (c-) | |
3245 During the call to the indentation or brace hanging @var{action} | |
3246 function, this variable is bound to the full syntactic analysis list. | |
3247 This might be, for example, @samp{((block-close 73))}. Don't ever | |
3248 give @code{c-syntactic-context} a value yourself---this would disrupt | |
3249 the proper functioning of @ccmode{}. | |
3250 | |
3251 This variable is also bound in three other circumstances: | |
3252 (i)@w{ }when calling a c-hanging-semi&comma-criteria function | |
3253 (@pxref{Hanging Semicolons and Commas}); (ii)@w{ }when calling a | |
3254 line-up function (@pxref{Custom Line-Up}); (iii)@w{ }when calling a | |
3255 c-special-indent-hook function (@pxref{Other Indentation}). | |
3256 @end defvar | |
3257 | |
3258 As an example, @ccmode{} itself uses this feature to dynamically | |
3259 determine the hanginess of braces which close ``do-while'' | |
3260 constructs: | |
3261 | |
3262 @example | |
3263 void do_list( int count, char** atleast_one_string ) | |
3264 @{ | |
3265 int i=0; | |
3266 do @{ | |
3267 handle_string( atleast_one_string[i] ); | |
3268 i++; | |
3269 @} while( i < count ); | |
3270 @} | |
3271 @end example | |
3272 | |
3273 @ccmode{} assigns the @code{block-close} syntactic symbol to the | |
3274 brace that closes the @code{do} construct, and normally we'd like the | |
3275 line that follows a @code{block-close} brace to begin on a separate | |
3276 line. However, with ``do-while'' constructs, we want the | |
3277 @code{while} clause to follow the closing brace. To do this, we | |
3278 associate the @code{block-close} symbol with the @var{action} function | |
3279 @code{c-snug-do-while}: | |
3280 | |
3281 @example | |
3282 (defun c-snug-do-while (syntax pos) | |
3283 "Dynamically calculate brace hanginess for do-while statements." | |
3284 (save-excursion | |
3285 (let (langelem) | |
3286 (if (and (eq syntax 'block-close) | |
3287 (setq langelem (assq 'block-close c-syntactic-context)) | |
3288 (progn (goto-char (cdr langelem)) | |
3289 (if (= (following-char) ?@{) | |
3290 (forward-sexp -1)) | |
3291 (looking-at "\\<do\\>[^_]"))) | |
3292 '(before) | |
3293 '(before after))))) | |
3294 @end example | |
3295 | |
3296 @findex c-snug-do-while | |
3297 @findex snug-do-while (c-) | |
3298 This function simply looks to see if the brace closes a ``do-while'' | |
3299 clause and if so, returns the list @samp{(before)} indicating | |
3300 that a newline should be inserted before the brace, but not after it. | |
3301 In all other cases, it returns the list @samp{(before after)} so | |
3302 that the brace appears on a line by itself. | |
3303 | |
3304 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3305 @node Hanging Colons, Hanging Semicolons and Commas, Hanging Braces, Custom Auto-newlines | |
3306 @comment node-name, next, previous, up | |
3307 @section Hanging Colons | |
3308 @cindex hanging colons | |
3309 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3310 | |
3311 @cindex customization, colon hanging | |
3312 @vindex c-hanging-colons-alist | |
3313 @vindex hanging-colons-alist (c-) | |
3314 | |
3315 Using a mechanism similar to brace hanging (@pxref{Hanging Braces}), | |
3316 colons can also be made to hang using the style variable | |
3317 @code{c-hanging-colons-alist} - When a colon is typed, @ccmode | |
3318 determines its syntactic context, looks this up in the alist | |
3319 @code{c-changing-colons-alist} and inserts up to two newlines | |
3320 accordingly. Here, however, If @ccmode fails to find an entry for a | |
3321 syntactic symbol in the alist, no newlines are inserted around the | |
3322 newly typed colon. | |
3323 | |
3324 @defopt c-hanging-colons-alist | |
3325 @vindex hanging-colons-alist (c-) | |
3326 | |
3327 @table @asis | |
3328 @item The Key - the syntactic symbol | |
3329 The syntactic symbols appropriate as keys in this association list | |
3330 are: @code{case-label}, @code{label}, @code{access-label}, | |
3331 @code{member-init-intro}, and @code{inher-intro}. @xref{Syntactic | |
3332 Symbols}. Elements with any other value as a key get ignored. | |
3333 | |
3334 @item The associate value - the ``ACTION'' list | |
3335 The @var{action} here is simply a list containing a combination of the | |
3336 symbols @code{before} and @code{after}. Unlike in | |
3337 @code{c-hanging-braces-alist}, functions as @var{actions} are not | |
3338 supported - there doesn't seem to be any need for them. | |
3339 @end table | |
3340 @end defopt | |
3341 | |
3342 In C++, double-colons are used as a scope operator but because these | |
3343 colons always appear right next to each other, newlines before and after | |
3344 them are controlled by a different mechanism, called @dfn{clean-ups} in | |
3345 @ccmode{}. @xref{Clean-ups}, for details. | |
3346 | |
3347 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3348 @node Hanging Semicolons and Commas, , Hanging Colons, Custom Auto-newlines | |
3349 @comment node-name, next, previous, up | |
3350 @section Hanging Semicolons and Commas | |
3351 @cindex hanging semicolons | |
3352 @cindex hanging commas | |
3353 @cindex customization, semicolon newlines | |
3354 @cindex customization, comma newlines | |
3355 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3356 | |
3357 @defopt c-hanging-semi&comma-criteria | |
3358 @vindex hanging-semi&comma-criteria (c-) | |
3359 This style variable takes a list of functions; these get called when | |
3360 you type a semicolon or comma. The functions are called in order | |
3361 without arguments. When these functions are entered, point is just | |
3362 after the newly inserted @samp{;} or @samp{,} and they must preserve | |
3363 point (e.g., by using @code{save-excursion}). During the call, the | |
3364 variable @code{c-syntactic-context} is bound to the syntactic context | |
3365 of the current line@footnote{This was first introduced in @ccmode{} | |
3366 5.31.} @pxref{Custom Braces}. These functions don't insert newlines | |
3367 themselves, rather they direct @ccmode{} whether or not to do so. | |
3368 They should return one of the following values: | |
3369 | |
3370 @table @code | |
3371 @item t | |
3372 A newline is to be inserted after the @samp{;} or @samp{,}, and no | |
3373 more functions from the list are to be called. | |
3374 @item stop | |
3375 No more functions from the list are to be called, and no newline is to | |
3376 be inserted. | |
3377 @item nil | |
3378 No determination has been made, and the next function in the list is | |
3379 to be called. | |
3380 @end table | |
3381 | |
3382 Note that auto-newlines are never inserted @emph{before} a semicolon | |
3383 or comma. If every function in the list is called without a | |
3384 determination being made, then no newline is added. | |
3385 | |
3386 In AWK mode, this variable is set by default to @code{nil}. In the | |
3387 other modes, the default value is a list containing a single function, | |
3388 @code{c-semi&comma-inside-parenlist}. This inserts newlines after all | |
3389 semicolons, apart from those separating @code{for}-clause statements. | |
3390 @end defopt | |
3391 | |
3392 @defun c-semi&comma-no-newlines-before-nonblanks | |
3393 @findex semi&comma-no-newlines-before-nonblanks (c-) | |
3394 This is an example of a criteria function, provided by @ccmode{}. It | |
3395 prevents newlines from being inserted after semicolons when there is a | |
3396 non-blank following line. Otherwise, it makes no determination. To | |
3397 use, add this function to the front of the | |
3398 @code{c-hanging-semi&comma-criteria} list. | |
3399 | |
3400 @example | |
3401 (defun c-semi&comma-no-newlines-before-nonblanks () | |
3402 (save-excursion | |
3403 (if (and (eq last-command-char ?\;) | |
3404 (zerop (forward-line 1)) | |
3405 (not (looking-at "^[ \t]*$"))) | |
3406 'stop | |
3407 nil))) | |
3408 @end example | |
3409 @end defun | |
3410 | |
3411 @defun c-semi&comma-inside-parenlist | |
3412 @findex semi&comma-inside-parenlist (c-) | |
3413 @defunx c-semi&comma-no-newlines-for-oneline-inliners | |
3414 @findex semi&comma-no-newlines-for-oneline-inliners (c-) | |
3415 The function @code{c-semi&comma-inside-parenlist} is what prevents | |
3416 newlines from being inserted inside the parenthesis list of @code{for} | |
3417 statements. In addition to | |
3418 @code{c-semi&comma-no-newlines-before-nonblanks} described above, | |
3419 @ccmode{} also comes with the criteria function | |
3420 @code{c-semi&comma-no-newlines-for-oneline-inliners}, which suppresses | |
3421 newlines after semicolons inside one-line inline method definitions | |
3422 (e.g. in C++ or Java). | |
3423 @end defun | |
3424 | |
3425 | |
3426 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3427 @node Clean-ups, Indentation Engine Basics, Custom Auto-newlines, Top | |
3428 @comment node-name, next, previous, up | |
3429 @chapter Clean-ups | |
3430 @cindex clean-ups | |
3431 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3432 | |
3433 @dfn{Clean-ups} are mechanisms which remove (or exceptionally, add) | |
3434 whitespace in specific circumstances and are complementary to colon | |
3435 and brace hanging. You enable a clean-up by adding its symbol into | |
3436 @code{c-cleanup-list}, e.g. like this: | |
3437 | |
3438 @example | |
3439 (add-to-list 'c-cleanup-list 'space-before-funcall) | |
3440 @end example | |
3441 | |
3442 On the surface, it would seem that clean-ups overlap the functionality | |
3443 provided by the @code{c-hanging-*-alist} variables. Clean-ups, | |
3444 however, are used to adjust code ``after-the-fact'', i.e. to adjust | |
3445 the whitespace in constructs later than when they were typed. | |
3446 | |
3447 Most of the clean-ups remove automatically inserted newlines, and are | |
3448 only active when auto-newline minor mode is turned on. Others will | |
3449 work all the time. Note that clean-ups are only performed when there | |
3450 is nothing but whitespace appearing between the individual components | |
3451 of the construct, and (apart from @code{comment-close-slash}) when the | |
3452 construct does not occur within a literal (@pxref{Auto-newlines}). | |
3453 | |
3454 @defopt c-cleanup-list | |
3455 @vindex cleanup-list (c-) | |
3456 @cindex literal | |
3457 | |
3458 You configure @ccmode{}'s clean-ups by setting the style variable | |
3459 @code{c-cleanup-list}, which is a list of clean-up symbols. By | |
3460 default, @ccmode{} cleans up only the @code{scope-operator} construct, | |
3461 which is necessary for proper C++ support. | |
3462 @end defopt | |
3463 | |
3464 These are the clean-ups that are only active when electric and | |
3465 auto-newline minor modes are enabled: | |
3466 | |
3467 @c TBD: Would like to use some sort of @deffoo here; @table indents a | |
3468 @c bit too much in dvi output. | |
3469 @table @code | |
3470 @item brace-else-brace | |
3471 Clean up @samp{@} else @{} constructs by placing the entire construct on | |
3472 a single line. Clean up occurs when the open brace after the | |
3473 @samp{else} is typed. So for example, this: | |
3474 | |
3475 @example | |
3476 @group | |
3477 void spam(int i) | |
3478 @{ | |
3479 if( i==7 ) @{ | |
3480 dosomething(); | |
3481 @} | |
3482 else | |
3483 @{ | |
3484 @end group | |
3485 @end example | |
3486 | |
3487 @noindent | |
3488 appears like this after the last open brace is typed: | |
3489 | |
3490 @example | |
3491 @group | |
3492 void spam(int i) | |
3493 @{ | |
3494 if( i==7 ) @{ | |
3495 dosomething(); | |
3496 @} else @{ | |
3497 @end group | |
3498 @end example | |
3499 | |
3500 @item brace-elseif-brace | |
3501 Similar to the @code{brace-else-brace} clean-up, but this cleans up | |
3502 @samp{@} else if (...) @{} constructs. For example: | |
3503 | |
3504 @example | |
3505 @group | |
3506 void spam(int i) | |
3507 @{ | |
3508 if( i==7 ) @{ | |
3509 dosomething(); | |
3510 @} | |
3511 else if( i==3 ) | |
3512 @{ | |
3513 @end group | |
3514 @end example | |
3515 | |
3516 @noindent | |
3517 appears like this after the last open parenthesis is typed: | |
3518 | |
3519 @example | |
3520 @group | |
3521 void spam(int i) | |
3522 @{ | |
3523 if( i==7 ) @{ | |
3524 dosomething(); | |
3525 @} else if( | |
3526 @end group | |
3527 @end example | |
3528 | |
3529 @noindent | |
3530 and like this after the last open brace is typed: | |
3531 | |
3532 @example | |
3533 @group | |
3534 void spam(int i) | |
3535 @{ | |
3536 if( i==7 ) @{ | |
3537 dosomething(); | |
3538 @} else if( i==3 ) @{ | |
3539 @end group | |
3540 @end example | |
3541 | |
3542 @item brace-catch-brace | |
3543 Analogous to @code{brace-elseif-brace}, but cleans up @samp{@} catch | |
3544 (...) @{} in C++ and Java mode. | |
3545 | |
3546 @item empty-defun-braces | |
3547 Clean up braces following a top-level function or class definition that | |
3548 contains no body. Clean up occurs when the closing brace is typed. | |
3549 Thus the following: | |
3550 | |
3551 @example | |
3552 @group | |
3553 class Spam | |
3554 @{ | |
3555 @} | |
3556 @end group | |
3557 @end example | |
3558 | |
3559 @noindent | |
3560 is transformed into this when the close brace is typed: | |
3561 | |
3562 @example | |
3563 @group | |
3564 class Spam | |
3565 @{@} | |
3566 @end group | |
3567 @end example | |
3568 | |
3569 @item defun-close-semi | |
3570 Clean up the terminating semicolon on top-level function or class | |
3571 definitions when they follow a close brace. Clean up occurs when the | |
3572 semicolon is typed. So for example, the following: | |
3573 | |
3574 @example | |
3575 @group | |
3576 class Spam | |
3577 @{ | |
3578 ... | |
3579 @} | |
3580 ; | |
3581 @end group | |
3582 @end example | |
3583 | |
3584 @noindent | |
3585 is transformed into this when the semicolon is typed: | |
3586 | |
3587 @example | |
3588 @group | |
3589 class Spam | |
3590 @{ | |
3591 ... | |
3592 @}; | |
3593 @end group | |
3594 @end example | |
3595 | |
3596 @item list-close-comma | |
3597 Clean up commas following braces in array and aggregate initializers. | |
3598 Clean up occurs when the comma is typed. The space before the comma | |
3599 is zapped just like the space before the semicolon in | |
3600 @code{defun-close-semi}. | |
3601 | |
3602 @item scope-operator | |
3603 Clean up double colons which might designate a C++ scope operator split | |
3604 across multiple lines@footnote{Certain C++ constructs introduce | |
3605 ambiguous situations, so @code{scope-operator} clean-ups might not | |
3606 always be correct. This usually only occurs when scoped identifiers | |
3607 appear in switch label tags.}. Clean up occurs when the second colon is | |
3608 typed. You will always want @code{scope-operator} in the | |
3609 @code{c-cleanup-list} when you are editing C++ code. | |
3610 | |
3611 @item one-liner-defun | |
3612 Clean up a single line of code enclosed by defun braces by removing | |
3613 the whitespace before and after the code. The clean-up happens when | |
3614 the closing brace is typed. If the variable | |
3615 @code{c-max-one-liner-length} is set, the cleanup is only done if the | |
3616 resulting line would be no longer than the value of that variable. | |
3617 | |
3618 For example, consider this AWK code: | |
3619 | |
3620 @example | |
3621 @group | |
3622 BEGIN @{ | |
3623 FS = "\t" # use <TAB> as a field separator | |
3624 @} | |
3625 @end group | |
3626 @end example | |
3627 | |
3628 @noindent | |
3629 It gets compacted to the following when the closing brace is typed: | |
3630 | |
3631 @example | |
3632 @group | |
3633 BEGIN @{FS = "\t"@} # use <TAB> as a field separator | |
3634 @end group | |
3635 @end example | |
3636 | |
3637 @defopt c-max-one-liner-length | |
3638 @vindex max-one-liner-length (c-) | |
3639 The maximum length of the resulting line for which the clean-up | |
3640 @code{one-liner-defun} will be triggered. This length is that of the entire | |
3641 line, including any leading whitespace and any trailing comment. Its | |
3642 default value is 80. If the value is zero or @code{nil}, no limit | |
3643 applies. | |
3644 @end defopt | |
3645 @end table | |
3646 | |
3647 The following clean-ups are always active when they occur on | |
3648 @code{c-cleanup-list}, regardless of whether Electric minor mode or | |
3649 Auto-newline minor mode are enabled: | |
3650 | |
3651 @table @code | |
3652 @item space-before-funcall | |
3653 Insert a space between the function name and the opening parenthesis | |
3654 of a function call. This produces function calls in the style | |
3655 mandated by the GNU coding standards, e.g. @samp{signal@w{ }(SIGINT, | |
3656 SIG_IGN)} and @samp{abort@w{ }()}. Clean up occurs when the opening | |
3657 parenthesis is typed. This clean-up should never be active in AWK | |
3658 Mode, since such a space is syntactically invalid for user defined | |
3659 functions. | |
3660 | |
3661 @item compact-empty-funcall | |
3662 Clean up any space between the function name and the opening parenthesis | |
3663 of a function call that has no arguments. This is typically used | |
3664 together with @code{space-before-funcall} if you prefer the GNU function | |
3665 call style for functions with arguments but think it looks ugly when | |
3666 it's only an empty parenthesis pair. I.e. you will get @samp{signal | |
3667 (SIGINT, SIG_IGN)}, but @samp{abort()}. Clean up occurs when the | |
3668 closing parenthesis is typed. | |
3669 | |
3670 @item comment-close-slash | |
3671 When inside a block comment, terminate the comment when you type a slash | |
3672 at the beginning of a line (i.e. immediately after the comment prefix). | |
3673 This clean-up removes whitespace preceding the slash and if needed, | |
3674 inserts a star to complete the token @samp{*/}. Type @kbd{C-q /} in this | |
3675 situation if you just want a literal @samp{/} inserted. | |
3676 @end table | |
3677 | |
3678 | |
3679 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3680 @node Indentation Engine Basics, Customizing Indentation, Clean-ups, Top | |
3681 @comment node-name, next, previous, up | |
3682 @chapter Indentation Engine Basics | |
3683 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3684 | |
3685 This chapter will briefly cover how @ccmode{} indents lines of code. | |
3686 It is helpful to understand the indentation model being used so that | |
3687 you will know how to customize @ccmode{} for your personal coding | |
3688 style. All the details are in @ref{Customizing Indentation}. | |
3689 | |
3690 @ccmode{} has an indentation engine that provides a flexible and | |
3691 general mechanism for customizing indentation. When @ccmode{} indents | |
3692 a line of code, it separates its calculations into two steps: | |
3693 | |
3694 @enumerate | |
3695 @item | |
3696 @cindex syntactic symbol | |
3697 @cindex anchor position | |
3698 It analyzes the line to determine its @dfn{syntactic symbol(s)} (the | |
3699 kind of language construct it's looking at) and its @dfn{anchor | |
3700 position} (the position earlier in the file that @ccmode{} will indent | |
3701 the line relative to). The anchor position might be the location of | |
3702 an opening brace in the previous line, for example. @xref{Syntactic | |
3703 Analysis}. | |
3704 @item | |
3705 @cindex offsets | |
3706 @cindex indentation offset specifications | |
3707 It looks up the syntactic symbol(s) in the configuration to get the | |
3708 corresponding @dfn{offset(s)}. The symbol @code{+}, which means | |
3709 ``indent this line one more level'' is a typical offset. @ccmode{} | |
3710 then applies these offset(s) to the anchor position, giving the | |
3711 indentation for the line. The different sorts of offsets are | |
3712 described in @ref{c-offsets-alist}. | |
3713 @end enumerate | |
3714 | |
3715 In exceptional circumstances, the syntax directed indentation | |
3716 described here may be a nuisance rather than a help. You can disable | |
3717 it by setting @code{c-syntactic-indentation} to @code{nil}. (To set | |
3718 the variable interactively, @ref{Minor Modes}). | |
3719 | |
3720 @defopt c-syntactic-indentation | |
3721 @vindex syntactic-indentation (c-) | |
3722 When this is non-@code{nil} (which it is by default), the indentation | |
3723 of code is done according to its syntactic structure. When it's | |
3724 @code{nil}, every line is just indented to the same level as the | |
3725 previous one, and @kbd{TAB} (@code{c-indent-command}) adjusts the | |
3726 indentation in steps of @code{c-basic-offset}. The current style | |
3727 (@pxref{Config Basics}) then has no effect on indentation, nor do any | |
3728 of the variables associated with indentation, not even | |
3729 @code{c-special-indent-hook}. | |
3730 @end defopt | |
3731 | |
3732 @menu | |
3733 * Syntactic Analysis:: | |
3734 * Syntactic Symbols:: | |
3735 * Indentation Calculation:: | |
3736 @end menu | |
3737 | |
3738 | |
3739 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3740 @node Syntactic Analysis, Syntactic Symbols, Indentation Engine Basics, Indentation Engine Basics | |
3741 @comment node-name, next, previous, up | |
3742 @section Syntactic Analysis | |
3743 @cindex syntactic analysis | |
3744 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3745 | |
3746 @cindex syntactic element | |
3747 @cindex syntactic context | |
3748 The first thing @ccmode{} does when indenting a line of code, is to | |
3749 analyze the line, determining the @dfn{syntactic context} of the | |
3750 (first) construct on that line. It's a list of @dfn{syntactic | |
3751 elements}, where each syntactic element in turn is a list@footnote{In | |
3752 @ccmode 5.28 and earlier, a syntactic element was a dotted pair; the | |
3753 cons was the syntactic symbol and the cdr was the anchor position. | |
3754 For compatibility's sake, the parameter passed to a line-up function | |
3755 still has this dotted pair form (@pxref{Custom Line-Up}).} Here is a | |
3756 brief and typical example: | |
3757 | |
3758 @example | |
3759 ((defun-block-intro 1959)) | |
3760 @end example | |
3761 | |
3762 @cindex syntactic symbol | |
3763 @noindent | |
3764 The first thing inside each syntactic element is always a | |
3765 @dfn{syntactic symbol}. It describes the kind of construct that was | |
3766 recognized, e.g. @code{statement}, @code{substatement}, | |
3767 @code{class-open}, @code{class-close}, etc. @xref{Syntactic Symbols}, | |
3768 for a complete list of currently recognized syntactic symbols and | |
3769 their semantics. The remaining entries are various data associated | |
3770 with the recognized construct - there might be zero or more. | |
3771 | |
3772 @cindex anchor position | |
3773 Conceptually, a line of code is always indented relative to some | |
3774 position higher up in the buffer (typically the indentation of the | |
3775 previous line). That position is the @dfn{anchor position} in the | |
3776 syntactic element. If there is an entry after the syntactic symbol in | |
3777 the syntactic element list then it's either nil or that anchor position. | |
3778 | |
3779 Here is an example. Suppose we had the following code as the only thing | |
3780 in a C++ buffer @footnote{The line numbers in this and future examples | |
3781 don't actually appear in the buffer, of course!}: | |
3782 | |
3783 @example | |
3784 1: void swap( int& a, int& b ) | |
3785 2: @{ | |
3786 3: int tmp = a; | |
3787 4: a = b; | |
3788 5: b = tmp; | |
3789 6: @} | |
3790 @end example | |
3791 | |
3792 @noindent | |
3793 We can use @kbd{C-c C-s} (@code{c-show-syntactic-information}) to | |
3794 report what the syntactic analysis is for the current line: | |
3795 | |
3796 @table @asis | |
3797 @item @kbd{C-c C-s} (@code{c-show-syntactic-information}) | |
3798 @kindex C-c C-s | |
3799 @findex c-show-syntactic-information | |
3800 @findex show-syntactic-information (c-) | |
3801 This command calculates the syntactic analysis of the current line and | |
3802 displays it in the minibuffer. The command also highlights the anchor | |
3803 position(s). | |
3804 @end table | |
3805 | |
3806 Running this command on line 4 of this example, we'd see in the echo | |
3807 area@footnote{With a universal argument (i.e. @kbd{C-u C-c C-s}) the | |
3808 analysis is inserted into the buffer as a comment on the current | |
3809 line.}: | |
3810 | |
3811 @example | |
3812 ((statement 35)) | |
3813 @end example | |
3814 | |
3815 @noindent | |
3816 and the @samp{i} of @code{int} on line 3 would be highlighted. This | |
3817 tells us that the line is a statement and it is indented relative to | |
3818 buffer position 35, the highlighted position. If you were to move | |
3819 point to line 3 and hit @kbd{C-c C-s}, you would see: | |
3820 | |
3821 @example | |
3822 ((defun-block-intro 29)) | |
3823 @end example | |
3824 | |
3825 @noindent | |
3826 This indicates that the @samp{int} line is the first statement in a top | |
3827 level function block, and is indented relative to buffer position 29, | |
3828 which is the brace just after the function header. | |
3829 | |
3830 Here's another example: | |
3831 | |
3832 @example | |
3833 1: int add( int val, int incr, int doit ) | |
3834 2: @{ | |
3835 3: if( doit ) | |
3836 4: @{ | |
3837 5: return( val + incr ); | |
3838 6: @} | |
3839 7: return( val ); | |
3840 8: @} | |
3841 @end example | |
3842 | |
3843 @noindent | |
3844 Hitting @kbd{C-c C-s} on line 4 gives us: | |
3845 | |
3846 @example | |
3847 ((substatement-open 46)) | |
3848 @end example | |
3849 | |
3850 @cindex substatement | |
3851 @cindex substatement block | |
3852 @noindent | |
3853 which tells us that this is a brace that @emph{opens} a substatement | |
3854 block. @footnote{A @dfn{substatement} is the line after a | |
3855 conditional statement, such as @code{if}, @code{else}, @code{while}, | |
3856 @code{do}, @code{switch}, etc. A @dfn{substatement | |
3857 block} is a brace block following one of these conditional statements.} | |
3858 | |
3859 @cindex comment-only line | |
3860 Syntactic contexts can contain more than one element, and syntactic | |
3861 elements need not have anchor positions. The most common example of | |
3862 this is a @dfn{comment-only line}: | |
3863 | |
3864 @example | |
3865 1: void draw_list( List<Drawables>& drawables ) | |
3866 2: @{ | |
3867 3: // call the virtual draw() method on each element in list | |
3868 4: for( int i=0; i < drawables.count(), ++i ) | |
3869 5: @{ | |
3870 6: drawables[i].draw(); | |
3871 7: @} | |
3872 8: @} | |
3873 @end example | |
3874 | |
3875 @noindent | |
3876 Hitting @kbd{C-c C-s} on line 3 of this example gives: | |
3877 | |
3878 @example | |
3879 ((comment-intro) (defun-block-intro 46)) | |
3880 @end example | |
3881 | |
3882 @noindent | |
3883 and you can see that the syntactic context contains two syntactic | |
3884 elements. Notice that the first element, @samp{(comment-intro)}, has no | |
3885 anchor position. | |
3886 | |
3887 | |
3888 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3889 @node Syntactic Symbols, Indentation Calculation, Syntactic Analysis, Indentation Engine Basics | |
3890 @comment node-name, next, previous, up | |
3891 @section Syntactic Symbols | |
3892 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3893 | |
3894 @cindex syntactic symbols, brief list | |
3895 @vindex c-offsets-alist | |
3896 @vindex offsets-alist (c-) | |
3897 This section is a complete list of the syntactic symbols which appear | |
3898 in the @code{c-offsets-alist} style variable, along with brief | |
3899 descriptions. The previous section (@pxref{Syntactic Analysis}) | |
3900 states what syntactic symbols are and how the indentation engine uses | |
3901 them. | |
3902 | |
3903 More detailed descriptions of these symbols, together with snippets of | |
3904 source code to which they apply, appear in the examples in the | |
3905 subsections below. Note that, in the interests of brevity, the anchor | |
3906 position associated with most syntactic symbols is @emph{not} | |
3907 specified. In cases of doubt, type @kbd{C-c C-s} on a pertinent | |
3908 line---this highlights the anchor position. | |
3909 | |
3910 @ssindex -open symbols | |
3911 @ssindex -close symbols | |
3912 @ssindex -block-intro symbols | |
3913 The syntactic symbols which indicate brace constructs follow a general | |
3914 naming convention. When a line begins with an open or close brace, | |
3915 its syntactic symbol will contain the suffix @code{-open} or | |
3916 @code{-close} respectively. The first line within the brace block | |
3917 construct will contain the suffix @code{-block-intro}. | |
3918 | |
3919 @ssindex -intro symbols | |
3920 @ssindex -cont symbols | |
3921 In constructs which can span several lines, a distinction is usually | |
3922 made between the first line that introduces the construct and the | |
3923 lines that continue it. The syntactic symbols that indicate these | |
3924 lines will contain the suffixes @code{-intro} or @code{-cont} | |
3925 respectively. | |
3926 | |
3927 The best way to understand how all this works is by looking at some | |
3928 examples. Remember that you can see the syntax of any source code | |
3929 line by using @kbd{C-c C-s}. | |
3930 | |
3931 @table @code | |
3932 @item string | |
3933 Inside a multiline string. @ref{Literal Symbols}. | |
3934 @item c | |
3935 Inside a multiline C style block comment. @ref{Literal Symbols}. | |
3936 @item defun-open | |
3937 Brace that opens a top-level function definition. @ref{Function | |
3938 Symbols}. | |
3939 @item defun-close | |
3940 Brace that closes a top-level function definition. @ref{Function | |
3941 Symbols}. | |
3942 @item defun-block-intro | |
3943 The first line in a top-level defun. @ref{Function Symbols}. | |
3944 @item class-open | |
3945 Brace that opens a class definition. @ref{Class Symbols}. | |
3946 @item class-close | |
3947 Brace that closes a class definition. @ref{Class Symbols}. | |
3948 @item inline-open | |
3949 Brace that opens an in-class inline method. @ref{Class Symbols}. | |
3950 @item inline-close | |
3951 Brace that closes an in-class inline method. @ref{Class Symbols}. | |
3952 @item func-decl-cont | |
3953 The region between a function definition's argument list and the | |
3954 function opening brace (excluding K&R argument declarations). In C, | |
3955 you cannot put anything but whitespace and comments in this region, | |
3956 however in C++ and Java, @code{throws} declarations and other things | |
3957 can appear here. @ref{Literal Symbols}. @c @emph{FIXME!!! Can it not | |
3958 @c go somewhere better?} | |
3959 @item knr-argdecl-intro | |
3960 First line of a K&R C argument declaration. @ref{K&R Symbols}. | |
3961 @item knr-argdecl | |
3962 Subsequent lines in a K&R C argument declaration. @ref{K&R Symbols}. | |
3963 @item topmost-intro | |
3964 The first line in a ``topmost'' definition. @ref{Function Symbols}. | |
3965 @item topmost-intro-cont | |
3966 Topmost definition continuation lines. This is only used in the parts | |
3967 that aren't covered by other symbols such as @code{func-decl-cont} and | |
3968 @code{knr-argdecl}. @ref{Function Symbols}. | |
3969 @item member-init-intro | |
3970 First line in a member initialization list. @ref{Class Symbols}. | |
3971 @item member-init-cont | |
3972 Subsequent member initialization list lines. @ref{Class Symbols}. | |
3973 @item inher-intro | |
3974 First line of a multiple inheritance list. @ref{Class Symbols}. | |
3975 @item inher-cont | |
3976 Subsequent multiple inheritance lines. @ref{Class Symbols}. | |
3977 @item block-open | |
3978 Statement block open brace. @ref{Literal Symbols}. | |
3979 @item block-close | |
3980 Statement block close brace. @ref{Conditional Construct Symbols}. | |
3981 @item brace-list-open | |
3982 Open brace of an enum or static array list. @ref{Brace List Symbols}. | |
3983 @item brace-list-close | |
3984 Close brace of an enum or static array list. @ref{Brace List Symbols}. | |
3985 @item brace-list-intro | |
3986 First line in an enum or static array list. @ref{Brace List Symbols}. | |
3987 @item brace-list-entry | |
3988 Subsequent lines in an enum or static array list. @ref{Brace List | |
3989 Symbols}. | |
3990 @item brace-entry-open | |
3991 Subsequent lines in an enum or static array list where the line begins | |
3992 with an open brace. @ref{Brace List Symbols}. | |
3993 @item statement | |
3994 A statement. @ref{Function Symbols}. | |
3995 @item statement-cont | |
3996 A continuation of a statement. @ref{Function Symbols}. | |
3997 @item statement-block-intro | |
3998 The first line in a new statement block. @ref{Conditional Construct | |
3999 Symbols}. | |
4000 @item statement-case-intro | |
4001 The first line in a case block. @ref{Switch Statement Symbols}. | |
4002 @item statement-case-open | |
4003 The first line in a case block that starts with a brace. @ref{Switch | |
4004 Statement Symbols}. | |
4005 @item substatement | |
4006 The first line after a conditional or loop construct. | |
4007 @ref{Conditional Construct Symbols}. | |
4008 @item substatement-open | |
4009 The brace that opens a substatement block. @ref{Conditional Construct | |
4010 Symbols}. | |
4011 @item substatement-label | |
4012 The first line after a conditional or loop construct if it's a label. | |
4013 @ref{Conditional Construct Symbols}. | |
4014 @item case-label | |
4015 A label in a @code{switch} block. @ref{Switch Statement Symbols}. | |
4016 @item access-label | |
4017 C++ access control label. @ref{Class Symbols}. | |
4018 @item label | |
4019 Any other label. @ref{Literal Symbols}. | |
4020 @item do-while-closure | |
4021 The @code{while} line that ends a @code{do}-@code{while} construct. | |
4022 @ref{Conditional Construct Symbols}. | |
4023 @item else-clause | |
4024 The @code{else} line of an @code{if}-@code{else} construct. | |
4025 @ref{Conditional Construct Symbols}. | |
4026 @item catch-clause | |
4027 The @code{catch} or @code{finally} (in Java) line of a | |
4028 @code{try}-@code{catch} construct. @ref{Conditional Construct | |
4029 Symbols}. | |
4030 @item comment-intro | |
4031 A line containing only a comment introduction. @ref{Literal Symbols}. | |
4032 @item arglist-intro | |
4033 The first line in an argument list. @ref{Paren List Symbols}. | |
4034 @item arglist-cont | |
4035 Subsequent argument list lines when no arguments follow on the same | |
4036 line as the arglist opening paren. @ref{Paren List Symbols}. | |
4037 @item arglist-cont-nonempty | |
4038 Subsequent argument list lines when at least one argument follows on | |
4039 the same line as the arglist opening paren. @ref{Paren List Symbols}. | |
4040 @item arglist-close | |
4041 The solo close paren of an argument list. @ref{Paren List Symbols}. | |
4042 @item stream-op | |
4043 Lines continuing a stream operator (C++ only). @ref{Literal | |
4044 Symbols}. @c @emph{FIXME!!! Can this not be moved somewhere better?} | |
4045 @item inclass | |
4046 The line is nested inside a class definition. @ref{Class Symbols}. | |
4047 @item cpp-macro | |
4048 The start of a preprocessor macro definition. @ref{Literal Symbols}. | |
4049 @item cpp-define-intro | |
4050 The first line inside a multiline preprocessor macro if | |
4051 @code{c-syntactic-indentation-in-macros} is set. @ref{Multiline Macro | |
4052 Symbols}. | |
4053 @item cpp-macro-cont | |
4054 All lines inside multiline preprocessor macros if | |
4055 @code{c-syntactic-indentation-in-macros} is @code{nil}. | |
4056 @ref{Multiline Macro Symbols}. | |
4057 @item friend | |
4058 A C++ friend declaration. @ref{Class Symbols}. | |
4059 @item objc-method-intro | |
4060 The first line of an Objective-C method definition. @ref{Objective-C | |
4061 Method Symbols}. | |
4062 @item objc-method-args-cont | |
4063 Lines continuing an Objective-C method definition. @ref{Objective-C | |
4064 Method Symbols}. | |
4065 @item objc-method-call-cont | |
4066 Lines continuing an Objective-C method call. @ref{Objective-C Method | |
4067 Symbols}. | |
4068 @item extern-lang-open | |
4069 Brace that opens an @code{extern} block (e.g. @code{extern "C" | |
4070 @{...@}}). @ref{External Scope Symbols}. | |
4071 @item extern-lang-close | |
4072 Brace that closes an @code{extern} block. @ref{External Scope | |
4073 Symbols}. | |
4074 @item inextern-lang | |
4075 Analogous to @code{inclass} syntactic symbol, but used inside | |
4076 @code{extern} blocks. @ref{External Scope Symbols}. | |
4077 @item namespace-open | |
4078 @itemx namespace-close | |
4079 @itemx innamespace | |
4080 These are analogous to the three @code{extern-lang} symbols above, but | |
4081 are returned for C++ namespace blocks. @ref{External Scope Symbols}. | |
4082 @item module-open | |
4083 @itemx module-close | |
4084 @itemx inmodule | |
4085 Analogous to the above, but for CORBA IDL @code{module} blocks. | |
4086 @ref{External Scope Symbols}. | |
4087 @item composition-open | |
4088 @itemx composition-close | |
4089 @itemx incomposition | |
4090 Analogous to the above, but for CORBA CIDL @code{composition} blocks. | |
4091 @ref{External Scope Symbols}. | |
4092 @item template-args-cont | |
4093 C++ template argument list continuations. @ref{Class Symbols}. | |
4094 @item inlambda | |
4095 Analogous to @code{inclass} syntactic symbol, but used inside lambda | |
4096 (i.e. anonymous) functions. Only used in Pike mode. @ref{Statement | |
4097 Block Symbols}. | |
4098 @item lambda-intro-cont | |
4099 Lines continuing the header of a lambda function, i.e. between the | |
4100 @code{lambda} keyword and the function body. Only used in Pike mode. | |
4101 @ref{Statement Block Symbols}. | |
4102 @item inexpr-statement | |
4103 A statement block inside an expression. The gcc C and C++ extension | |
4104 for this is recognized. It's also used for the special functions that | |
4105 take a statement block as an argument in Pike. @ref{Statement Block | |
4106 Symbols}. | |
4107 @item inexpr-class | |
4108 A class definition inside an expression. This is used for anonymous | |
4109 classes in Java. It's also used for anonymous array initializers in | |
4110 Java. @ref{Anonymous Class Symbol}. | |
4111 @end table | |
4112 | |
4113 @menu | |
4114 * Function Symbols:: | |
4115 * Class Symbols:: | |
4116 * Conditional Construct Symbols:: | |
4117 * Switch Statement Symbols:: | |
4118 * Brace List Symbols:: | |
4119 * External Scope Symbols:: | |
4120 * Paren List Symbols:: | |
4121 * Literal Symbols:: | |
4122 * Multiline Macro Symbols:: | |
4123 * Objective-C Method Symbols:: | |
4124 * Anonymous Class Symbol:: | |
4125 * Statement Block Symbols:: | |
4126 * K&R Symbols:: | |
4127 @end menu | |
4128 | |
4129 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4130 @node Function Symbols, Class Symbols, Syntactic Symbols, Syntactic Symbols | |
4131 @comment node-name, next, previous, up | |
4132 @subsection Function Symbols | |
4133 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4134 | |
4135 This example shows a typical function declaration. | |
4136 | |
4137 @example | |
4138 1: void | |
4139 2: swap( int& a, int& b ) | |
4140 3: @{ | |
4141 4: int tmp = a; | |
4142 5: a = b; | |
4143 6: b = tmp; | |
4144 7: int ignored = | |
4145 8: a + b; | |
4146 9: @} | |
4147 @end example | |
4148 | |
4149 @ssindex topmost-intro | |
4150 @ssindex topmost-intro-cont | |
4151 @ssindex defun-open | |
4152 @ssindex defun-close | |
4153 @ssindex defun-block-intro | |
4154 Line 1 shows a @code{topmost-intro} since it is the first line that | |
4155 introduces a top-level construct. Line 2 is a continuation of the | |
4156 top-level construct introduction so it has the syntax | |
4157 @code{topmost-intro-cont}. Line 3 shows a @code{defun-open} since it is | |
4158 the brace that opens a top-level function definition. Line 9 is the | |
4159 corresponding | |
4160 @code{defun-close} since it contains the brace that closes the top-level | |
4161 function definition. Line 4 is a @code{defun-block-intro}, i.e. it is | |
4162 the first line of a brace-block, enclosed in a | |
4163 top-level function definition. | |
4164 | |
4165 @ssindex statement | |
4166 @ssindex statement-cont | |
4167 Lines 5, 6, and 7 are all given @code{statement} syntax since there | |
4168 isn't much special about them. Note however that line 8 is given | |
4169 @code{statement-cont} syntax since it continues the statement begun | |
4170 on the previous line. | |
4171 | |
4172 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4173 @node Class Symbols, Conditional Construct Symbols, Function Symbols, Syntactic Symbols | |
4174 @comment node-name, next, previous, up | |
4175 @subsection Class related Symbols | |
4176 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4177 | |
4178 Here's an example which illustrates some C++ class syntactic symbols: | |
4179 | |
4180 @example | |
4181 1: class Bass | |
4182 2: : public Guitar, | |
4183 3: public Amplifiable | |
4184 4: @{ | |
4185 5: public: | |
4186 6: Bass() | |
4187 7: : eString( new BassString( 0.105 )), | |
4188 8: aString( new BassString( 0.085 )), | |
4189 9: dString( new BassString( 0.065 )), | |
4190 10: gString( new BassString( 0.045 )) | |
4191 11: @{ | |
4192 12: eString.tune( 'E' ); | |
4193 13: aString.tune( 'A' ); | |
4194 14: dString.tune( 'D' ); | |
4195 15: gString.tune( 'G' ); | |
4196 16: @} | |
4197 17: friend class Luthier; | |
4198 18: @}; | |
4199 @end example | |
4200 | |
4201 @ssindex class-open | |
4202 @ssindex class-close | |
4203 As in the previous example, line 1 has the @code{topmost-intro} syntax. | |
4204 Here however, the brace that opens a C++ class definition on line 4 is | |
4205 assigned the @code{class-open} syntax. Note that in C++, classes, | |
4206 structs, and unions are essentially equivalent syntactically (and are | |
4207 very similar semantically), so replacing the @code{class} keyword in the | |
4208 example above with @code{struct} or @code{union} would still result in a | |
4209 syntax of @code{class-open} for line 4 @footnote{This is the case even | |
4210 for C and Objective-C. For consistency, structs in all supported | |
4211 languages are syntactically equivalent to classes. Note however that | |
4212 the keyword @code{class} is meaningless in C and Objective-C.}. | |
4213 Similarly, line 18 is assigned @code{class-close} syntax. | |
4214 | |
4215 @ssindex inher-intro | |
4216 @ssindex inher-cont | |
4217 Line 2 introduces the inheritance list for the class so it is assigned | |
4218 the @code{inher-intro} syntax, and line 3, which continues the | |
4219 inheritance list is given @code{inher-cont} syntax. | |
4220 | |
4221 @ssindex access-label | |
4222 @ssindex inclass | |
4223 Hitting @kbd{C-c C-s} on line 5 shows the following analysis: | |
4224 | |
4225 @example | |
4226 ((inclass 58) (access-label 58)) | |
4227 @end example | |
4228 | |
4229 @noindent | |
4230 The primary syntactic symbol for this line is @code{access-label} as | |
4231 this a label keyword that specifies access protection in C++. However, | |
4232 because this line is also a top-level construct inside a class | |
4233 definition, the analysis actually shows two syntactic symbols. The | |
4234 other syntactic symbol assigned to this line is @code{inclass}. | |
4235 Similarly, line 6 is given both @code{inclass} and @code{topmost-intro} | |
4236 syntax: | |
4237 | |
4238 @example | |
4239 ((inclass 58) (topmost-intro 60)) | |
4240 @end example | |
4241 | |
4242 @ssindex member-init-intro | |
4243 @ssindex member-init-cont | |
4244 Line 7 introduces a C++ member initialization list and as such is given | |
4245 @code{member-init-intro} syntax. Note that in this case it is | |
4246 @emph{not} assigned @code{inclass} since this is not considered a | |
4247 top-level construct. Lines 8 through 10 are all assigned | |
4248 @code{member-init-cont} since they continue the member initialization | |
4249 list started on line 7. | |
4250 | |
4251 @cindex in-class inline methods | |
4252 @ssindex inline-open | |
4253 @ssindex inline-close | |
4254 Line 11's analysis is a bit more complicated: | |
4255 | |
4256 @example | |
4257 ((inclass 58) (inline-open)) | |
4258 @end example | |
4259 | |
4260 This line is assigned a syntax of both @code{inline-open} and | |
4261 @code{inclass} because it opens an @dfn{in-class} C++ inline method | |
4262 definition. This is distinct from, but related to, the C++ notion of an | |
4263 inline function in that its definition occurs inside an enclosing class | |
4264 definition, which in C++ implies that the function should be inlined. | |
4265 However, if the definition of the @code{Bass} constructor appeared | |
4266 outside the class definition, the construct would be given the | |
4267 @code{defun-open} syntax, even if the keyword @code{inline} appeared | |
4268 before the method name, as in: | |
4269 | |
4270 @example | |
4271 1: class Bass | |
4272 2: : public Guitar, | |
4273 3: public Amplifiable | |
4274 4: @{ | |
4275 5: public: | |
4276 6: Bass(); | |
4277 7: @}; | |
4278 8: | |
4279 9: inline | |
4280 10: Bass::Bass() | |
4281 11: : eString( new BassString( 0.105 )), | |
4282 12: aString( new BassString( 0.085 )), | |
4283 13: dString( new BassString( 0.065 )), | |
4284 14: gString( new BassString( 0.045 )) | |
4285 15: @{ | |
4286 16: eString.tune( 'E' ); | |
4287 17: aString.tune( 'A' ); | |
4288 18: dString.tune( 'D' ); | |
4289 19: gString.tune( 'G' ); | |
4290 20: @} | |
4291 @end example | |
4292 | |
4293 @ssindex friend | |
4294 Returning to the previous example, line 16 is given @code{inline-close} | |
4295 syntax, while line 12 is given @code{defun-block-open} syntax, and lines | |
4296 13 through 15 are all given @code{statement} syntax. Line 17 is | |
4297 interesting in that its syntactic analysis list contains three | |
4298 elements: | |
4299 | |
4300 @example | |
4301 ((inclass 58) (topmost-intro 380) (friend)) | |
4302 @end example | |
4303 | |
4304 The @code{friend} and @code{inline-open} syntactic symbols are | |
4305 modifiers that do not have anchor positions. | |
4306 | |
4307 @ssindex template-args-cont | |
4308 Template definitions introduce yet another syntactic symbol: | |
4309 | |
4310 @example | |
4311 1: ThingManager <int, | |
4312 2: Framework::Callback *, | |
4313 3: Mutex> framework_callbacks; | |
4314 @end example | |
4315 | |
4316 Here, line 1 is analyzed as a @code{topmost-intro}, but lines 2 and 3 | |
4317 are both analyzed as @code{template-args-cont} lines. | |
4318 | |
4319 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4320 @node Conditional Construct Symbols, Switch Statement Symbols, Class Symbols, Syntactic Symbols | |
4321 @comment node-name, next, previous, up | |
4322 @subsection Conditional Construct Symbols | |
4323 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4324 | |
4325 Here is a (totally contrived) example which illustrates how syntax is | |
4326 assigned to various conditional constructs: | |
4327 | |
4328 @example | |
4329 1: void spam( int index ) | |
4330 2: @{ | |
4331 3: for( int i=0; i<index; i++ ) | |
4332 4: @{ | |
4333 5: if( i == 10 ) | |
4334 6: do_something_special(); | |
4335 7: else | |
4336 8: silly_label: | |
4337 9: do_something( i ); | |
4338 10: @} | |
4339 11: do @{ | |
4340 12: another_thing( i-- ); | |
4341 13: @} | |
4342 14: while( i > 0 ); | |
4343 15: @} | |
4344 @end example | |
4345 | |
4346 Only the lines that illustrate new syntactic symbols will be discussed. | |
4347 | |
4348 @ssindex substatement-open | |
4349 @ssindex statement-block-intro | |
4350 @ssindex block-close | |
4351 Line 4 has a brace which opens a conditional's substatement block. It | |
4352 is thus assigned @code{substatement-open} syntax, and since line 5 is | |
4353 the first line in the substatement block, it is assigned | |
4354 @code{statement-block-intro} syntax. Line 10 contains the brace | |
4355 that closes the inner substatement block, and is therefore given the | |
4356 syntax @code{block-close}@footnote{@code{block-open} is used only for | |
4357 ``free-standing'' blocks, and is somewhat rare (@pxref{Literal | |
4358 Symbols} for an example.)}. Line 13 is treated the same way. | |
4359 | |
4360 @ssindex substatement | |
4361 Lines 6 and 9 are also substatements of conditionals, but since they | |
4362 don't start blocks they are given @code{substatement} syntax | |
4363 instead of @code{substatement-open}. | |
4364 | |
4365 @ssindex substatement-label | |
4366 Line 8 contains a label, which is normally given @code{label} syntax. | |
4367 This one is however a bit special since it's between a conditional and | |
4368 its substatement. It's analyzed as @code{substatement-label} to let you | |
4369 handle this rather odd case differently from normal labels. | |
4370 | |
4371 @ssindex else-clause | |
4372 @ssindex catch-clause | |
4373 Line 7 start with an @code{else} that matches the @code{if} statement on | |
4374 line 5. It is therefore given the @code{else-clause} syntax and is | |
4375 anchored on the matching @code{if}. The @code{try}-@code{catch} | |
4376 constructs in C++ and Java are treated this way too, except that | |
4377 @code{catch} and (in Java) @code{finally}, are marked with | |
4378 @code{catch-clause}. | |
4379 | |
4380 @ssindex do-while-closure | |
4381 The @code{while} construct on line 14 that closes a @code{do} | |
4382 conditional is given the special syntax @code{do-while-closure} if it | |
4383 appears on a line by itself. Note that if the @code{while} appeared on | |
4384 the same line as the preceding close brace, that line would still have | |
4385 @code{block-close} syntax. | |
4386 | |
4387 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4388 @node Switch Statement Symbols, Brace List Symbols, Conditional Construct Symbols, Syntactic Symbols | |
4389 @comment node-name, next, previous, up | |
4390 @subsection Switch Statement Symbols | |
4391 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4392 | |
4393 Switch statements have their own set of syntactic symbols. Here's an | |
4394 example: | |
4395 | |
4396 @example | |
4397 1: void spam( enum Ingredient i ) | |
4398 2: @{ | |
4399 3: switch( i ) @{ | |
4400 4: case Ham: | |
4401 5: be_a_pig(); | |
4402 6: break; | |
4403 7: case Salt: | |
4404 8: drink_some_water(); | |
4405 9: break; | |
4406 10: default: | |
4407 11: @{ | |
4408 12: what_is_it(); | |
4409 13: break; | |
4410 14: @} | |
4411 15: @} | |
4412 14: @} | |
4413 @end example | |
4414 | |
4415 @ssindex case-label | |
4416 @ssindex statement-case-intro | |
4417 @ssindex statement-case-open | |
4418 Here, lines 4, 7, and 10 are all assigned @code{case-label} syntax, | |
4419 while lines 5 and 8 are assigned @code{statement-case-intro}. Line 11 | |
4420 is treated slightly differently since it contains a brace that opens a | |
4421 block --- it is given @code{statement-case-open} syntax. | |
4422 | |
4423 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4424 @node Brace List Symbols, External Scope Symbols, Switch Statement Symbols, Syntactic Symbols | |
4425 @comment node-name, next, previous, up | |
4426 @subsection Brace List Symbols | |
4427 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4428 | |
4429 @cindex brace lists | |
4430 There are a set of syntactic symbols that are used to recognize | |
4431 constructs inside of brace lists. A brace list is defined as an | |
4432 @code{enum} or aggregate initializer list, such as might statically | |
4433 initialize an array of structs. The three special aggregate constructs | |
4434 in Pike, @code{(@{ @})}, @code{([ ])} and @code{(< >)}, are treated as | |
4435 brace lists too. An example: | |
4436 | |
4437 @example | |
4438 1: static char* ingredients[] = | |
4439 2: @{ | |
4440 3: "Ham", | |
4441 4: "Salt", | |
4442 5: NULL | |
4443 6: @}; | |
4444 @end example | |
4445 | |
4446 @ssindex brace-list-open | |
4447 @ssindex brace-list-intro | |
4448 @ssindex brace-list-close | |
4449 @ssindex brace-list-entry | |
4450 Following convention, line 2 in this example is assigned | |
4451 @code{brace-list-open} syntax, and line 3 is assigned | |
4452 @code{brace-list-intro} syntax. Likewise, line 6 is assigned | |
4453 @code{brace-list-close} syntax. Lines 4 and 5 however, are assigned | |
4454 @code{brace-list-entry} syntax, as would all subsequent lines in this | |
4455 initializer list. | |
4456 | |
4457 @ssindex brace-entry-open | |
4458 Your static initializer might be initializing nested structures, for | |
4459 example: | |
4460 | |
4461 @example | |
4462 1: struct intpairs[] = | |
4463 2: @{ | |
4464 3: @{ 1, 2 @}, | |
4465 4: @{ | |
4466 5: 3, | |
4467 6: 4 | |
4468 7: @} | |
4469 8: @{ 1, | |
4470 9: 2 @}, | |
4471 10: @{ 3, 4 @} | |
4472 11: @}; | |
4473 @end example | |
4474 | |
4475 Here, you've already seen the analysis of lines 1, 2, 3, and 11. On | |
4476 line 4, things get interesting; this line is assigned | |
4477 @code{brace-entry-open} syntactic symbol because it's a bracelist entry | |
4478 line that starts with an open brace. Lines 5 and 6 (and line 9) are | |
4479 pretty standard, and line 7 is a @code{brace-list-close} as you'd | |
4480 expect. Once again, line 8 is assigned as @code{brace-entry-open} as is | |
4481 line 10. | |
4482 | |
4483 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4484 @node External Scope Symbols, Paren List Symbols, Brace List Symbols, Syntactic Symbols | |
4485 @comment node-name, next, previous, up | |
4486 @subsection External Scope Symbols | |
4487 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4488 | |
4489 External language definition blocks also have their own syntactic | |
4490 symbols. In this example: | |
4491 | |
4492 @example | |
4493 1: extern "C" | |
4494 2: @{ | |
4495 3: int thing_one( int ); | |
4496 4: int thing_two( double ); | |
4497 5: @} | |
4498 @end example | |
4499 | |
4500 @ssindex extern-lang-open | |
4501 @ssindex extern-lang-close | |
4502 @ssindex inextern-lang | |
4503 @ssindex inclass | |
4504 @noindent | |
4505 line 2 is given the @code{extern-lang-open} syntax, while line 5 is given | |
4506 the @code{extern-lang-close} syntax. The analysis for line 3 yields: | |
4507 | |
4508 @example | |
4509 ((inextern-lang) (topmost-intro 14)) | |
4510 @end example | |
4511 | |
4512 @noindent | |
4513 where @code{inextern-lang} is a modifier similar in purpose to | |
4514 @code{inclass}. | |
4515 | |
4516 There are various other top level blocks like @code{extern}, and they | |
4517 are all treated in the same way except that the symbols are named after | |
4518 the keyword that introduces the block. E.g. C++ namespace blocks get | |
4519 the three symbols @code{namespace-open}, @code{namespace-close} and | |
4520 @code{innamespace}. The currently recognized top level blocks are: | |
4521 | |
4522 @table @asis | |
4523 @item @code{extern-lang-open}, @code{extern-lang-close}, @code{inextern-lang} | |
4524 @code{extern} blocks in C and C++.@footnote{These should logically be | |
4525 named @code{extern-open}, @code{extern-close} and @code{inextern}, but | |
4526 that isn't the case for historical reasons.} | |
4527 | |
4528 @item @code{namespace-open}, @code{namespace-close}, @code{innamespace} | |
4529 @ssindex namespace-open | |
4530 @ssindex namespace-close | |
4531 @ssindex innamespace | |
4532 @code{namespace} blocks in C++. | |
4533 | |
4534 @item @code{module-open}, @code{module-close}, @code{inmodule} | |
4535 @ssindex module-open | |
4536 @ssindex module-close | |
4537 @ssindex inmodule | |
4538 @code{module} blocks in CORBA IDL. | |
4539 | |
4540 @item @code{composition-open}, @code{composition-close}, @code{incomposition} | |
4541 @ssindex composition-open | |
4542 @ssindex composition-close | |
4543 @ssindex incomposition | |
4544 @code{composition} blocks in CORBA CIDL. | |
4545 @end table | |
4546 | |
4547 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4548 @node Paren List Symbols, Literal Symbols, External Scope Symbols, Syntactic Symbols | |
4549 @comment node-name, next, previous, up | |
4550 @subsection Parenthesis (Argument) List Symbols | |
4551 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4552 | |
4553 A number of syntactic symbols are associated with parenthesis lists, | |
4554 a.k.a argument lists, as found in function declarations and function | |
4555 calls. This example illustrates these: | |
4556 | |
4557 @example | |
4558 1: void a_function( int line1, | |
4559 2: int line2 ); | |
4560 3: | |
4561 4: void a_longer_function( | |
4562 5: int line1, | |
4563 6: int line2 | |
4564 7: ); | |
4565 8: | |
4566 9: void call_them( int line1, int line2 ) | |
4567 10: @{ | |
4568 11: a_function( | |
4569 12: line1, | |
4570 13: line2 | |
4571 14: ); | |
4572 15: | |
4573 16: a_longer_function( line1, | |
4574 17: line2 ); | |
4575 18: @} | |
4576 @end example | |
4577 | |
4578 @ssindex arglist-intro | |
4579 @ssindex arglist-close | |
4580 Lines 5 and 12 are assigned @code{arglist-intro} syntax since they are | |
4581 the first line following the open parenthesis, and lines 7 and 14 are | |
4582 assigned @code{arglist-close} syntax since they contain the parenthesis | |
4583 that closes the argument list. | |
4584 | |
4585 @ssindex arglist-cont-nonempty | |
4586 @ssindex arglist-cont | |
4587 Lines that continue argument lists can be assigned one of two syntactic | |
4588 symbols. For example, Lines 2 and 17 | |
4589 are assigned @code{arglist-cont-nonempty} syntax. What this means | |
4590 is that they continue an argument list, but that the line containing the | |
4591 parenthesis that opens the list is @emph{not empty} following the open | |
4592 parenthesis. Contrast this against lines 6 and 13 which are assigned | |
4593 @code{arglist-cont} syntax. This is because the parenthesis that opens | |
4594 their argument lists is the last character on that line. | |
4595 | |
4596 Syntactic elements with @code{arglist-intro}, | |
4597 @code{arglist-cont-nonempty}, and @code{arglist-close} contain two | |
4598 buffer positions: the anchor position (the beginning of the | |
4599 declaration or statement) and the position of the open parenthesis. | |
4600 The latter position can be used in a line-up function (@pxref{Line-Up | |
4601 Functions}). | |
4602 | |
4603 Note that there is no @code{arglist-open} syntax. This is because any | |
4604 parenthesis that opens an argument list, appearing on a separate line, | |
4605 is assigned the @code{statement-cont} syntax instead. | |
4606 | |
4607 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4608 @node Literal Symbols, Multiline Macro Symbols, Paren List Symbols, Syntactic Symbols | |
4609 @comment node-name, next, previous, up | |
4610 @subsection Comment String Label and Macro Symbols | |
4611 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4612 | |
4613 A few miscellaneous syntactic symbols that haven't been previously | |
4614 covered are illustrated by this C++ example: | |
4615 | |
4616 @example | |
4617 1: void Bass::play( int volume ) | |
4618 2: const | |
4619 3: @{ | |
4620 4: /* this line starts a multiline | |
4621 5: * comment. This line should get `c' syntax */ | |
4622 6: | |
4623 7: char* a_multiline_string = "This line starts a multiline \ | |
4624 8: string. This line should get `string' syntax."; | |
4625 9: | |
4626 10: note: | |
4627 11: @{ | |
4628 12: #ifdef LOCK | |
4629 13: Lock acquire(); | |
4630 14: #endif // LOCK | |
4631 15: slap_pop(); | |
4632 16: cout << "I played " | |
4633 17: << "a note\n"; | |
4634 18: @} | |
4635 19: @} | |
4636 @end example | |
4637 | |
4638 The lines to note in this example include: | |
4639 | |
4640 @itemize @bullet | |
4641 @item | |
4642 @ssindex func-decl-cont | |
4643 Line 2 is assigned the @code{func-decl-cont} syntax. | |
4644 | |
4645 @item | |
4646 @ssindex comment-intro | |
4647 Line 4 is assigned both @code{defun-block-intro} @emph{and} | |
4648 @code{comment-intro} syntax. A syntactic element with | |
4649 @code{comment-intro} has no anchor point --- It is always accompanied | |
4650 by another syntactic element which does have one. | |
4651 | |
4652 @item | |
4653 @ssindex c | |
4654 Line 5 is assigned @code{c} syntax. | |
4655 | |
4656 @item | |
4657 @cindex syntactic whitespace | |
4658 Line 6 which, even though it contains nothing but whitespace, is | |
4659 assigned @code{defun-block-intro}. Note that the appearance of the | |
4660 comment on lines 4 and 5 do not cause line 6 to be assigned | |
4661 @code{statement} syntax because comments are considered to be | |
4662 @dfn{syntactic whitespace}, which are ignored when analyzing | |
4663 code. | |
4664 | |
4665 @item | |
4666 @ssindex string | |
4667 Line 8 is assigned @code{string} syntax. | |
4668 | |
4669 @item | |
4670 @ssindex label | |
4671 Line 10 is assigned @code{label} syntax. | |
4672 | |
4673 @item | |
4674 @ssindex block-open | |
4675 Line 11 is assigned @code{block-open} as well as @code{statement} | |
4676 syntax. A @code{block-open} syntactic element doesn't have an anchor | |
4677 position, since it always appears with another syntactic element which | |
4678 does have one. | |
4679 | |
4680 @item | |
4681 @ssindex cpp-macro | |
4682 Lines 12 and 14 are assigned @code{cpp-macro} syntax in addition to the | |
4683 normal syntactic symbols (@code{statement-block-intro} and | |
4684 @code{statement}, respectively). Normally @code{cpp-macro} is | |
4685 configured to cancel out the normal syntactic context to make all | |
4686 preprocessor directives stick to the first column, but that's easily | |
4687 changed if you want preprocessor directives to be indented like the rest | |
4688 of the code. Like @code{comment-intro}, a syntactic element with | |
4689 @code{cpp-macro} doesn't contain an anchor position. | |
4690 | |
4691 @item | |
4692 @ssindex stream-op | |
4693 Line 17 is assigned @code{stream-op} syntax. | |
4694 @end itemize | |
4695 | |
4696 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4697 @node Multiline Macro Symbols, Objective-C Method Symbols, Literal Symbols, Syntactic Symbols | |
4698 @comment node-name, next, previous, up | |
4699 @subsection Multiline Macro Symbols | |
4700 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4701 | |
4702 @cindex multiline macros | |
4703 @cindex syntactic whitespace | |
4704 @ssindex cpp-define-intro | |
4705 @ssindex cpp-macro-cont | |
4706 Multiline preprocessor macro definitions are normally handled just like | |
4707 other code, i.e. the lines inside them are indented according to the | |
4708 syntactic analysis of the preceding lines inside the macro. The first | |
4709 line inside a macro definition (i.e. the line after the starting line of | |
4710 the cpp directive itself) gets @code{cpp-define-intro}. In this example: | |
4711 | |
4712 @example | |
4713 1: #define LIST_LOOP(cons, listp) \ | |
4714 2: for (cons = listp; !NILP (cons); cons = XCDR (cons)) \ | |
4715 3: if (!CONSP (cons)) \ | |
4716 4: signal_error ("Invalid list format", listp); \ | |
4717 5: else | |
4718 @end example | |
4719 | |
4720 @noindent | |
4721 line 1 is given the syntactic symbol @code{cpp-macro}. The first line | |
4722 of a cpp directive is always given that symbol. Line 2 is given | |
4723 @code{cpp-define-intro}, so that you can give the macro body as a whole | |
4724 some extra indentation. Lines 3 through 5 are then analyzed as normal | |
4725 code, i.e. @code{substatement} on lines 3 and 4, and @code{else-clause} | |
4726 on line 5. | |
4727 | |
4728 The syntactic analysis inside macros can be turned off with | |
4729 @code{c-syntactic-indentation-in-macros} (@pxref{Custom Macros}). In | |
4730 that case, lines 2 through 5 would all be given @code{cpp-macro-cont} | |
4731 with an anchor position pointing to the @code{#} which starts the cpp | |
4732 directive@footnote{This is how @ccmode{} 5.28 and earlier analyzed | |
4733 macros.}. | |
4734 | |
4735 @xref{Custom Macros}, for more info about the treatment of macros. | |
4736 | |
4737 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4738 @node Objective-C Method Symbols, Anonymous Class Symbol, Multiline Macro Symbols, Syntactic Symbols | |
4739 @comment node-name, next, previous, up | |
4740 @subsection Objective-C Method Symbols | |
4741 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4742 | |
4743 In Objective-C buffers, there are three additional syntactic symbols | |
4744 assigned to various message calling constructs. Here's an example | |
4745 illustrating these: | |
4746 | |
4747 @example | |
4748 1: - (void)setDelegate:anObject | |
4749 2: withStuff:stuff | |
4750 3: @{ | |
4751 4: [delegate masterWillRebind:self | |
4752 5: toDelegate:anObject | |
4753 6: withExtraStuff:stuff]; | |
4754 7: @} | |
4755 @end example | |
4756 | |
4757 @ssindex objc-method-intro | |
4758 @ssindex objc-method-args-cont | |
4759 @ssindex objc-method-call-cont | |
4760 Here, line 1 is assigned @code{objc-method-intro} syntax, and line 2 is | |
4761 assigned @code{objc-method-args-cont} syntax. Lines 5 and 6 are both | |
4762 assigned @code{objc-method-call-cont} syntax. | |
4763 | |
4764 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4765 @node Anonymous Class Symbol, Statement Block Symbols, Objective-C Method Symbols, Syntactic Symbols | |
4766 @comment node-name, next, previous, up | |
4767 @subsection Anonymous Class Symbol (Java) | |
4768 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4769 | |
4770 Java has a concept of anonymous classes which can look something like | |
4771 this: | |
4772 | |
4773 @example | |
4774 1: public void watch(Observable o) @{ | |
4775 2: o.addObserver(new Observer() @{ | |
4776 3: public void update(Observable o, Object arg) @{ | |
4777 4: history.addElement(arg); | |
4778 5: @} | |
4779 6: @}); | |
4780 7: @} | |
4781 @end example | |
4782 | |
4783 @ssindex inexpr-class | |
4784 The brace following the @code{new} operator opens the anonymous class. | |
4785 Lines 3 and 6 are assigned the @code{inexpr-class} syntax, besides the | |
4786 @code{inclass} symbol used in normal classes. Thus, the class will be | |
4787 indented just like a normal class, with the added indentation given to | |
4788 @code{inexpr-class}. An @code{inexpr-class} syntactic element doesn't | |
4789 have an anchor position. | |
4790 | |
4791 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4792 @node Statement Block Symbols, K&R Symbols, Anonymous Class Symbol, Syntactic Symbols | |
4793 @comment node-name, next, previous, up | |
4794 @subsection Statement Block Symbols | |
4795 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4796 | |
4797 There are a few occasions where a statement block might be used inside | |
4798 an expression. One is in C or C++ code using the gcc extension for | |
4799 this, e.g: | |
4800 | |
4801 @example | |
4802 1: int res = (@{ | |
4803 2: int y = foo (); int z; | |
4804 3: if (y > 0) z = y; else z = - y; | |
4805 4: z; | |
4806 5: @}); | |
4807 @end example | |
4808 | |
4809 @ssindex inexpr-statement | |
4810 Lines 2 and 5 get the @code{inexpr-statement} syntax, besides the | |
4811 symbols they'd get in a normal block. Therefore, the indentation put on | |
4812 @code{inexpr-statement} is added to the normal statement block | |
4813 indentation. An @code{inexpr-statement} syntactic element doesn't | |
4814 contain an anchor position. | |
4815 | |
4816 In Pike code, there are a few other situations where blocks occur inside | |
4817 statements, as illustrated here: | |
4818 | |
4819 @example | |
4820 1: array itgob() | |
4821 2: @{ | |
4822 3: string s = map (backtrace()[-2][3..], | |
4823 4: lambda | |
4824 5: (mixed arg) | |
4825 6: @{ | |
4826 7: return sprintf ("%t", arg); | |
4827 8: @}) * ", " + "\n"; | |
4828 9: return catch @{ | |
4829 10: write (s + "\n"); | |
4830 11: @}; | |
4831 12: @} | |
4832 @end example | |
4833 | |
4834 @ssindex inlambda | |
4835 @ssindex lambda-intro-cont | |
4836 Lines 4 through 8 contain a lambda function, which @ccmode{} recognizes | |
4837 by the @code{lambda} keyword. If the function argument list is put | |
4838 on a line of its own, as in line 5, it gets the @code{lambda-intro-cont} | |
4839 syntax. The function body is handled as an inline method body, with the | |
4840 addition of the @code{inlambda} syntactic symbol. This means that line | |
4841 6 gets @code{inlambda} and @code{inline-open}, and line 8 gets | |
4842 @code{inline-close}@footnote{You might wonder why it doesn't get | |
4843 @code{inlambda} too. It's because the closing brace is relative to the | |
4844 opening brace, which stands on its own line in this example. If the | |
4845 opening brace was hanging on the previous line, then the closing brace | |
4846 would get the @code{inlambda} syntax too to be indented correctly.}. | |
4847 | |
4848 @ssindex inexpr-statement | |
4849 On line 9, @code{catch} is a special function taking a statement block | |
4850 as its argument. The block is handled as an in-expression statement | |
4851 with the @code{inexpr-statement} syntax, just like the gcc extended C | |
4852 example above. The other similar special function, @code{gauge}, is | |
4853 handled like this too. | |
4854 | |
4855 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4856 @node K&R Symbols, , Statement Block Symbols, Syntactic Symbols | |
4857 @comment node-name, next, previous, up | |
4858 @subsection K&R Symbols | |
4859 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4860 | |
4861 @ssindex knr-argdecl-intro | |
4862 @ssindex knr-argdecl | |
4863 Two other syntactic symbols can appear in old style, non-prototyped C | |
4864 code @footnote{a.k.a. K&R C, or Kernighan & Ritchie C}: | |
4865 | |
4866 @example | |
4867 1: int add_three_integers(a, b, c) | |
4868 2: int a; | |
4869 3: int b; | |
4870 4: int c; | |
4871 5: @{ | |
4872 6: return a + b + c; | |
4873 7: @} | |
4874 @end example | |
4875 | |
4876 Here, line 2 is the first line in an argument declaration list and so is | |
4877 given the @code{knr-argdecl-intro} syntactic symbol. Subsequent lines | |
4878 (i.e. lines 3 and 4 in this example), are given @code{knr-argdecl} | |
4879 syntax. | |
4880 | |
4881 | |
4882 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4883 @node Indentation Calculation, , Syntactic Symbols, Indentation Engine Basics | |
4884 @comment node-name, next, previous, up | |
4885 @section Indentation Calculation | |
4886 @cindex indentation | |
4887 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4888 | |
4889 Indentation for a line is calculated from the syntactic context | |
4890 (@pxref{Syntactic Analysis}). | |
4891 | |
4892 First, a buffer position is found whose column will be the base for the | |
4893 indentation calculation. It's the anchor position in the first | |
4894 syntactic element that provides one that is used. If no syntactic | |
4895 element has an anchor position then column zero is used. | |
4896 | |
4897 Second, the syntactic symbols in each syntactic element are looked up | |
4898 in the @code{c-offsets-alist} style variable | |
4899 (@pxref{c-offsets-alist}), which is an association list of syntactic | |
4900 symbols and the offsets to apply for those symbols. These offsets are | |
4901 added together with the base column to produce the new indentation | |
4902 column. | |
4903 | |
4904 Let's use our two code examples above to see how this works. Here is | |
4905 our first example again: | |
4906 | |
4907 @example | |
4908 1: void swap( int& a, int& b ) | |
4909 2: @{ | |
4910 3: int tmp = a; | |
4911 4: a = b; | |
4912 5: b = tmp; | |
4913 6: @} | |
4914 @end example | |
4915 | |
4916 Let's say point is on line 3 and we hit the @key{TAB} key to reindent | |
4917 the line. The syntactic context for that line is: | |
4918 | |
4919 @example | |
4920 ((defun-block-intro 29)) | |
4921 @end example | |
4922 | |
4923 @noindent | |
4924 Since buffer position 29 is the first and only anchor position in the | |
4925 list, @ccmode{} goes there and asks for the current column. This brace | |
4926 is in column zero, so @ccmode{} uses @samp{0} as the base column. | |
4927 | |
4928 Next, @ccmode{} looks up @code{defun-block-intro} in the | |
4929 @code{c-offsets-alist} style variable. Let's say it finds the value | |
4930 @samp{4}; it adds this to the base column @samp{0}, yielding a running | |
4931 total indentation of 4 spaces. | |
4932 | |
4933 Since there is only one syntactic element on the list for this line, | |
4934 indentation calculation is complete, and the total indentation for the | |
4935 line is 4 spaces. | |
4936 | |
4937 Here's another example: | |
4938 | |
4939 @example | |
4940 1: int add( int val, int incr, int doit ) | |
4941 2: @{ | |
4942 3: if( doit ) | |
4943 4: @{ | |
4944 5: return( val + incr ); | |
4945 6: @} | |
4946 7: return( val ); | |
4947 8: @} | |
4948 @end example | |
4949 | |
4950 If we were to hit @kbd{TAB} on line 4 in the above example, the same | |
4951 basic process is performed, despite the differences in the syntactic | |
4952 context. The context for this line is: | |
4953 | |
4954 @example | |
4955 ((substatement-open 46)) | |
4956 @end example | |
4957 | |
4958 Here, @ccmode{} goes to buffer position 46, which is the @samp{i} in | |
4959 @code{if} on line 3. This character is in the fourth column on that | |
4960 line so the base column is @samp{4}. Then @ccmode{} looks up the | |
4961 @code{substatement-open} symbol in @code{c-offsets-alist}. Let's say it | |
4962 finds the value @samp{4}. It's added with the base column and yields an | |
4963 indentation for the line of 8 spaces. | |
4964 | |
4965 Simple, huh? | |
4966 | |
4967 Actually, it's a bit more complicated than that since the entries on | |
4968 @code{c-offsets-alist} can be much more than plain offsets. | |
4969 @xref{c-offsets-alist}, for the full story. | |
4970 | |
4971 Anyway, the mode usually just does The Right Thing without you having to | |
4972 think about it in this much detail. But when customizing indentation, | |
4973 it's helpful to understand the general indentation model being used. | |
4974 | |
4975 As you configure @ccmode{}, you might want to set the variable | |
4976 @code{c-echo-syntactic-information-p} to non-@code{nil} so that the | |
4977 syntactic context and calculated offset always is echoed in the | |
4978 minibuffer when you hit @kbd{TAB}. | |
4979 | |
4980 | |
4981 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4982 @node Customizing Indentation, Custom Macros, Indentation Engine Basics, Top | |
4983 @comment node-name, next, previous, up | |
4984 @chapter Customizing Indentation | |
4985 @cindex customization, indentation | |
4986 @cindex indentation | |
4987 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
4988 | |
4989 The principal variable for customizing indentation is the style | |
4990 variable @code{c-offsets-alist}, which gives an @dfn{offset} (an | |
4991 indentation rule) for each syntactic symbol. Its structure and | |
4992 semantics are completely described in @ref{c-offsets-alist}. The | |
4993 various ways you can set the variable, including the use of the | |
4994 @ccmode{} style system, are described in @ref{Config Basics} and its | |
4995 sections, in particular @ref{Style Variables}. | |
4996 | |
4997 The simplest and most used kind of ``offset'' setting in | |
4998 @code{c-offsets-alist} is in terms of multiples of | |
4999 @code{c-basic-offset}: | |
5000 | |
5001 @defopt c-basic-offset | |
5002 @vindex basic-offset (c-) | |
5003 This style variable holds the basic offset between indentation levels. | |
5004 It's factory default is 4, but all the built-in styles set it | |
5005 themselves, to some value between 2 (for @code{gnu} style) and 8 (for | |
5006 @code{bsd}, @code{linux}, and @code{python} styles). | |
5007 @end defopt | |
5008 | |
5009 The most flexible ``offset'' setting you can make in | |
5010 @code{c-offsets-alist} is a line-up function (or even a list of them), | |
5011 either one supplied by @ccmode{} (@pxref{Line-Up Functions}) or one | |
5012 you write yourself (@pxref{Custom Line-Up}). | |
5013 | |
5014 Finally, in @ref{Other Indentation} you'll find the tool of last | |
5015 resort: a hook which is called after a line has been indented. You | |
5016 can install functions here to make ad-hoc adjustments to any line's | |
5017 indentation. | |
5018 | |
5019 @menu | |
5020 * c-offsets-alist:: | |
5021 * Interactive Customization:: | |
5022 * Line-Up Functions:: | |
5023 * Custom Line-Up:: | |
5024 * Other Indentation:: | |
5025 @end menu | |
5026 | |
5027 | |
5028 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5029 @node c-offsets-alist, Interactive Customization, Customizing Indentation, Customizing Indentation | |
5030 @comment node-name, next, previous, up | |
5031 @section c-offsets-alist | |
5032 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5033 | |
5034 This section explains the structure and semantics of the style | |
5035 variable @code{c-offset-alist}, the principal variable for configuring | |
5036 indentation. Details of how to set it up, and its relationship to | |
5037 @ccmode{}'s style system are given in @ref{Style Variables}. | |
5038 | |
5039 @defopt c-offsets-alist | |
5040 @vindex offsets-alist (c-) | |
5041 This is an alist which associates an offset with each syntactic | |
5042 symbol. This @dfn{offset} is a rule specifying how to indent a line | |
5043 whose syntactic context matches the symbol. @xref{Syntactic | |
5044 Analysis}. | |
5045 | |
5046 Note that the buffer-local binding of this alist in a @ccmode{} buffer | |
5047 contains an entry for @emph{every} syntactic symbol. Its global | |
5048 binding and its settings within style specifications usually contain | |
5049 only a few entries. @xref{Style Variables}. | |
5050 | |
5051 The offset specification associated with any particular syntactic | |
5052 symbol can be an integer, a variable name, a vector, a function or | |
5053 lambda expression, a list, or one of the following special symbols: | |
5054 @code{+}, @code{-}, @code{++}, @code{--}, @code{*}, or @code{/}. The | |
5055 meanings of these values are described in detail below. | |
5056 | |
5057 Here is an example fragment of a @code{c-offsets-alist}, showing some | |
5058 of these kinds of offsets: | |
5059 | |
5060 @example | |
5061 ((statement . 0) | |
5062 (substatement . +) | |
5063 (cpp-macro . [0]) | |
5064 (topmost-intro-cont . c-lineup-topmost-intro-cont) | |
5065 (statement-block-intro . (add c-lineup-whitesmith-in-block | |
5066 c-indent-multi-line-block)) | |
5067 @dots{} | |
5068 @*) | |
5069 @end example | |
5070 @end defopt | |
5071 | |
5072 @deffn Command c-set-offset (@kbd{C-c C-o}) | |
5073 @findex set-offset (c-) | |
5074 @kindex C-c C-o | |
5075 This command changes the entry for a syntactic symbol in the current | |
5076 binding of @code{c-offsets-alist}, or it inserts a new entry if there | |
5077 isn't already one for that syntactic symbol. | |
5078 | |
5079 You can use @code{c-set-offsets} interactively within a @ccmode{} | |
5080 buffer to make experimental changes to your indentation settings. | |
5081 @kbd{C-c C-o} prompts you for the syntactic symbol to change | |
5082 (defaulting to that of the current line) and the new offset | |
5083 (defaulting to the current offset). | |
5084 | |
5085 @code{c-set-offsets} takes two arguments when used programmatically: | |
5086 @var{symbol}, the syntactic element symbol to change and @var{offset}, | |
5087 the new offset for that syntactic element. You can call the command | |
5088 in your @file{.emacs} to change the global binding of | |
5089 @code{c-offsets-alist} (@pxref{Style Variables}); you can use it in a | |
5090 hook function to make changes from the current style. @ccmode{} | |
5091 itself uses this function when initializing styles. | |
5092 @end deffn | |
5093 | |
5094 @cindex offset specification | |
5095 The ``offset specifications'' in @code{c-offsets-alist} can be any of | |
5096 the following: | |
5097 | |
5098 @table @asis | |
5099 @item An integer | |
5100 The integer specifies a relative offset. All relative | |
5101 offsets@footnote{The syntactic context @code{@w{((defun-block-intro | |
5102 2724) (comment-intro))}} would likely have two relative offsets.} will | |
5103 be added together and used to calculate the indentation relative to an | |
5104 anchor position earlier in the buffer. @xref{Indentation | |
5105 Calculation}, for details. Most of the time, it's probably better to | |
5106 use one of the special symbols like @code{+} than an integer (apart | |
5107 from zero). | |
5108 | |
5109 @item One of the symbols @code{+}, @code{-}, @code{++}, @code{--}, @code{*}, or @code{/} | |
5110 These special symbols describe a relative offset in multiples of | |
5111 @code{c-basic-offset}: | |
5112 | |
5113 By defining a style's indentation in terms of @code{c-basic-offset}, | |
5114 you can change the amount of whitespace given to an indentation level | |
5115 while maintaining the same basic shape of your code. Here are the | |
5116 values that the special symbols correspond to: | |
5117 | |
5118 @table @code | |
5119 @item + | |
5120 @code{c-basic-offset} times 1 | |
5121 @item - | |
5122 @code{c-basic-offset} times -1 | |
5123 @item ++ | |
5124 @code{c-basic-offset} times 2 | |
5125 @item -- | |
5126 @code{c-basic-offset} times -2 | |
5127 @item * | |
5128 @code{c-basic-offset} times 0.5 | |
5129 @item / | |
5130 @code{c-basic-offset} times -0.5 | |
5131 @end table | |
5132 | |
5133 @item A vector | |
5134 The first element of the vector, an integer, sets the absolute | |
5135 indentation column. This will override any previously calculated | |
5136 indentation, but won't override relative indentation calculated from | |
5137 syntactic elements later on in the syntactic context of the line being | |
5138 indented. @xref{Indentation Calculation}. Any elements in the vector | |
5139 beyond the first will be ignored. | |
5140 | |
5141 @item A function or lambda expression | |
5142 The function will be called and its return value will in turn be | |
5143 evaluated as an offset specification. Functions are useful when more | |
5144 context than just the syntactic symbol is needed to get the desired | |
5145 indentation. @xref{Line-Up Functions}, and @ref{Custom Line-Up}, for | |
5146 details about them. | |
5147 | |
5148 @item A symbol with a variable binding | |
5149 If the symbol also has a function binding, the function takes | |
5150 precedence over the variable. Otherwise the value of the variable is | |
5151 used. It must be an integer (which is used as relative offset) or a | |
5152 vector (an absolute offset). | |
5153 | |
5154 @item A list | |
5155 The offset can also be a list containing several offset | |
5156 specifications; these are evaluated recursively and combined. A list | |
5157 is typically only useful when some of the offsets are line-up | |
5158 functions. A common strategy is calling a sequence of functions in | |
5159 turn until one of them recognizes that it is appropriate for the | |
5160 source line and returns a non-@code{nil} value. | |
5161 | |
5162 @code{nil} values are always ignored when the offsets are combined. | |
5163 The first element of the list specifies the method of combining the | |
5164 non-@code{nil} offsets from the remaining elements: | |
5165 | |
5166 @table @code | |
5167 @item first | |
5168 Use the first offset that doesn't evaluate to @code{nil}. Subsequent | |
5169 elements of the list don't get evaluated. | |
5170 @item min | |
5171 Use the minimum of all the offsets. All must be either relative or | |
5172 absolute - they can't be mixed. | |
5173 @item max | |
5174 Use the maximum of all the offsets. All must be either relative or | |
5175 absolute - they can't be mixed. | |
5176 @item add | |
5177 Add all the evaluated offsets together. Exactly one of them may be | |
5178 absolute, in which case the result is absolute. Any relative offsets | |
5179 that preceded the absolute one in the list will be ignored in that case. | |
5180 @end table | |
5181 | |
5182 As a compatibility measure, if the first element is none of the above | |
5183 then it too will be taken as an offset specification and the whole list | |
5184 will be combined according to the method @code{first}. | |
5185 @end table | |
5186 | |
5187 @vindex c-strict-syntax-p | |
5188 @vindex strict-syntax-p (c-) | |
5189 If an offset specification evaluates to @code{nil}, then a relative | |
5190 offset of 0 (zero) is used@footnote{There is however a variable | |
5191 @code{c-strict-syntax-p} that when set to non-@code{nil} will cause an | |
5192 error to be signaled in that case. It's now considered obsolete since | |
5193 it doesn't work well with some of the alignment functions that return | |
5194 @code{nil} instead of zero. You should therefore leave | |
5195 @code{c-strict-syntax-p} set to @code{nil}.}. | |
5196 | |
5197 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5198 @node Interactive Customization, Line-Up Functions, c-offsets-alist, Customizing Indentation | |
5199 @comment node-name, next, previous, up | |
5200 @section Interactive Customization | |
5201 @cindex customization, interactive | |
5202 @cindex interactive customization | |
5203 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5204 | |
5205 As an example of how to customize indentation, let's change the | |
5206 style of this example@footnote{In this and subsequent examples, the | |
5207 original code is formatted using the @samp{gnu} style unless otherwise | |
5208 indicated. @xref{Styles}.}: | |
5209 | |
5210 @example | |
5211 @group | |
5212 1: int add( int val, int incr, int doit ) | |
5213 2: @{ | |
5214 3: if( doit ) | |
5215 4: @{ | |
5216 5: return( val + incr ); | |
5217 6: @} | |
5218 7: return( val ); | |
5219 8: @} | |
5220 @end group | |
5221 @end example | |
5222 | |
5223 @noindent | |
5224 to: | |
5225 | |
5226 @example | |
5227 @group | |
5228 1: int add( int val, int incr, int doit ) | |
5229 2: @{ | |
5230 3: if( doit ) | |
5231 4: @{ | |
5232 5: return( val + incr ); | |
5233 6: @} | |
5234 7: return( val ); | |
5235 8: @} | |
5236 @end group | |
5237 @end example | |
5238 | |
5239 In other words, we want to change the indentation of braces that open a | |
5240 block following a condition so that the braces line up under the | |
5241 conditional, instead of being indented. Notice that the construct we | |
5242 want to change starts on line 4. To change the indentation of a line, | |
5243 we need to see which syntactic symbols affect the offset calculations | |
5244 for that line. Hitting @kbd{C-c C-s} on line 4 yields: | |
5245 | |
5246 @example | |
5247 ((substatement-open 44)) | |
5248 @end example | |
5249 | |
5250 @noindent | |
5251 so we know that to change the offset of the open brace, we need to | |
5252 change the indentation for the @code{substatement-open} syntactic | |
5253 symbol. | |
5254 | |
5255 To do this interactively, just hit @kbd{C-c C-o}. This prompts | |
5256 you for the syntactic symbol to change, providing a reasonable default. | |
5257 In this case, the default is @code{substatement-open}, which is just the | |
5258 syntactic symbol we want to change! | |
5259 | |
5260 After you hit return, @ccmode{} will then prompt you for the new | |
5261 offset value, with the old value as the default. The default in this | |
5262 case is @samp{+}, but we want no extra indentation so enter | |
5263 @samp{0} and @kbd{RET}. This will associate the offset 0 with the | |
5264 syntactic symbol @code{substatement-open}. | |
5265 | |
5266 To check your changes quickly, just hit @kbd{C-c C-q} | |
5267 (@code{c-indent-defun}) to reindent the entire function. The example | |
5268 should now look like: | |
5269 | |
5270 @example | |
5271 @group | |
5272 1: int add( int val, int incr, int doit ) | |
5273 2: @{ | |
5274 3: if( doit ) | |
5275 4: @{ | |
5276 5: return( val + incr ); | |
5277 6: @} | |
5278 7: return( val ); | |
5279 8: @} | |
5280 @end group | |
5281 @end example | |
5282 | |
5283 Notice how just changing the open brace offset on line 4 is all we | |
5284 needed to do. Since the other affected lines are indented relative to | |
5285 line 4, they are automatically indented the way you'd expect. For more | |
5286 complicated examples, this might not always work. The general approach | |
5287 to take is to always start adjusting offsets for lines higher up in the | |
5288 file, then reindent and see if any following lines need further | |
5289 adjustments. | |
5290 | |
5291 @c Move this bit to "Styles" (2005/10/7) | |
5292 @deffn Command c-set-offset symbol offset | |
5293 @findex set-offset (c-) | |
5294 @kindex C-c C-o | |
5295 This is the command bound to @kbd{C-c C-o}. It provides a convenient | |
5296 way to set offsets on @code{c-offsets-alist} both interactively (see | |
5297 the example above) and from your mode hook. | |
5298 | |
5299 It takes two arguments when used programmatically: @var{symbol} is the | |
5300 syntactic element symbol to change and @var{offset} is the new offset | |
5301 for that syntactic element. | |
5302 @end deffn | |
5303 @c End of MOVE THIS BIT. | |
5304 | |
5305 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5306 @node Line-Up Functions, Custom Line-Up, Interactive Customization, Customizing Indentation | |
5307 @comment node-name, next, previous, up | |
5308 @section Line-Up Functions | |
5309 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5310 | |
5311 @cindex line-up function | |
5312 @cindex indentation function | |
5313 Often there are cases when a simple offset setting on a syntactic | |
5314 symbol isn't enough to get the desired indentation---for example, you | |
5315 might want to line up a closing parenthesis with the matching opening | |
5316 one rather than indenting relative to its ``anchor point''. @ccmode{} | |
5317 provides this flexibility with @dfn{line-up functions}. | |
5318 | |
5319 The way you associate a line-up function with a syntactic symbol is | |
5320 described in @ref{c-offsets-alist}. @ccmode{} comes with many | |
5321 predefined line-up functions for common situations. If none of these | |
5322 does what you want, you can write your own. @xref{Custom Line-Up}. | |
5323 Sometimes, it is easier to tweak the standard indentation by adding a | |
5324 function to @code{c-special-indent-hook} (@pxref{Other Indentation}). | |
5325 | |
5326 The line-up functions haven't been adapted for AWK buffers or tested | |
5327 with them. Some of them might work serendipitously. There shouldn't be | |
5328 any problems writing custom line-up functions for AWK mode. | |
5329 | |
5330 The calling convention for line-up functions is described fully in | |
5331 @ref{Custom Line-Up}. Roughly speaking, the return value is either an | |
5332 offset itself (such as @code{+} or @code{[0]}) or it's @code{nil}, | |
5333 meaning ``this function is inappropriate in this case - try a | |
5334 different one''. @xref{c-offsets-alist}. | |
5335 | |
5336 The subsections below describe all the standard line-up functions, | |
5337 categorized by the sort of token the lining-up centers around. For | |
5338 each of these functions there is a ``works with'' list that indicates | |
5339 which syntactic symbols the function is intended to be used with. | |
5340 | |
5341 @macro workswith | |
5342 @emph{Works with:@ } | |
5343 @end macro | |
5344 @ifinfo | |
5345 @unmacro workswith | |
5346 @macro workswith | |
5347 Works with: | |
5348 @end macro | |
5349 @end ifinfo | |
5350 | |
5351 @macro sssTBasicOffset | |
5352 <--> @i{c-basic-offset}@c | |
5353 @end macro | |
5354 | |
5355 @macro sssTsssTBasicOffset | |
5356 <--><--> @i{c-basic-offset}@c | |
5357 @end macro | |
5358 | |
5359 @macro hereFn{func} | |
5360 <- @i{\func\}@c | |
5361 @end macro | |
5362 | |
5363 @c The TeX backend seems to insert extra spaces around the argument. :P | |
5364 @iftex | |
5365 @unmacro hereFn | |
5366 @macro hereFn{func} | |
5367 <-@i{\func\}@c | |
5368 @end macro | |
5369 @end iftex | |
5370 | |
5371 @menu | |
5372 * Brace/Paren Line-Up:: | |
5373 * List Line-Up:: | |
5374 * Operator Line-Up:: | |
5375 * Comment Line-Up:: | |
5376 * Misc Line-Up:: | |
5377 @end menu | |
5378 | |
5379 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5380 @node Brace/Paren Line-Up, List Line-Up, Line-Up Functions, Line-Up Functions | |
5381 @comment node-name, next, previous, up | |
5382 @subsection Brace and Parenthesis Line-Up Functions | |
5383 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5384 | |
5385 The line-up functions here calculate the indentation for braces, | |
5386 parentheses and statements within brace blocks. | |
5387 | |
5388 @defun c-lineup-close-paren | |
5389 @findex lineup-close-paren (c-) | |
5390 Line up the closing paren under its corresponding open paren if the | |
5391 open paren is followed by code. If the open paren ends its line, no | |
5392 indentation is added. E.g: | |
5393 | |
5394 @example | |
5395 @group | |
5396 main (int, | |
5397 char ** | |
5398 ) @hereFn{c-lineup-close-paren} | |
5399 @end group | |
5400 @end example | |
5401 | |
5402 @noindent | |
5403 and | |
5404 | |
5405 @example | |
5406 @group | |
5407 main ( | |
5408 int, char ** | |
5409 ) @hereFn{c-lineup-close-paren} | |
5410 @end group | |
5411 @end example | |
5412 | |
5413 As a special case, if a brace block is opened at the same line as the | |
5414 open parenthesis of the argument list, the indentation is | |
5415 @code{c-basic-offset} instead of the open paren column. See | |
5416 @code{c-lineup-arglist} for further discussion of this ``DWIM'' measure. | |
5417 | |
5418 @workswith All @code{*-close} symbols. | |
5419 @end defun | |
5420 | |
5421 @comment ------------------------------------------------------------ | |
5422 | |
5423 @anchor{c-lineup-arglist-close-under-paren} | |
5424 @defun c-lineup-arglist-close-under-paren | |
5425 @findex lineup-arglist-close-under-paren (c-) | |
5426 Set your @code{arglist-close} syntactic symbol to this line-up function | |
5427 so that parentheses that close argument lists will line up under the | |
5428 parenthesis that opened the argument list. It can also be used with | |
5429 @code{arglist-cont} and @code{arglist-cont-nonempty} to line up all | |
5430 lines inside a parenthesis under the open paren. | |
5431 | |
5432 As a special case, if a brace block is opened at the same line as the | |
5433 open parenthesis of the argument list, the indentation is | |
5434 @code{c-basic-offset} only. See @code{c-lineup-arglist} for further | |
5435 discussion of this ``DWIM'' measure. | |
5436 | |
5437 @workswith Almost all symbols, but are typically most useful on | |
5438 @code{arglist-close}, @code{brace-list-close}, @code{arglist-cont} and | |
5439 @code{arglist-cont-nonempty}. | |
5440 @end defun | |
5441 | |
5442 @comment ------------------------------------------------------------ | |
5443 | |
5444 @defun c-indent-one-line-block | |
5445 @findex indent-one-line-block (c-) | |
5446 Indent a one line block @code{c-basic-offset} extra. E.g: | |
5447 | |
5448 @example | |
5449 @group | |
5450 if (n > 0) | |
5451 @{m+=n; n=0;@} @hereFn{c-indent-one-line-block} | |
5452 @sssTBasicOffset{} | |
5453 @end group | |
5454 @end example | |
5455 | |
5456 @noindent | |
5457 and | |
5458 | |
5459 @example | |
5460 @group | |
5461 if (n > 0) | |
5462 @{ @hereFn{c-indent-one-line-block} | |
5463 m+=n; n=0; | |
5464 @} | |
5465 @end group | |
5466 @end example | |
5467 | |
5468 The block may be surrounded by any kind of parenthesis characters. | |
5469 @code{nil} is returned if the line doesn't start with a one line block, | |
5470 which makes the function usable in list expressions. | |
5471 | |
5472 @workswith Almost all syntactic symbols, but most useful on the | |
5473 @code{-open} symbols. | |
5474 @end defun | |
5475 | |
5476 @comment ------------------------------------------------------------ | |
5477 | |
5478 @defun c-indent-multi-line-block | |
5479 @findex indent-multi-line-block (c-) | |
5480 Indent a multiline block @code{c-basic-offset} extra. E.g: | |
5481 | |
5482 @example | |
5483 @group | |
5484 int *foo[] = @{ | |
5485 NULL, | |
5486 @{17@}, @hereFn{c-indent-multi-line-block} | |
5487 @end group | |
5488 @end example | |
5489 | |
5490 @noindent | |
5491 and | |
5492 | |
5493 @example | |
5494 @group | |
5495 int *foo[] = @{ | |
5496 NULL, | |
5497 @{ @hereFn{c-indent-multi-line-block} | |
5498 17 | |
5499 @}, | |
5500 @sssTBasicOffset{} | |
5501 @end group | |
5502 @end example | |
5503 | |
5504 The block may be surrounded by any kind of parenthesis characters. | |
5505 @code{nil} is returned if the line doesn't start with a multiline | |
5506 block, which makes the function usable in list expressions. | |
5507 | |
5508 @workswith Almost all syntactic symbols, but most useful on the | |
5509 @code{-open} symbols. | |
5510 @end defun | |
5511 | |
5512 @comment ------------------------------------------------------------ | |
5513 | |
5514 @defun c-lineup-runin-statements | |
5515 @findex lineup-runin-statements (c-) | |
5516 Line up statements for coding standards which place the first statement | |
5517 in a block on the same line as the block opening brace@footnote{Run-in | |
5518 style doesn't really work too well. You might need to write your own | |
5519 custom line-up functions to better support this style.}. E.g: | |
5520 | |
5521 @example | |
5522 @group | |
5523 int main() | |
5524 @{ puts ("Hello!"); | |
5525 return 0; @hereFn{c-lineup-runin-statements} | |
5526 @} | |
5527 @end group | |
5528 @end example | |
5529 | |
5530 If there is no statement after the opening brace to align with, | |
5531 @code{nil} is returned. This makes the function usable in list | |
5532 expressions. | |
5533 | |
5534 @workswith The @code{statement} syntactic symbol. | |
5535 @end defun | |
5536 | |
5537 @comment ------------------------------------------------------------ | |
5538 | |
5539 @defun c-lineup-inexpr-block | |
5540 @findex lineup-inexpr-block (c-) | |
5541 This can be used with the in-expression block symbols to indent the | |
5542 whole block to the column where the construct is started. E.g. for Java | |
5543 anonymous classes, this lines up the class under the @samp{new} keyword, | |
5544 and in Pike it lines up the lambda function body under the @samp{lambda} | |
5545 keyword. Returns @code{nil} if the block isn't part of such a | |
5546 construct. | |
5547 | |
5548 @workswith @code{inlambda}, @code{inexpr-statement}, | |
5549 @code{inexpr-class}. | |
5550 @end defun | |
5551 | |
5552 @comment ------------------------------------------------------------ | |
5553 | |
5554 @defun c-lineup-after-whitesmith-blocks | |
5555 @findex lineup-after-whitesmith-blocks (c-) | |
5556 Compensate for Whitesmith style indentation of blocks. Due to the way | |
5557 @ccmode{} calculates anchor positions for normal lines inside blocks, | |
5558 this function is necessary for those lines to get correct Whitesmith | |
5559 style indentation. Consider the following examples: | |
5560 | |
5561 @example | |
5562 @group | |
5563 int foo() | |
5564 @{ | |
5565 a; | |
5566 x; @hereFn{c-lineup-after-whitesmith-blocks} | |
5567 @end group | |
5568 @end example | |
5569 | |
5570 @example | |
5571 @group | |
5572 int foo() | |
5573 @{ | |
5574 @{ | |
5575 a; | |
5576 @} | |
5577 x; @hereFn{c-lineup-after-whitesmith-blocks} | |
5578 @end group | |
5579 @end example | |
5580 | |
5581 The fact that the line with @code{x} is preceded by a Whitesmith style | |
5582 indented block in the latter case and not the first should not affect | |
5583 its indentation. But since CC Mode in cases like this uses the | |
5584 indentation of the preceding statement as anchor position, the @code{x} | |
5585 would in the second case be indented too much if the offset for | |
5586 @code{statement} was set simply to zero. | |
5587 | |
5588 This lineup function corrects for this situation by detecting if the | |
5589 anchor position is at an open paren character. In that case, it instead | |
5590 indents relative to the surrounding block just like | |
5591 @code{c-lineup-whitesmith-in-block}. | |
5592 | |
5593 @workswith @code{brace-list-entry}, @code{brace-entry-open}, | |
5594 @code{statement}, @code{arglist-cont}. | |
5595 @end defun | |
5596 | |
5597 @comment ------------------------------------------------------------ | |
5598 | |
5599 @defun c-lineup-whitesmith-in-block | |
5600 @findex lineup-whitesmith-in-block (c-) | |
5601 Line up lines inside a block in Whitesmith style. It's done in a way | |
5602 that works both when the opening brace hangs and when it doesn't. E.g: | |
5603 | |
5604 @example | |
5605 @group | |
5606 something | |
5607 @{ | |
5608 foo; @hereFn{c-lineup-whitesmith-in-block} | |
5609 @} | |
5610 @end group | |
5611 @end example | |
5612 | |
5613 @noindent | |
5614 and | |
5615 | |
5616 @example | |
5617 @group | |
5618 something @{ | |
5619 foo; @hereFn{c-lineup-whitesmith-in-block} | |
5620 @} | |
5621 @sssTBasicOffset{} | |
5622 @end group | |
5623 @end example | |
5624 | |
5625 In the first case the indentation is kept unchanged, in the second | |
5626 @code{c-basic-offset} is added. | |
5627 | |
5628 @workswith @code{defun-close}, @code{defun-block-intro}, | |
5629 @code{inline-close}, @code{block-close}, @code{brace-list-close}, | |
5630 @code{brace-list-intro}, @code{statement-block-intro}, | |
5631 @code{arglist-intro}, @code{arglist-cont-nonempty}, | |
5632 @code{arglist-close}, and all @code{in*} symbols, e.g. @code{inclass} | |
5633 and @code{inextern-lang}. | |
5634 @end defun | |
5635 | |
5636 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5637 @node List Line-Up, Operator Line-Up, Brace/Paren Line-Up, Line-Up Functions | |
5638 @comment node-name, next, previous, up | |
5639 @subsection List Line-Up Functions | |
5640 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5641 | |
5642 The line-up functions here calculate the indentation for lines which | |
5643 form lists of items, usually separated by commas. | |
5644 | |
5645 The function @ref{c-lineup-arglist-close-under-paren}, which is mainly | |
5646 for indenting a close parenthesis, is also useful for the lines | |
5647 contained within parentheses. | |
5648 | |
5649 @defun c-lineup-arglist | |
5650 @findex lineup-arglist (c-) | |
5651 Line up the current argument line under the first argument. | |
5652 | |
5653 As a special case, if an argument on the same line as the open | |
5654 parenthesis starts with a brace block opener, the indentation is | |
5655 @code{c-basic-offset} only. This is intended as a ``DWIM'' measure in | |
5656 cases like macros that contain statement blocks, e.g: | |
5657 | |
5658 @example | |
5659 @group | |
5660 A_VERY_LONG_MACRO_NAME (@{ | |
5661 some (code, with + long, lines * in[it]); | |
5662 @}); | |
5663 @sssTBasicOffset{} | |
5664 @end group | |
5665 @end example | |
5666 | |
5667 This is motivated partly because it's more in line with how code | |
5668 blocks are handled, and partly since it approximates the behavior of | |
5669 earlier CC Mode versions, which due to inaccurate analysis tended to | |
5670 indent such cases this way. | |
5671 | |
5672 @workswith @code{arglist-cont-nonempty}, @code{arglist-close}. | |
5673 @end defun | |
5674 | |
5675 @comment ------------------------------------------------------------ | |
5676 | |
5677 @defun c-lineup-arglist-intro-after-paren | |
5678 @findex lineup-arglist-intro-after-paren (c-) | |
5679 Line up a line to just after the open paren of the surrounding paren or | |
5680 brace block. | |
5681 | |
5682 @workswith @code{defun-block-intro}, @code{brace-list-intro}, | |
5683 @code{statement-block-intro}, @code{statement-case-intro}, | |
5684 @code{arglist-intro}. | |
5685 @end defun | |
5686 | |
5687 @comment ------------------------------------------------------------ | |
5688 | |
5689 @defun c-lineup-multi-inher | |
5690 @findex lineup-multi-inher (c-) | |
5691 Line up the classes in C++ multiple inheritance clauses and member | |
5692 initializers under each other. E.g: | |
5693 | |
5694 @example | |
5695 @group | |
5696 Foo::Foo (int a, int b): | |
5697 Cyphr (a), | |
5698 Bar (b) @hereFn{c-lineup-multi-inher} | |
5699 @end group | |
5700 @end example | |
5701 | |
5702 @noindent | |
5703 and | |
5704 | |
5705 @example | |
5706 @group | |
5707 class Foo | |
5708 : public Cyphr, | |
5709 public Bar @hereFn{c-lineup-multi-inher} | |
5710 @end group | |
5711 @end example | |
5712 | |
5713 @noindent | |
5714 and | |
5715 | |
5716 @example | |
5717 @group | |
5718 Foo::Foo (int a, int b) | |
5719 : Cyphr (a) | |
5720 , Bar (b) @hereFn{c-lineup-multi-inher} | |
5721 @end group | |
5722 @end example | |
5723 | |
5724 @workswith @code{inher-cont}, @code{member-init-cont}. | |
5725 @end defun | |
5726 | |
5727 @comment ------------------------------------------------------------ | |
5728 | |
5729 @defun c-lineup-java-inher | |
5730 @findex lineup-java-inher (c-) | |
5731 Line up Java implements and extends declarations. If class names | |
5732 follow on the same line as the @samp{implements}/@samp{extends} | |
5733 keyword, they are lined up under each other. Otherwise, they are | |
5734 indented by adding @code{c-basic-offset} to the column of the keyword. | |
5735 E.g: | |
5736 | |
5737 @example | |
5738 @group | |
5739 class Foo | |
5740 extends | |
5741 Bar @hereFn{c-lineup-java-inher} | |
5742 @sssTBasicOffset{} | |
5743 @end group | |
5744 @end example | |
5745 | |
5746 @noindent | |
5747 and | |
5748 | |
5749 @example | |
5750 @group | |
5751 class Foo | |
5752 extends Cyphr, | |
5753 Bar @hereFn{c-lineup-java-inher} | |
5754 @end group | |
5755 @end example | |
5756 | |
5757 @workswith @code{inher-cont}. | |
5758 @end defun | |
5759 | |
5760 @comment ------------------------------------------------------------ | |
5761 | |
5762 @defun c-lineup-java-throws | |
5763 @findex lineup-java-throws (c-) | |
5764 Line up Java throws declarations. If exception names follow on the | |
5765 same line as the throws keyword, they are lined up under each other. | |
5766 Otherwise, they are indented by adding @code{c-basic-offset} to the | |
5767 column of the @samp{throws} keyword. The @samp{throws} keyword itself | |
5768 is also indented by @code{c-basic-offset} from the function declaration | |
5769 start if it doesn't hang. E.g: | |
5770 | |
5771 @example | |
5772 @group | |
5773 int foo() | |
5774 throws @hereFn{c-lineup-java-throws} | |
5775 Bar @hereFn{c-lineup-java-throws} | |
5776 @sssTsssTBasicOffset{} | |
5777 @end group | |
5778 @end example | |
5779 | |
5780 @noindent | |
5781 and | |
5782 | |
5783 @example | |
5784 @group | |
5785 int foo() throws Cyphr, | |
5786 Bar, @hereFn{c-lineup-java-throws} | |
5787 Vlod @hereFn{c-lineup-java-throws} | |
5788 @end group | |
5789 @end example | |
5790 | |
5791 @workswith @code{func-decl-cont}. | |
5792 @end defun | |
5793 | |
5794 @comment ------------------------------------------------------------ | |
5795 | |
5796 @defun c-lineup-template-args | |
5797 @findex lineup-template-args (c-) | |
5798 Line up the arguments of a template argument list under each other, but | |
5799 only in the case where the first argument is on the same line as the | |
5800 opening @samp{<}. | |
5801 | |
5802 To allow this function to be used in a list expression, @code{nil} is | |
5803 returned if there's no template argument on the first line. | |
5804 | |
5805 @workswith @code{template-args-cont}. | |
5806 @end defun | |
5807 | |
5808 @comment ------------------------------------------------------------ | |
5809 | |
5810 @defun c-lineup-ObjC-method-call | |
5811 @findex lineup-ObjC-method-call (c-) | |
5812 For Objective-C code, line up selector args as Emacs Lisp mode does | |
5813 with function args: go to the position right after the message receiver, | |
5814 and if you are at the end of the line, indent the current line | |
5815 c-basic-offset columns from the opening bracket; otherwise you are | |
5816 looking at the first character of the first method call argument, so | |
5817 lineup the current line with it. | |
5818 | |
5819 @workswith @code{objc-method-call-cont}. | |
5820 @end defun | |
5821 | |
5822 @comment ------------------------------------------------------------ | |
5823 | |
5824 @defun c-lineup-ObjC-method-args | |
5825 @findex lineup-ObjC-method-args (c-) | |
5826 For Objective-C code, line up the colons that separate args. The colon | |
5827 on the current line is aligned with the one on the first line. | |
5828 | |
5829 @workswith @code{objc-method-args-cont}. | |
5830 @end defun | |
5831 | |
5832 @comment ------------------------------------------------------------ | |
5833 | |
5834 @defun c-lineup-ObjC-method-args-2 | |
5835 @findex lineup-ObjC-method-args-2 (c-) | |
5836 Similar to @code{c-lineup-ObjC-method-args} but lines up the colon on | |
5837 the current line with the colon on the previous line. | |
5838 | |
5839 @workswith @code{objc-method-args-cont}. | |
5840 @end defun | |
5841 | |
5842 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5843 @node Operator Line-Up, Comment Line-Up, List Line-Up, Line-Up Functions | |
5844 @comment node-name, next, previous, up | |
5845 @subsection Operator Line-Up Functions | |
5846 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5847 | |
5848 The line-up functions here calculate the indentation for lines which | |
5849 start with an operator, by lining it up with something on the previous | |
5850 line. | |
5851 | |
5852 @defun c-lineup-argcont | |
5853 @findex lineup-argcont (c-) | |
5854 Line up a continued argument. E.g: | |
5855 | |
5856 @example | |
5857 @group | |
5858 foo (xyz, aaa + bbb + ccc | |
5859 + ddd + eee + fff); @hereFn{c-lineup-argcont} | |
5860 @end group | |
5861 @end example | |
5862 | |
5863 Only continuation lines like this are touched, @code{nil} is returned on | |
5864 lines which are the start of an argument. | |
5865 | |
96449
80392a5671b7
American English spelling fixes.
Glenn Morris <rgm@gnu.org>
parents:
95936
diff
changeset
|
5866 Within a gcc @code{asm} block, @code{:} is recognized as an argument |
84286 | 5867 separator, but of course only between operand specifications, not in the |
5868 expressions for the operands. | |
5869 | |
5870 @workswith @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5871 @end defun | |
5872 | |
5873 @comment ------------------------------------------------------------ | |
5874 | |
5875 @defun c-lineup-arglist-operators | |
5876 @findex lineup-arglist-operators (c-) | |
5877 Line up lines starting with an infix operator under the open paren. | |
5878 Return @code{nil} on lines that don't start with an operator, to leave | |
5879 those cases to other line-up functions. Example: | |
5880 | |
5881 @example | |
5882 @group | |
5883 if ( x < 10 | |
5884 || at_limit (x, @hereFn{c-lineup-arglist-operators} | |
5885 list) @hereFn{c-lineup-arglist-operators@r{ returns nil}} | |
5886 ) | |
5887 @end group | |
5888 @end example | |
5889 | |
5890 Since this function doesn't do anything for lines without an infix | |
5891 operator you typically want to use it together with some other lineup | |
5892 settings, e.g. as follows (the @code{arglist-close} setting is just a | |
5893 suggestion to get a consistent style): | |
5894 | |
5895 @example | |
5896 (c-set-offset 'arglist-cont | |
5897 '(c-lineup-arglist-operators 0)) | |
5898 (c-set-offset 'arglist-cont-nonempty | |
5899 '(c-lineup-arglist-operators c-lineup-arglist)) | |
5900 (c-set-offset 'arglist-close | |
5901 '(c-lineup-arglist-close-under-paren)) | |
5902 @end example | |
5903 | |
5904 @workswith @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5905 @end defun | |
5906 | |
5907 @comment ------------------------------------------------------------ | |
5908 | |
5909 @defun c-lineup-assignments | |
5910 @findex lineup-assignments (c-) | |
5911 Line up the current line after the assignment operator on the first line | |
5912 in the statement. If there isn't any, return nil to allow stacking with | |
5913 other line-up functions. If the current line contains an assignment | |
5914 operator too, try to align it with the first one. | |
5915 | |
5916 @workswith @code{topmost-intro-cont}, @code{statement-cont}, | |
5917 @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5918 | |
5919 @end defun | |
5920 | |
5921 @comment ------------------------------------------------------------ | |
5922 | |
5923 @defun c-lineup-math | |
5924 @findex lineup-math (c-) | |
5925 Like @code{c-lineup-assignments} but indent with @code{c-basic-offset} | |
5926 if no assignment operator was found on the first line. I.e. this | |
5927 function is the same as specifying a list @code{(c-lineup-assignments | |
5928 +)}. It's provided for compatibility with old configurations. | |
5929 | |
5930 @workswith @code{topmost-intro-cont}, @code{statement-cont}, | |
5931 @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5932 @end defun | |
5933 | |
5934 @comment ------------------------------------------------------------ | |
5935 | |
5936 @defun c-lineup-cascaded-calls | |
5937 @findex lineup-cascaded-calls (c-) | |
5938 Line up ``cascaded calls'' under each other. If the line begins with | |
5939 @code{->} or @code{.} and the preceding line ends with one or more | |
5940 function calls preceded by the same token, then the arrow is lined up | |
5941 with the first of those tokens. E.g: | |
5942 | |
5943 @example | |
5944 @group | |
5945 r = proc->add(17)->add(18) | |
5946 ->add(19) + @hereFn{c-lineup-cascaded-calls} | |
5947 offset; @hereFn{c-lineup-cascaded-calls@r{ (inactive)}} | |
5948 @end group | |
5949 @end example | |
5950 | |
5951 In any other situation @code{nil} is returned to allow use in list | |
5952 expressions. | |
5953 | |
5954 @workswith @code{topmost-intro-cont}, @code{statement-cont}, | |
5955 @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5956 @end defun | |
5957 | |
5958 @comment ------------------------------------------------------------ | |
5959 | |
5960 @defun c-lineup-streamop | |
5961 @findex lineup-streamop (c-) | |
5962 Line up C++ stream operators (i.e. @samp{<<} and @samp{>>}). | |
5963 | |
5964 @workswith @code{stream-op}. | |
5965 @end defun | |
5966 | |
5967 @comment ------------------------------------------------------------ | |
5968 | |
5969 @defun c-lineup-string-cont | |
5970 @findex lineup-string-cont (c-) | |
5971 Line up a continued string under the one it continues. A continued | |
5972 string in this sense is where a string literal follows directly after | |
5973 another one. E.g: | |
5974 | |
5975 @example | |
5976 @group | |
5977 result = prefix + "A message " | |
5978 "string."; @hereFn{c-lineup-string-cont} | |
5979 @end group | |
5980 @end example | |
5981 | |
5982 @code{nil} is returned in other situations, to allow stacking with other | |
5983 lineup functions. | |
5984 | |
5985 @workswith @code{topmost-intro-cont}, @code{statement-cont}, | |
5986 @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
5987 @end defun | |
5988 | |
5989 | |
5990 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5991 @node Comment Line-Up, Misc Line-Up, Operator Line-Up, Line-Up Functions | |
5992 @comment node-name, next, previous, up | |
5993 @subsection Comment Line-Up Functions | |
5994 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
5995 | |
5996 The lineup functions here calculate the indentation for several types | |
5997 of comment structure. | |
5998 | |
5999 @defun c-lineup-C-comments | |
6000 @findex lineup-C-comments (c-) | |
6001 Line up C block comment continuation lines. Various heuristics are used | |
6002 to handle most of the common comment styles. Some examples: | |
6003 | |
6004 @example | |
6005 @group | |
6006 /* /** /* | |
6007 * text * text text | |
6008 */ */ */ | |
6009 @end group | |
6010 @end example | |
6011 | |
6012 @example | |
6013 @group | |
6014 /* text /* /** | |
6015 text ** text ** text | |
6016 */ */ */ | |
6017 @end group | |
6018 @end example | |
6019 | |
6020 @example | |
6021 @group | |
6022 /************************************************** | |
6023 * text | |
6024 *************************************************/ | |
6025 @end group | |
6026 @end example | |
6027 | |
6028 @vindex comment-start-skip | |
6029 @example | |
6030 @group | |
6031 /************************************************** | |
6032 Free form text comments: | |
6033 In comments with a long delimiter line at the | |
6034 start, the indentation is kept unchanged for lines | |
6035 that start with an empty comment line prefix. The | |
6036 delimiter line is whatever matches the | |
6037 @code{comment-start-skip} regexp. | |
6038 **************************************************/ | |
6039 @end group | |
6040 @end example | |
6041 | |
6042 The style variable @code{c-comment-prefix-regexp} is used to recognize | |
6043 the comment line prefix, e.g. the @samp{*} that usually starts every | |
6044 line inside a comment. | |
6045 | |
6046 @workswith The @code{c} syntactic symbol. | |
6047 @end defun | |
6048 | |
6049 @comment ------------------------------------------------------------ | |
6050 | |
6051 @defun c-lineup-comment | |
6052 @findex lineup-comment (c-) | |
6053 Line up a comment-only line according to the style variable | |
6054 @code{c-comment-only-line-offset}. If the comment is lined up with a | |
6055 comment starter on the previous line, that alignment is preserved. | |
6056 | |
6057 @defopt c-comment-only-line-offset | |
6058 @vindex comment-only-line-offset (c-) | |
6059 This style variable specifies the extra offset for the line. It can | |
6060 contain an integer or a cons cell of the form | |
6061 | |
6062 @example | |
6063 (@r{@var{non-anchored-offset}} . @r{@var{anchored-offset}}) | |
6064 @end example | |
6065 | |
6066 @noindent | |
6067 where @var{non-anchored-offset} is the amount of offset given to | |
6068 non-column-zero anchored lines, and @var{anchored-offset} is the amount | |
6069 of offset to give column-zero anchored lines. Just an integer as value | |
6070 is equivalent to @code{(@r{@var{value}} . -1000)}. | |
6071 @end defopt | |
6072 | |
6073 @workswith @code{comment-intro}. | |
6074 @end defun | |
6075 | |
6076 @comment ------------------------------------------------------------ | |
6077 | |
6078 @defun c-lineup-knr-region-comment | |
6079 @findex lineup-knr-region-comment (c-) | |
6080 Line up a comment in the ``K&R region'' with the declaration. That is | |
6081 the region between the function or class header and the beginning of the | |
6082 block. E.g: | |
6083 | |
6084 @example | |
6085 @group | |
6086 int main() | |
6087 /* Called at startup. */ @hereFn{c-lineup-knr-region-comment} | |
6088 @{ | |
6089 return 0; | |
6090 @} | |
6091 @end group | |
6092 @end example | |
6093 | |
6094 Return @code{nil} if called in any other situation, to be useful in list | |
6095 expressions. | |
6096 | |
6097 @workswith @code{comment-intro}. | |
6098 @end defun | |
6099 | |
6100 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6101 @node Misc Line-Up, , Comment Line-Up, Line-Up Functions | |
6102 @comment node-name, next, previous, up | |
6103 @subsection Miscellaneous Line-Up Functions | |
6104 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6105 | |
6106 The line-up functions here are the odds and ends which didn't fit into | |
6107 any earlier category. | |
6108 | |
6109 @defun c-lineup-dont-change | |
6110 @findex lineup-dont-change (c-) | |
6111 This lineup function makes the line stay at whatever indentation it | |
6112 already has; think of it as an identity function for lineups. | |
6113 | |
6114 @workswith Any syntactic symbol. | |
6115 @end defun | |
6116 | |
6117 @comment ------------------------------------------------------------ | |
6118 | |
6119 @defun c-lineup-cpp-define | |
6120 @findex lineup-cpp-define (c-) | |
6121 Line up macro continuation lines according to the indentation of the | |
6122 construct preceding the macro. E.g: | |
6123 | |
6124 @example | |
6125 @group | |
6126 const char msg[] = @hereFn{@r{The beginning of the preceding construct.}} | |
6127 \"Some text.\"; | |
6128 | |
6129 #define X(A, B) \ | |
6130 do @{ \ @hereFn{c-lineup-cpp-define} | |
6131 printf (A, B); \ | |
6132 @} while (0) | |
6133 @end group | |
6134 @end example | |
6135 | |
6136 @noindent | |
6137 and: | |
6138 | |
6139 @example | |
6140 @group | |
6141 int dribble() @{ | |
6142 if (!running) @hereFn{@r{The beginning of the preceding construct.}} | |
6143 error(\"Not running!\"); | |
6144 | |
6145 #define X(A, B) \ | |
6146 do @{ \ @hereFn{c-lineup-cpp-define} | |
6147 printf (A, B); \ | |
6148 @} while (0) | |
6149 @end group | |
6150 @end example | |
6151 | |
6152 If @code{c-syntactic-indentation-in-macros} is non-@code{nil}, the | |
6153 function returns the relative indentation to the macro start line to | |
6154 allow accumulation with other offsets. E.g. in the following cases, | |
6155 @code{cpp-define-intro} is combined with the | |
6156 @code{statement-block-intro} that comes from the @samp{do @{} that hangs | |
6157 on the @samp{#define} line: | |
6158 | |
6159 @example | |
6160 @group | |
6161 const char msg[] = | |
6162 \"Some text.\"; | |
6163 | |
6164 #define X(A, B) do @{ \ | |
6165 printf (A, B); \ @hereFn{c-lineup-cpp-define} | |
6166 this->refs++; \ | |
6167 @} while (0) @hereFn{c-lineup-cpp-define} | |
6168 @end group | |
6169 @end example | |
6170 | |
6171 @noindent | |
6172 and: | |
6173 | |
6174 @example | |
6175 @group | |
6176 int dribble() @{ | |
6177 if (!running) | |
6178 error(\"Not running!\"); | |
6179 | |
6180 #define X(A, B) do @{ \ | |
6181 printf (A, B); \ @hereFn{c-lineup-cpp-define} | |
6182 this->refs++; \ | |
6183 @} while (0) @hereFn{c-lineup-cpp-define} | |
6184 @end group | |
6185 @end example | |
6186 | |
6187 The relative indentation returned by @code{c-lineup-cpp-define} is zero | |
6188 and two, respectively, on the two lines in each of these examples. They | |
6189 are then added to the two column indentation that | |
6190 @code{statement-block-intro} gives in both cases here. | |
6191 | |
6192 If the relative indentation is zero, then @code{nil} is returned | |
6193 instead. That is useful in a list expression to specify the default | |
6194 indentation on the top level. | |
6195 | |
6196 If @code{c-syntactic-indentation-in-macros} is @code{nil} then this | |
6197 function keeps the current indentation, except for empty lines (ignoring | |
6198 the ending backslash) where it takes the indentation from the closest | |
6199 preceding nonempty line in the macro. If there's no such line in the | |
6200 macro then the indentation is taken from the construct preceding it, as | |
6201 described above. | |
6202 | |
6203 @workswith @code{cpp-define-intro}. | |
6204 @end defun | |
6205 | |
6206 @comment ------------------------------------------------------------ | |
6207 | |
6208 @defun c-lineup-gcc-asm-reg | |
6209 @findex lineup-gcc-asm-reg (c-) | |
6210 Line up a gcc asm register under one on a previous line. | |
6211 | |
6212 @example | |
6213 @group | |
6214 asm ("foo %1, %0\n" | |
6215 "bar %0, %1" | |
6216 : "=r" (w), | |
6217 "=r" (x) | |
6218 : "0" (y), | |
6219 "1" (z)); | |
6220 @end group | |
6221 @end example | |
6222 | |
6223 The @samp{x} line is aligned to the text after the @samp{:} on the | |
6224 @samp{w} line, and similarly @samp{z} under @samp{y}. | |
6225 | |
6226 This is done only in an @samp{asm} or @samp{__asm__} block, and only to | |
6227 those lines mentioned. Anywhere else @code{nil} is returned. The usual | |
6228 arrangement is to have this routine as an extra feature at the start of | |
6229 arglist lineups, e.g. | |
6230 | |
6231 @example | |
6232 (c-lineup-gcc-asm-reg c-lineup-arglist) | |
6233 @end example | |
6234 | |
6235 @workswith @code{arglist-cont}, @code{arglist-cont-nonempty}. | |
6236 @end defun | |
6237 | |
6238 @comment ------------------------------------------------------------ | |
6239 | |
6240 @defun c-lineup-topmost-intro-cont | |
6241 @findex lineup-topmost-intro-cont (c-) | |
6242 Line up declaration continuation lines zero or one indentation | |
6243 step@footnote{This function is mainly provided to mimic the behavior of | |
6244 CC Mode 5.28 and earlier where this case wasn't handled consistently so | |
6245 that those lines could be analyzed as either topmost-intro-cont or | |
6246 statement-cont. It's used for @code{topmost-intro-cont} by default, but | |
6247 you might consider using @code{+} instead.}. For lines preceding a | |
6248 definition, zero is used. For other lines, @code{c-basic-offset} is | |
6249 added to the indentation. E.g: | |
6250 | |
6251 @example | |
6252 @group | |
6253 int | |
6254 neg (int i) @hereFn{c-lineup-topmost-intro-cont} | |
6255 @{ | |
6256 return -i; | |
6257 @} | |
6258 @end group | |
6259 @end example | |
6260 | |
6261 @noindent | |
6262 and | |
6263 | |
6264 @example | |
6265 @group | |
6266 struct | |
6267 larch @hereFn{c-lineup-topmost-intro-cont} | |
6268 @{ | |
6269 double height; | |
6270 @} | |
6271 the_larch, @hereFn{c-lineup-topmost-intro-cont} | |
6272 another_larch; @hereFn{c-lineup-topmost-intro-cont} | |
6273 @sssTBasicOffset{} | |
6274 @end group | |
6275 @end example | |
6276 | |
6277 @noindent | |
6278 and | |
6279 | |
6280 @example | |
6281 @group | |
6282 struct larch | |
6283 the_larch, @hereFn{c-lineup-topmost-intro-cont} | |
6284 another_larch; @hereFn{c-lineup-topmost-intro-cont} | |
6285 @end group | |
6286 @end example | |
6287 | |
6288 @workswith @code{topmost-intro-cont}. | |
6289 @end defun | |
6290 | |
6291 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6292 @node Custom Line-Up, Other Indentation, Line-Up Functions, Customizing Indentation | |
6293 @comment node-name, next, previous, up | |
6294 @section Custom Line-Up Functions | |
6295 @cindex customization, indentation functions | |
6296 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6297 | |
6298 The most flexible way to customize indentation is by writing custom | |
6299 line-up functions, and associating them with specific syntactic | |
6300 symbols (@pxref{c-offsets-alist}). Depending on the effect you want, | |
6301 it might be better to write a @code{c-special-indent-hook} function | |
6302 rather than a line-up function (@pxref{Other Indentation}). | |
6303 | |
6304 @ccmode{} comes with an extensive set of predefined line-up functions, | |
6305 not all of which are used by the default styles. So there's a good | |
6306 chance the function you want already exists. @xref{Line-Up | |
6307 Functions}, for a list of them. If you write your own line-up | |
6308 function, it's probably a good idea to start working from one of these | |
6309 predefined functions, which can be found in the file | |
6310 @file{cc-align.el}. If you have written a line-up function that you | |
6311 think is generally useful, you're very welcome to contribute it; | |
6312 please contact @email{bug-cc-mode@@gnu.org}. | |
6313 | |
6314 Line-up functions are passed a single argument, the syntactic | |
6315 element (see below). The return value is a @code{c-offsets-alist} | |
6316 offset specification: for example, an integer, a symbol such as | |
6317 @code{+}, a vector, @code{nil}@footnote{Returning @code{nil} is useful | |
6318 when the offset specification for a syntactic element is a list | |
6319 containing the line-up function (@pxref{c-offsets-alist}).}, or even | |
6320 another line-up function. Full details of these are in | |
6321 @ref{c-offsets-alist}. | |
6322 | |
6323 Line-up functions must not move point or change the content of the | |
6324 buffer (except temporarily). They are however allowed to do | |
6325 @dfn{hidden buffer changes}, i.e. setting text properties for caching | |
6326 purposes etc. Buffer undo recording is disabled while they run. | |
6327 | |
6328 The syntactic element passed as the parameter to a line-up function is | |
6329 a cons cell of the form | |
6330 | |
6331 @example | |
6332 (@r{@var{syntactic-symbol}} . @r{@var{anchor-position}}) | |
6333 @end example | |
6334 | |
6335 @noindent | |
6336 @c FIXME!!! The following sentence might be better omitted, since the | |
6337 @c information is in the cross reference "Syntactic Analysis". 2005/10/2. | |
6338 where @var{syntactic-symbol} is the symbol that the function was | |
6339 called for, and @var{anchor-position} is the anchor position (if any) | |
6340 for the construct that triggered the syntactic symbol | |
6341 (@pxref{Syntactic Analysis}). This cons cell is how the syntactic | |
6342 element of a line used to be represented in @ccmode{} 5.28 and | |
6343 earlier. Line-up functions are still passed this cons cell, so as to | |
6344 preserve compatibility with older configurations. In the future, we | |
6345 may decide to convert to using the full list format---you can prepare | |
6346 your setup for this by using the access functions | |
6347 (@code{c-langelem-sym}, etc.) described below. | |
6348 | |
6349 @vindex c-syntactic-element | |
6350 @vindex syntactic-element (c-) | |
6351 @vindex c-syntactic-context | |
6352 @vindex syntactic-context (c-) | |
6353 Some syntactic symbols, e.g. @code{arglist-cont-nonempty}, have more | |
6354 info in the syntactic element - typically other positions that can be | |
6355 interesting besides the anchor position. That info can't be accessed | |
6356 through the passed argument, which is a cons cell. Instead, you can | |
6357 get this information from the variable @code{c-syntactic-element}, | |
6358 which is dynamically bound to the complete syntactic element. The | |
6359 variable @code{c-syntactic-context} might also be useful - it gets | |
6360 dynamically bound to the complete syntactic context. @xref{Custom | |
6361 Braces}. | |
6362 | |
6363 @ccmode{} provides a few functions to access parts of syntactic | |
6364 elements in a more abstract way. Besides making the code easier to | |
6365 read, they also hide the difference between the old cons cell form | |
6366 used in the line-up function argument and the new list form used in | |
6367 @code{c-syntactic-element} and everywhere else. The functions are: | |
6368 | |
6369 @defun c-langelem-sym langelem | |
6370 @findex langelem-sym (c-) | |
6371 Return the syntactic symbol in @var{langelem}. | |
6372 @end defun | |
6373 | |
6374 @defun c-langelem-pos langelem | |
6375 @findex langelem-pos (c-) | |
6376 Return the anchor position in @var{langelem}, or nil if there is none. | |
6377 @end defun | |
6378 | |
6379 @defun c-langelem-col langelem &optional preserve-point | |
6380 @findex langelem-col (c-) | |
6381 Return the column of the anchor position in @var{langelem}. Also move | |
6382 the point to that position unless @var{preserve-point} is | |
6383 non-@code{nil}. | |
6384 @end defun | |
6385 | |
6386 @defun c-langelem-2nd-pos langelem | |
6387 @findex langelem-2nd-pos (c-) | |
6388 Return the secondary position in @var{langelem}, or @code{nil} if there | |
6389 is none. | |
6390 | |
6391 Note that the return value of this function is always @code{nil} if | |
6392 @var{langelem} is in the old cons cell form. Thus this function is | |
6393 only meaningful when used on syntactic elements taken from | |
6394 @code{c-syntactic-element} or @code{c-syntactic-context}. | |
6395 @end defun | |
6396 | |
6397 Custom line-up functions can be as simple or as complex as you like, and | |
6398 any syntactic symbol that appears in @code{c-offsets-alist} can have a | |
6399 custom line-up function associated with it. | |
6400 | |
6401 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6402 @node Other Indentation, , Custom Line-Up, Customizing Indentation | |
6403 @comment node-name, next, previous, up | |
6404 @section Other Special Indentations | |
6405 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6406 | |
6407 Here are the remaining odds and ends regarding indentation: | |
6408 | |
6409 @defopt c-label-minimum-indentation | |
6410 @vindex label-minimum-indentation (c-) | |
6411 In @samp{gnu} style (@pxref{Built-in Styles}), a minimum indentation is | |
6412 imposed on lines inside code blocks. This minimum indentation is | |
6413 controlled by this style variable. The default value is 1. | |
6414 | |
6415 @findex c-gnu-impose-minimum | |
6416 @findex gnu-impose-minimum (c-) | |
6417 It's the function @code{c-gnu-impose-minimum} that enforces this minimum | |
6418 indentation. It must be present on @code{c-special-indent-hook} to | |
6419 work. | |
6420 @end defopt | |
6421 | |
6422 @defopt c-special-indent-hook | |
6423 @vindex special-indent-hook (c-) | |
6424 This style variable is a standard hook variable that is called after | |
6425 every line is indented by @ccmode{}. It is called only if | |
6426 @code{c-syntactic-indentation} is non-@code{nil} (which it is by | |
6427 default (@pxref{Indentation Engine Basics})). You can put a function | |
6428 on this hook to do any special indentation or ad hoc line adjustments | |
6429 your style dictates, such as adding extra indentation to constructors | |
6430 or destructor declarations in a class definition, etc. Sometimes it | |
6431 is better to write a custom Line-up Function instead (@pxref{Custom | |
6432 Line-Up}). | |
6433 | |
6434 When the indentation engine calls this hook, the variable | |
6435 @code{c-syntactic-context} is bound to the current syntactic context | |
6436 (i.e. what you would get by typing @kbd{C-c C-s} on the source line. | |
6437 @xref{Custom Braces}.). Note that you should not change point or mark | |
6438 inside a @code{c-special-indent-hook} function, i.e. you'll probably | |
6439 want to wrap your function in a @code{save-excursion}@footnote{The | |
6440 numerical value returned by @code{point} will change if you change the | |
6441 indentation of the line within a @code{save-excursion} form, but point | |
6442 itself will still be over the same piece of text.}. | |
6443 | |
6444 Setting @code{c-special-indent-hook} in style definitions is handled | |
6445 slightly differently from other variables---A style can only add | |
6446 functions to this hook, not remove them. @xref{Style Variables}. | |
6447 @end defopt | |
6448 | |
6449 | |
6450 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6451 @node Custom Macros, Odds and Ends, Customizing Indentation, Top | |
6452 @comment node-name, next, previous, up | |
6453 @chapter Customizing Macros | |
6454 @cindex macros | |
6455 @cindex preprocessor directives | |
6456 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6457 | |
6458 Normally, the lines in a multi-line macro are indented relative to | |
86093
d223d695f3f3
(Electric Keys, Electric Keys, Custom Macros): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
85173
diff
changeset
|
6459 each other as though they were code. You can suppress this behavior |
84286 | 6460 by setting the following user option: |
6461 | |
6462 @defopt c-syntactic-indentation-in-macros | |
6463 @vindex syntactic-indentation-in-macros (c-) | |
6464 Enable syntactic analysis inside macros, which is the default. If this | |
6465 is @code{nil}, all lines inside macro definitions are analyzed as | |
6466 @code{cpp-macro-cont}. | |
6467 @end defopt | |
6468 | |
6469 @ccmode{} provides some tools to help keep the line continuation | |
6470 backslashes in macros neat and tidy. Their precise action is | |
6471 customized with these variables: | |
6472 | |
6473 @defopt c-backslash-column | |
6474 @vindex backslash-column (c-) | |
6475 @defoptx c-backslash-max-column | |
6476 @vindex backslash-max-column (c-) | |
6477 These variables control the alignment columns for line continuation | |
6478 backslashes in multiline macros. They are used by the functions that | |
6479 automatically insert or align such backslashes, | |
6480 e.g. @code{c-backslash-region} and @code{c-context-line-break}. | |
6481 | |
6482 @code{c-backslash-column} specifies the minimum column for the | |
6483 backslashes. If any line in the macro goes past this column, then the | |
6484 next tab stop (i.e. next multiple of @code{tab-width}) in that line is | |
6485 used as the alignment column for all the backslashes, so that they | |
6486 remain in a single column. However, if any lines go past | |
6487 @code{c-backslash-max-column} then the backslashes in the rest of the | |
6488 macro will be kept at that column, so that the lines which are too | |
6489 long ``stick out'' instead. | |
6490 | |
6491 Don't ever set these variables to @code{nil}. If you want to disable | |
6492 the automatic alignment of backslashes, use | |
6493 @code{c-auto-align-backslashes}. | |
6494 @end defopt | |
6495 | |
6496 @defopt c-auto-align-backslashes | |
6497 @vindex auto-align-backslashes (c-) | |
6498 Align automatically inserted line continuation backslashes if | |
6499 non-@code{nil}. When line continuation backslashes are inserted | |
6500 automatically for line breaks in multiline macros, e.g. by | |
6501 @code{c-context-line-break}, they are aligned with the other | |
6502 backslashes in the same macro if this flag is set. | |
6503 | |
6504 If @code{c-auto-align-backslashes} is @code{nil}, automatically | |
6505 inserted backslashes are preceded by a single space, and backslashes | |
6506 get aligned only when you explicitly invoke the command | |
6507 @code{c-backslash-region} (@kbd{C-c C-\}). | |
6508 @end defopt | |
6509 | |
6510 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6511 @node Odds and Ends, Sample .emacs File, Custom Macros, Top | |
6512 @comment node-name, next, previous, up | |
6513 @chapter Odds and Ends | |
6514 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6515 | |
6516 The stuff that didn't fit in anywhere else is documented here. | |
6517 | |
6518 @defopt c-require-final-newline | |
6519 @vindex require-final-newline (c-) | |
6520 Controls whether a final newline is enforced when the file is saved. | |
6521 The value is an association list that for each language mode specifies | |
6522 the value to give to @code{require-final-newline} (@pxref{Saving | |
6523 Buffers,,, @lispref{}, @lispreftitle{}}) at mode initialization. If a | |
6524 language isn't present on the association list, CC Mode won't touch | |
6525 @code{require-final-newline} in buffers for that language. | |
6526 | |
6527 The default is to set @code{require-final-newline} to @code{t} in the | |
6528 languages that mandate that source files should end with newlines. | |
6529 These are C, C++ and Objective-C. | |
6530 @end defopt | |
6531 | |
6532 @defopt c-echo-syntactic-information-p | |
6533 @vindex echo-syntactic-information-p (c-) | |
6534 If non-@code{nil}, the syntactic analysis for the current line is shown | |
6535 in the echo area when it's indented (unless | |
6536 @code{c-syntactic-indentation} is @code{nil}). That's useful when | |
6537 finding out which syntactic symbols to modify to get the indentation you | |
6538 want. | |
6539 @end defopt | |
6540 | |
6541 @defopt c-report-syntactic-errors | |
6542 @vindex report-syntactic-errors (c-) | |
6543 If non-@code{nil}, certain syntactic errors are reported with a ding and | |
6544 a message, for example when an @code{else} is indented for which there | |
6545 is no corresponding @code{if}. | |
6546 | |
6547 Note however that @ccmode{} doesn't make any special effort to check for | |
6548 syntactic errors; that's the job of the compiler. The reason it can | |
6549 report cases like the one above is that it can't find the correct | |
6550 anchoring position to indent the line in that case. | |
6551 @end defopt | |
6552 | |
6553 | |
6554 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6555 @node Sample .emacs File, Performance Issues, Odds and Ends, Top | |
6556 @comment node-name, next, previous, up | |
6557 @appendix Sample .emacs File | |
6558 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6559 | |
6560 Here's a sample .emacs file fragment that might help you along the way. | |
6561 Just copy this region and paste it into your .emacs file. You might want | |
6562 to change some of the actual values. | |
6563 | |
6564 @verbatim | |
6565 ;; Make a non-standard key binding. We can put this in | |
6566 ;; c-mode-base-map because c-mode-map, c++-mode-map, and so on, | |
6567 ;; inherit from it. | |
6568 (defun my-c-initialization-hook () | |
6569 (define-key c-mode-base-map "\C-m" 'c-context-line-break)) | |
6570 (add-hook 'c-initialization-hook 'my-c-initialization-hook) | |
6571 | |
6572 ;; offset customizations not in my-c-style | |
6573 ;; This will take precedence over any setting of the syntactic symbol | |
6574 ;; made by a style. | |
6575 (setq c-offsets-alist '((member-init-intro . ++))) | |
6576 | |
6577 ;; Create my personal style. | |
6578 (defconst my-c-style | |
6579 '((c-tab-always-indent . t) | |
6580 (c-comment-only-line-offset . 4) | |
6581 (c-hanging-braces-alist . ((substatement-open after) | |
6582 (brace-list-open))) | |
6583 (c-hanging-colons-alist . ((member-init-intro before) | |
6584 (inher-intro) | |
6585 (case-label after) | |
6586 (label after) | |
6587 (access-label after))) | |
6588 (c-cleanup-list . (scope-operator | |
6589 empty-defun-braces | |
6590 defun-close-semi)) | |
6591 (c-offsets-alist . ((arglist-close . c-lineup-arglist) | |
6592 (substatement-open . 0) | |
6593 (case-label . 4) | |
6594 (block-open . 0) | |
6595 (knr-argdecl-intro . -))) | |
6596 (c-echo-syntactic-information-p . t)) | |
6597 "My C Programming Style") | |
6598 (c-add-style "PERSONAL" my-c-style) | |
6599 | |
6600 ;; Customizations for all modes in CC Mode. | |
6601 (defun my-c-mode-common-hook () | |
6602 ;; set my personal style for the current buffer | |
6603 (c-set-style "PERSONAL") | |
6604 ;; other customizations | |
6605 (setq tab-width 8 | |
6606 ;; this will make sure spaces are used instead of tabs | |
6607 indent-tabs-mode nil) | |
6608 ;; we like auto-newline, but not hungry-delete | |
6609 (c-toggle-auto-newline 1)) | |
6610 (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) | |
6611 @end verbatim | |
6612 | |
6613 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6614 @node Performance Issues, Limitations and Known Bugs, Sample .emacs File, Top | |
6615 @comment node-name, next, previous, up | |
6616 @chapter Performance Issues | |
6617 @cindex performance | |
6618 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6619 | |
6620 @comment FIXME: (ACM, 2003/5/24). Check whether AWK needs mentioning here. | |
6621 | |
6622 C and its derivative languages are highly complex creatures. Often, | |
6623 ambiguous code situations arise that require @ccmode{} to scan large | |
6624 portions of the buffer to determine syntactic context. Such | |
6625 pathological code can cause @ccmode{} to perform fairly badly. This | |
6626 section gives some insight in how @ccmode{} operates, how that interacts | |
6627 with some coding styles, and what you can use to improve performance. | |
6628 | |
6629 The overall goal is that @ccmode{} shouldn't be overly slow (i.e. take | |
6630 more than a fraction of a second) in any interactive operation. | |
6631 I.e. it's tuned to limit the maximum response time in single operations, | |
6632 which is sometimes at the expense of batch-like operations like | |
6633 reindenting whole blocks. If you find that @ccmode{} gradually gets | |
6634 slower and slower in certain situations, perhaps as the file grows in | |
6635 size or as the macro or comment you're editing gets bigger, then chances | |
6636 are that something isn't working right. You should consider reporting | |
6637 it, unless it's something that's mentioned in this section. | |
6638 | |
6639 Because @ccmode{} has to scan the buffer backwards from the current | |
6640 insertion point, and because C's syntax is fairly difficult to parse in | |
6641 the backwards direction, @ccmode{} often tries to find the nearest | |
6642 position higher up in the buffer from which to begin a forward scan | |
6643 (it's typically an opening or closing parenthesis of some kind). The | |
6644 farther this position is from the current insertion point, the slower it | |
6645 gets. | |
6646 | |
6647 @findex beginning-of-defun | |
6648 In earlier versions of @ccmode{}, we used to recommend putting the | |
6649 opening brace of a top-level construct@footnote{E.g. a function in C, | |
6650 or outermost class definition in C++ or Java.} into the leftmost | |
6651 column. Earlier still, this used to be a rigid Emacs constraint, as | |
6652 embodied in the @code{beginning-of-defun} function. @ccmode now | |
6653 caches syntactic information much better, so that the delay caused by | |
6654 searching for such a brace when it's not in column 0 is minimal, | |
6655 except perhaps when you've just moved a long way inside the file. | |
6656 | |
6657 @findex defun-prompt-regexp | |
6658 @vindex c-Java-defun-prompt-regexp | |
6659 @vindex Java-defun-prompt-regexp (c-) | |
6660 A special note about @code{defun-prompt-regexp} in Java mode: The common | |
6661 style is to hang the opening braces of functions and classes on the | |
6662 right side of the line, and that doesn't work well with the Emacs | |
6663 approach. @ccmode{} comes with a constant | |
6664 @code{c-Java-defun-prompt-regexp} which tries to define a regular | |
6665 expression usable for this style, but there are problems with it. In | |
6666 some cases it can cause @code{beginning-of-defun} to hang@footnote{This | |
6667 has been observed in Emacs 19.34 and XEmacs 19.15.}. For this reason, | |
6668 it is not used by default, but if you feel adventurous, you can set | |
6669 @code{defun-prompt-regexp} to it in your mode hook. In any event, | |
6670 setting and relying on @code{defun-prompt-regexp} will definitely slow | |
6671 things down because (X)Emacs will be doing regular expression searches a | |
6672 lot, so you'll probably be taking a hit either way! | |
6673 | |
6674 @ccmode{} maintains a cache of the opening parentheses of the blocks | |
6675 surrounding the point, and it adapts that cache as the point is moved | |
6676 around. That means that in bad cases it can take noticeable time to | |
6677 indent a line in a new surrounding, but after that it gets fast as long | |
6678 as the point isn't moved far off. The farther the point is moved, the | |
6679 less useful is the cache. Since editing typically is done in ``chunks'' | |
6680 rather than on single lines far apart from each other, the cache | |
6681 typically gives good performance even when the code doesn't fit the | |
6682 Emacs approach to finding the defun starts. | |
6683 | |
6684 @vindex c-enable-xemacs-performance-kludge-p | |
6685 @vindex enable-xemacs-performance-kludge-p (c-) | |
6686 XEmacs users can set the variable | |
6687 @code{c-enable-xemacs-performance-kludge-p} to non-@code{nil}. This | |
6688 tells @ccmode{} to use XEmacs-specific built-in functions which, in some | |
6689 circumstances, can locate the top-most opening brace much more quickly than | |
6690 @code{beginning-of-defun}. Preliminary testing has shown that for | |
6691 styles where these braces are hung (e.g. most JDK-derived Java styles), | |
6692 this hack can improve performance of the core syntax parsing routines | |
6693 from 3 to 60 times. However, for styles which @emph{do} conform to | |
6694 Emacs' recommended style of putting top-level braces in column zero, | |
6695 this hack can degrade performance by about as much. Thus this variable | |
6696 is set to @code{nil} by default, since the Emacs-friendly styles should | |
6697 be more common (and encouraged!). Note that this variable has no effect | |
6698 in Emacs since the necessary built-in functions don't exist (in Emacs | |
6699 22.1 as of this writing in February 2007). | |
6700 | |
6701 Text properties are used to speed up skipping over syntactic whitespace, | |
6702 i.e. comments and preprocessor directives. Indenting a line after a | |
6703 huge macro definition can be slow the first time, but after that the | |
6704 text properties are in place and it should be fast (even after you've | |
6705 edited other parts of the file and then moved back). | |
6706 | |
6707 Font locking can be a CPU hog, especially the font locking done on | |
6708 decoration level 3 which tries to be very accurate. Note that that | |
6709 level is designed to be used with a font lock support mode that only | |
6710 fontifies the text that's actually shown, i.e. Lazy Lock or Just-in-time | |
6711 Lock mode, so make sure you use one of them. Fontification of a whole | |
6712 buffer with some thousand lines can often take over a minute. That is | |
6713 a known weakness; the idea is that it never should happen. | |
6714 | |
6715 The most effective way to speed up font locking is to reduce the | |
6716 decoration level to 2 by setting @code{font-lock-maximum-decoration} | |
6717 appropriately. That level is designed to be as pretty as possible | |
6718 without sacrificing performance. @xref{Font Locking Preliminaries}, for | |
6719 more info. | |
6720 | |
6721 | |
6722 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6723 @node Limitations and Known Bugs, FAQ, Performance Issues, Top | |
6724 @comment node-name, next, previous, up | |
6725 @chapter Limitations and Known Bugs | |
6726 @cindex limitations | |
6727 @cindex bugs | |
6728 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6729 | |
6730 @itemize @bullet | |
6731 @item | |
6732 @ccmode{} doesn't support trigraphs. (These are character sequences | |
6733 such as @samp{??(}, which represents @samp{[}. They date from a time | |
6734 when some character sets didn't have all the characters that C needs, | |
6735 and are now utterly obsolete.) | |
6736 | |
6737 @item | |
6738 There is no way to apply auto newline settings (@pxref{Auto-newlines}) | |
6739 on already typed lines. That's only a feature to ease interactive | |
6740 editing. | |
6741 | |
6742 To generalize this issue a bit: @ccmode{} is not intended to be used as | |
6743 a reformatter for old code in some more or less batch-like way. With | |
6744 the exception of some functions like @code{c-indent-region}, it's only | |
6745 geared to be used interactively to edit new code. There's currently no | |
6746 intention to change this goal. | |
6747 | |
6748 If you want to reformat old code, you're probably better off using some | |
6749 other tool instead, e.g. @ref{Top, , GNU indent, indent, The `indent' | |
6750 Manual}, which has more powerful reformatting capabilities than | |
6751 @ccmode{}. | |
6752 | |
6753 @item | |
6754 The support for C++ templates (in angle brackets) is not yet complete. | |
6755 When a non-nested template is used in a declaration, @ccmode{} indents | |
6756 it and font-locks it OK. Templates used in expressions, and nested | |
6757 templates do not fare so well. Sometimes a workaround is to refontify | |
6758 the expression after typing the closing @samp{>}. | |
6759 | |
6760 @item | |
92570
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6761 In a @dfn{k&r region} (the part of an old-fashioned C function |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6762 declaration which specifies the types of its parameters, coming |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6763 between the parameter list and the opening brace), there should be at |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6764 most 20 top-level parenthesis and bracket pairs. This limit has been |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6765 imposed for performance reasons. If it is violated, the source file |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6766 might be incorrectly indented or fontified. |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6767 |
0c777c6d1ca8
(Limitations and Known Bugs): State that the number of parens/brackets in
Alan Mackenzie <acm@muc.de>
parents:
87903
diff
changeset
|
6768 @item |
84286 | 6769 On loading @ccmode{}, sometimes this error message appears: |
6770 | |
6771 @example | |
6772 File mode specification error: (void-variable c-font-lock-keywords-3) | |
6773 @end example | |
6774 | |
6775 This is due to a bug in the function @code{eval-after-load} in some | |
6776 versions of (X)Emacs. It can manifest itself when there is a symbolic | |
6777 link in the path of the directory which contains (X)Emacs. As a | |
6778 workaround, put the following into your @file{.emacs} file, fairly | |
6779 early on: | |
6780 | |
6781 @example | |
6782 (defun my-load-cc-fonts () | |
6783 (require "cc-fonts")) | |
6784 (add-hook 'c-initialization-hook 'my-load-cc-fonts) | |
6785 @end example | |
6786 @end itemize | |
6787 | |
6788 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6789 @node FAQ, Updating CC Mode, Limitations and Known Bugs, Top | |
6790 @comment node-name, next, previous, up | |
6791 @appendix Frequently Asked Questions | |
6792 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6793 | |
6794 @itemize @bullet | |
6795 @item | |
6796 @emph{How can I change the indent level from 4 spaces to 2 spaces?} | |
6797 | |
6798 Set the variable @code{c-basic-offset}. @xref{Getting Started}. | |
6799 | |
6800 @item | |
6801 @kindex RET | |
6802 @kindex C-j | |
6803 @emph{Why doesn't the @kbd{RET} key indent the new line?} | |
6804 | |
6805 Emacs' convention is that @kbd{RET} just adds a newline, and that | |
6806 @kbd{C-j} adds a newline and indents it. You can make @kbd{RET} do this | |
6807 too by adding this to your @code{c-initialization-hook}: | |
6808 | |
6809 @example | |
6810 (define-key c-mode-base-map "\C-m" 'c-context-line-break) | |
6811 @end example | |
6812 | |
6813 @xref{Getting Started}. This is a very common question. If you want | |
6814 this to be the default behavior, don't lobby us, lobby RMS! @t{:-)} | |
6815 | |
6816 @item | |
6817 @emph{How do I stop my code jumping all over the place when I type?} | |
6818 | |
6819 Deactivate ``electric minor mode'' with @kbd{C-c C-l}. @xref{Getting | |
6820 Started}. | |
6821 | |
6822 @item | |
6823 @kindex C-x h | |
6824 @kindex C-M-\ | |
6825 @emph{How do I reindent the whole file?} | |
6826 | |
6827 Visit the file and hit @kbd{C-x h} to mark the whole buffer. Then hit | |
6828 @kbd{C-M-\}. @xref{Indentation Commands}. | |
6829 | |
6830 @item | |
6831 @kindex C-M-q | |
6832 @kindex C-M-u | |
6833 @emph{How do I reindent the current block?} | |
6834 | |
6835 First move to the brace which opens the block with @kbd{C-M-u}, then | |
6836 reindent that expression with @kbd{C-M-q}. @xref{Indentation | |
6837 Commands}. | |
6838 | |
6839 @item | |
6840 @emph{I put @code{(c-set-offset 'substatement-open 0)} in my | |
6841 @file{.emacs} file but I get an error saying that @code{c-set-offset}'s | |
6842 function definition is void. What's wrong?} | |
6843 | |
6844 This means that @ccmode{} hasn't yet been loaded into your Emacs | |
6845 session by the time the @code{c-set-offset} call is reached, most | |
6846 likely because @ccmode{} is being autoloaded. Instead of putting the | |
6847 @code{c-set-offset} line in your top-level @file{.emacs} file, put it | |
6848 in your @code{c-initialization-hook} (@pxref{CC Hooks}), or simply | |
6849 modify @code{c-offsets-alist} directly: | |
6850 | |
6851 @example | |
6852 (setq c-offsets-alist '((substatement-open . 0))) | |
6853 @end example | |
6854 | |
6855 @item | |
6856 @cindex open paren in column zero | |
6857 @emph{I have an open paren character at column zero inside a comment or | |
6858 multiline string literal, and it causes the fontification and/or | |
6859 indentation to go haywire. What gives?} | |
6860 | |
6861 It's due to the ad-hoc rule in (X)Emacs that such open parens always | |
6862 start defuns (which translates to functions, classes, namespaces or any | |
6863 other top-level block constructs in the @ccmode{} languages). | |
6864 @ifset XEMACS | |
6865 @xref{Defuns,,, xemacs, XEmacs User's Manual}, for details. | |
6866 @end ifset | |
6867 @ifclear XEMACS | |
6868 @xref{Left Margin Paren,,, emacs, GNU Emacs Manual}, for details | |
6869 (@xref{Defuns,,, emacs, GNU Emacs Manual}, in the Emacs 20 manual). | |
6870 @end ifclear | |
6871 | |
6872 This heuristic is built into the core syntax analysis routines in | |
6873 (X)Emacs, so it's not really a @ccmode{} issue. However, in Emacs | |
6874 21.1 it became possible to turn it off@footnote{Using the variable | |
6875 @code{open-paren-in-column-0-is-defun-start}.} and @ccmode{} does so | |
6876 there since it's got its own system to keep track of blocks. | |
6877 | |
6878 @end itemize | |
6879 | |
6880 | |
6881 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6882 @node Updating CC Mode, Mailing Lists and Bug Reports, FAQ, Top | |
6883 @comment node-name, next, previous, up | |
6884 @appendix Getting the Latest CC Mode Release | |
6885 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6886 | |
6887 @ccmode{} has been standard with all versions of Emacs since 19.34 and | |
6888 of XEmacs since 19.16. | |
6889 | |
6890 @cindex web site | |
6891 Due to release schedule skew, it is likely that all of these Emacsen | |
6892 have old versions of @ccmode{} and so should be upgraded. Access to the | |
6893 @ccmode{} source code, as well as more detailed information on Emacsen | |
6894 compatibility, etc. are all available on the web site: | |
6895 | |
6896 @quotation | |
6897 @uref{http://cc-mode.sourceforge.net/} | |
6898 @end quotation | |
6899 | |
6900 | |
6901 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6902 @node Mailing Lists and Bug Reports, GNU Free Documentation License, Updating CC Mode, Top | |
6903 @comment node-name, next, previous, up | |
6904 @appendix Mailing Lists and Submitting Bug Reports | |
6905 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6906 | |
6907 @kindex C-c C-b | |
6908 @findex c-submit-bug-report | |
6909 @findex submit-bug-report (c-) | |
6910 To report bugs, use the @kbd{C-c C-b} (bound to | |
6911 @code{c-submit-bug-report}) command. This provides vital information | |
6912 we need to reproduce your problem. Make sure you include a concise, | |
6913 but complete code example. Please try to boil your example down to | |
6914 just the essential code needed to reproduce the problem, and include | |
6915 an exact recipe of steps needed to expose the bug. Be especially sure | |
6916 to include any code that appears @emph{before} your bug example, if | |
6917 you think it might affect our ability to reproduce it. | |
6918 | |
6919 Please try to produce the problem in an Emacs instance without any | |
6920 customizations loaded (i.e. start it with the @samp{-q --no-site-file} | |
6921 arguments). If it works correctly there, the problem might be caused | |
6922 by faulty customizations in either your own or your site | |
6923 configuration. In that case, we'd appreciate it if you isolate the | |
6924 Emacs Lisp code that triggers the bug and include it in your report. | |
6925 | |
6926 @cindex bug report mailing list | |
6927 Bug reports should be sent to @email{bug-cc-mode@@gnu.org}. You can | |
6928 also send other questions and suggestions (kudos? @t{;-)} to that | |
6929 address. It's a mailing list which you can join or browse an archive | |
6930 of; see the web site at @uref{http://cc-mode.sourceforge.net/} for | |
6931 further details. | |
6932 | |
6933 @cindex announcement mailing list | |
6934 If you want to get announcements of new @ccmode{} releases, send the | |
6935 word @emph{subscribe} in the body of a message to | |
6936 @email{cc-mode-announce-request@@lists.sourceforge.net}. It's possible | |
6937 to subscribe from the web site too. Announcements will also be posted | |
6938 to the Usenet newsgroups @code{gnu.emacs.sources}, @code{comp.emacs}, | |
6939 @code{comp.emacs.xemacs}, @code{comp.lang.c}, @code{comp.lang.c++}, | |
6940 @code{comp.lang.objective-c}, @code{comp.lang.java.softwaretools}, | |
6941 @code{comp.lang.idl}, and @code{comp.lang.awk}. | |
6942 @c There is no newsgroup for Pike. :-( | |
6943 | |
6944 | |
6945 @node GNU Free Documentation License, Command and Function Index, Mailing Lists and Bug Reports, Top | |
6946 @appendix GNU Free Documentation License | |
6947 @include doclicense.texi | |
6948 | |
6949 | |
6950 @c Removed the tentative node "Mode Initialization" from here, 2005/8/27. | |
6951 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6952 @node Command and Function Index, Variable Index, GNU Free Documentation License, Top | |
6953 @comment node-name, next, previous, up | |
6954 @unnumbered Command and Function Index | |
6955 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6956 | |
6957 Since most @ccmode{} commands are prepended with the string | |
6958 @samp{c-}, each appears under its @code{c-@var{thing}} name and its | |
6959 @code{@var{thing} (c-)} name. | |
6960 @iftex | |
6961 @sp 2 | |
6962 @end iftex | |
6963 @printindex fn | |
6964 | |
6965 | |
6966 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6967 @node Variable Index, Concept and Key Index, Command and Function Index, Top | |
6968 @comment node-name, next, previous, up | |
6969 @unnumbered Variable Index | |
6970 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6971 | |
6972 Since most @ccmode{} variables are prepended with the string | |
6973 @samp{c-}, each appears under its @code{c-@var{thing}} name and its | |
6974 @code{@var{thing} (c-)} name. | |
6975 @iftex | |
6976 @sp 2 | |
6977 @end iftex | |
6978 @printindex vr | |
6979 | |
6980 | |
6981 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6982 @node Concept and Key Index, , Variable Index, Top | |
6983 @comment node-name, next, previous, up | |
6984 @unnumbered Concept and Key Index | |
6985 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6986 | |
6987 @printindex cp | |
6988 | |
6989 | |
6990 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6991 @comment Epilogue. | |
6992 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
6993 | |
6994 @bye | |
6995 | |
6996 @ignore | |
6997 arch-tag: c4cab162-5e57-4366-bdce-4a9db2fc97f0 | |
6998 @end ignore |