Initial revision
[emacs.git] / lisp / progmodes / cc-vars.el
blob96e1b809ab82392bf3daec4ecbaabab080c6fc15
1 ;;; cc-vars.el --- user customization variables for CC Mode
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc.
5 ;; Authors: 1992-1997 Barry A. Warsaw
6 ;; 1987 Dave Detlefs and Stewart Clamen
7 ;; 1985 Richard M. Stallman
8 ;; Maintainer: cc-mode-help@python.org
9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
10 ;; Version: 5.12
11 ;; Keywords: c languages oop
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
30 (require 'custom)
33 (defcustom c-strict-syntax-p nil
34 "*If non-nil, all syntactic symbols must be found in `c-offsets-alist'.
35 If the syntactic symbol for a particular line does not match a symbol
36 in the offsets alist, an error is generated, otherwise no error is
37 reported and the syntactic symbol is ignored."
38 :type 'boolean
39 :group 'c)
41 (defcustom c-echo-syntactic-information-p nil
42 "*If non-nil, syntactic info is echoed when the line is indented."
43 :type 'boolean
44 :group 'c)
46 (defcustom c-basic-offset 4
47 "*Amount of basic offset used by + and - symbols in `c-offsets-alist'."
48 :type 'integer
49 :group 'c)
51 (defcustom c-tab-always-indent t
52 "*Controls the operation of the TAB key.
53 If t, hitting TAB always just indents the current line. If nil,
54 hitting TAB indents the current line if point is at the left margin or
55 in the line's indentation, otherwise it insert a `real' tab character
56 \(see note\). If other than nil or t, then tab is inserted only
57 within literals -- defined as comments and strings -- and inside
58 preprocessor directives, but line is always reindented.
60 Note: The value of `indent-tabs-mode' will determine whether a real
61 tab character will be inserted, or the equivalent number of space.
62 When inserting a tab, actually the function stored in the variable
63 `c-insert-tab-function' is called.
65 Note: indentation of lines containing only comments is also controlled
66 by the `c-comment-only-line-offset' variable."
67 :type '(radio
68 :extra-offset 8
69 :format "%{C Tab Always Indent%}:\n The TAB key:\n%v"
70 (const :tag "always indents, never inserts TAB" t)
71 (const :tag "indents in left margin, otherwise inserts TAB" nil)
72 (const :tag "inserts TAB in literals, otherwise indent" other))
73 :group 'c)
75 (defcustom c-insert-tab-function 'insert-tab
76 "*Function used when inserting a tab for \\[TAB].
77 Only used when `c-tab-always-indent' indicates a `real' tab character
78 should be inserted. Value must be a function taking no arguments."
79 :type 'function
80 :group 'c)
82 (defcustom c-comment-only-line-offset 0
83 "*Extra offset for line which contains only the start of a comment.
84 Can contain an integer or a cons cell of the form:
86 (NON-ANCHORED-OFFSET . ANCHORED-OFFSET)
88 Where NON-ANCHORED-OFFSET is the amount of offset given to
89 non-column-zero anchored comment-only lines, and ANCHORED-OFFSET is
90 the amount of offset to give column-zero anchored comment-only lines.
91 Just an integer as value is equivalent to (<val> . -1000)."
92 :type '(choice (integer :tag "Non-anchored offset")
93 (cons :tag "Non-anchored & anchored offset"
94 :value (0 . 0)
95 :extra-offset 8
96 (integer :tag "Non-anchored offset")
97 (integer :tag "Anchored offset")))
98 :group 'c)
100 (defcustom c-indent-comments-syntactically-p nil
101 "*Specifies how comment-only lines should be indented.
102 When this variable is non-nil, comment-only lines are indented
103 according to syntactic analysis via `c-offsets-alist', even when
104 \\[indent-for-comment] is used."
105 :type 'boolean
106 :group 'c)
108 (defcustom c-cleanup-list '(scope-operator)
109 "*List of various C/C++/ObjC constructs to \"clean up\".
110 These clean ups only take place when the auto-newline feature is
111 turned on, as evidenced by the `/a' or `/ah' appearing next to the
112 mode name. Valid symbols are:
114 brace-else-brace -- cleans up `} else {' constructs by placing entire
115 construct on a single line. This clean up
116 only takes place when there is nothing but
117 white space between the braces and the `else'.
118 Clean up occurs when the open-brace after the
119 `else' is typed.
120 brace-elseif-brace -- similar to brace-else-brace, but cleans up
121 `} else if {' constructs.
122 empty-defun-braces -- cleans up empty defun braces by placing the
123 braces on the same line. Clean up occurs when
124 the defun closing brace is typed.
125 defun-close-semi -- cleans up the terminating semi-colon on defuns
126 by placing the semi-colon on the same line as
127 the closing brace. Clean up occurs when the
128 semi-colon is typed.
129 list-close-comma -- cleans up commas following braces in array
130 and aggregate initializers. Clean up occurs
131 when the comma is typed.
132 scope-operator -- cleans up double colons which may designate
133 a C++ scope operator split across multiple
134 lines. Note that certain C++ constructs can
135 generate ambiguous situations. This clean up
136 only takes place when there is nothing but
137 whitespace between colons. Clean up occurs
138 when the second colon is typed."
139 :type '(set
140 :extra-offset 8
141 (const :tag "Put `} else {' on one line" brace-else-brace)
142 (const :tag "Put `} else if {' on one line" brace-elseif-brace)
143 (const :tag "Put empty defun braces on one line" empty-defun-braces)
144 (const :tag "Put `},' in aggregates on one line" list-close-comma)
145 (const :tag "Put C++ style `::' on one line" scope-operator))
146 :group 'c)
148 (defcustom c-hanging-braces-alist '((brace-list-open)
149 (substatement-open after)
150 (block-close . c-snug-do-while)
151 (extern-lang-open after)
153 "*Controls the insertion of newlines before and after braces.
154 This variable contains an association list with elements of the
155 following form: (SYNTACTIC-SYMBOL . ACTION).
157 When a brace (either opening or closing) is inserted, the syntactic
158 context it defines is looked up in this list, and if found, the
159 associated ACTION is used to determine where newlines are inserted.
160 If the context is not found, the default is to insert a newline both
161 before and after the brace.
163 SYNTACTIC-SYMBOL can be any of: defun-open, defun-close, class-open,
164 class-close, inline-open, inline-close, block-open, block-close,
165 substatement-open, statement-case-open, extern-lang-open,
166 extern-lang-close, brace-list-open, brace-list-close,
167 brace-list-intro, or brace-list-entry. See `c-offsets-alist' for
168 details.
170 ACTION can be either a function symbol or a list containing any
171 combination of the symbols `before' or `after'. If the list is empty,
172 no newlines are inserted either before or after the brace.
174 When ACTION is a function symbol, the function is called with a two
175 arguments: the syntactic symbol for the brace and the buffer position
176 at which the brace was inserted. The function must return a list as
177 described in the preceding paragraph. Note that during the call to
178 the function, the variable `c-syntactic-context' is set to the entire
179 syntactic context for the brace line."
180 :type '(repeat
181 (cons :format "%v"
182 (choice :tag "Syntax"
183 (const defun-open) (const defun-close)
184 (const class-open) (const class-close)
185 (const inline-open) (const inline-close)
186 (const block-open) (const block-close)
187 (const substatement-open) (const statement-case-open)
188 (const extern-lang-open) (const extern-lang-close)
189 (const brace-list-open) (const brace-list-close)
190 (const brace-list-intro) (const brace-list-entry))
191 (choice :tag "Action"
192 (set :format "Insert a newline %v"
193 :extra-offset 38
194 (const :tag "before brace" before)
195 (const :tag "after brace" after))
196 (function :format "Run function %v" :value c-)
198 :group 'c)
200 (defcustom c-hanging-colons-alist nil
201 "*Controls the insertion of newlines before and after certain colons.
202 This variable contains an association list with elements of the
203 following form: (SYNTACTIC-SYMBOL . ACTION).
205 SYNTACTIC-SYMBOL can be any of: case-label, label, access-label,
206 member-init-intro, or inher-intro.
208 See the variable `c-hanging-braces-alist' for the semantics of this
209 variable. Note however that making ACTION a function symbol is
210 currently not supported for this variable."
211 :type '(repeat
212 (cons :format "%v"
213 (choice :tag "Syntax"
214 (const case-label) (const label) (const access-label)
215 (const member-init-intro) (const inher-intro))
216 (set :tag "Action"
217 :format "%t: %v"
218 :extra-offset 8
219 (const before) (const after))))
220 :group 'c)
222 (defcustom c-hanging-semi&comma-criteria '(c-semi&comma-inside-parenlist)
223 "*List of functions that decide whether to insert a newline or not.
224 The functions in this list are called, in order, whenever the
225 auto-newline minor mode is activated (as evidenced by a `/a' or `/ah'
226 string in the mode line), and a semicolon or comma is typed (see
227 `c-electric-semi&comma'). Each function in this list is called with
228 no arguments, and should return one of the following values:
230 nil -- no determination made, continue checking
231 'stop -- do not insert a newline, and stop checking
232 (anything else) -- insert a newline, and stop checking
234 If every function in the list is called with no determination made,
235 then no newline is inserted."
236 :type '(repeat function)
237 :group 'c)
239 (defcustom c-hanging-comment-ender-p t
240 "*Controls what \\[fill-paragraph] does to C block comment enders.
241 When set to nil, C block comment enders are left on their own line.
242 When set to t, block comment enders will be placed at the end of the
243 previous line (i.e. they `hang' on that line)."
244 :type 'boolean
245 :group 'c)
247 (defcustom c-hanging-comment-starter-p t
248 "*Controls what \\[fill-paragraph] does to C block comment starters.
249 When set to nil, C block comment starters are left on their own line.
250 When set to t, text that follows a block comment starter will be
251 placed on the same line as the block comment starter (i.e. the text
252 `hangs' on that line)."
253 :type 'boolean
254 :group 'c)
256 (defcustom c-backslash-column 48
257 "*Column to insert backslashes when macroizing a region."
258 :type 'integer
259 :group 'c)
261 (defcustom c-special-indent-hook nil
262 "*Hook for user defined special indentation adjustments.
263 This hook gets called after a line is indented by the mode."
264 :type 'hook
265 :group 'c)
267 (defcustom c-backspace-function 'backward-delete-char-untabify
268 "*Function called by `c-electric-backspace' when deleting backwards."
269 :type 'function
270 :group 'c)
272 (defcustom c-delete-function 'delete-char
273 "*Function called by `c-electric-delete' when deleting forwards."
274 :type 'function
275 :group 'c)
277 (defcustom c-electric-pound-behavior nil
278 "*List of behaviors for electric pound insertion.
279 Only currently supported behavior is `alignleft'."
280 :type '(set :extra-offset 8 (const alignleft))
281 :group 'c)
283 (defcustom c-label-minimum-indentation 1
284 "*Minimum indentation for lines inside of top-level constructs.
285 This variable typically only affects code using the `gnu' style, which
286 mandates a minimum of one space in front of every line inside
287 top-level constructs. Specifically, the function
288 `c-gnu-impose-minimum' on your `c-special-indent-hook' is what
289 enforces this."
290 :type 'integer
291 :group 'c)
293 (defcustom c-progress-interval 5
294 "*Interval used to update progress status during long re-indentation.
295 If a number, percentage complete gets updated after each interval of
296 that many seconds. Set to nil to inhibit updating. This is only
297 useful for Emacs 19."
298 :type 'integer
299 :group 'c)
301 (defcustom c-site-default-style "gnu"
302 "Default style for your site.
303 To change the default style at your site, you can set this variable to
304 any style defined in `c-style-alist'. However, if CC Mode is usually
305 loaded into your Emacs at compile time, you will need to set this
306 variable in the `site-init.el' file before CC Mode is loaded, then
307 re-dump Emacs."
308 :type 'string
309 :group 'c)
311 (defcustom c-style-variables-are-local-p nil
312 "*Whether style variables should be buffer local by default.
313 If non-nil, then all indentation style related variables will be made
314 buffer local by default. If nil, they will remain global. Variables
315 are made buffer local when this file is loaded, and once buffer
316 localized, they cannot be made global again.
318 The list of variables to buffer localize are:
319 c-offsets-alist
320 c-basic-offset
321 c-file-style
322 c-file-offsets
323 c-comment-only-line-offset
324 c-cleanup-list
325 c-hanging-braces-alist
326 c-hanging-colons-alist
327 c-hanging-comment-starter-p
328 c-hanging-comment-ender-p
329 c-backslash-column
330 c-label-minimum-indentation
331 c-special-indent-hook
332 c-indentation-style"
333 :type 'boolean
334 :group 'c)
336 (defcustom c-mode-hook nil
337 "*Hook called by `c-mode'."
338 :type '(hook :format "%{C Mode Hook%}:\n%v")
339 :group 'c)
341 (defcustom c++-mode-hook nil
342 "*Hook called by `c++-mode'."
343 :type 'hook
344 :group 'c)
346 (defcustom objc-mode-hook nil
347 "*Hook called by `objc-mode'."
348 :type 'hook
349 :group 'c)
351 (defcustom java-mode-hook nil
352 "*Hook called by `java-mode'."
353 :type 'hook
354 :group 'c)
356 (defcustom c-mode-common-hook nil
357 "*Hook called by all CC Mode modes for common initializations."
358 :type '(hook :format "%{CC Mode Common Hook%}:\n%v")
359 :group 'c)
363 ;; Non-customizable variables, still part of the interface to CC Mode
364 (defvar c-file-style nil
365 "Variable interface for setting style via File Local Variables.
366 In a file's Local Variable section, you can set this variable to a
367 string suitable for `c-set-style'. When the file is visited, CC Mode
368 will set the style of the file to this value automatically.
370 Note that file style settings are applied before file offset settings
371 as designated in the variable `c-file-offsets'.")
373 (defvar c-file-offsets nil
374 "Variable interface for setting offsets via File Local Variables.
375 In a file's Local Variable section, you can set this variable to an
376 association list similar to the values allowed in `c-offsets-alist'.
377 When the file is visited, CC Mode will institute these offset settings
378 automatically.
380 Note that file offset settings are applied after file style settings
381 as designated in the variable `c-file-style'.")
383 (defvar c-syntactic-context nil
384 "Variable containing syntactic analysis list during indentation.")
386 (defvar c-indentation-style c-site-default-style
387 "Name of style installed in the current buffer.")
390 (provide 'cc-vars)
391 ;;; cc-vars.el ends here