Merged in filnet/librepilot/misc_fixes (pull request #484)
[librepilot.git] / make / uncrustify / uncrustify.cfg
blob912b82b3b2c53e5d88af723d85707b8b0f051bad
2 # Uncrustify 0.60
4 # The OpenPilot project source code style and format definitions.
5 # Copyright (c) 2013, The OpenPilot Team, http://www.openpilot.org
8 # Use comments containing '*INDENT-OFF*' and '*INDENT-ON*' to disable
9 # processing of parts of the source file.
12 # General options
15 # The type of line endings
16 newlines                                 = auto     # auto/lf/crlf/cr
18 # The original size of tabs in the input
19 input_tab_size                           = 8        # number
21 # The size of tabs in the output (only used if align_with_tabs=true)
22 output_tab_size                          = 8        # number
24 # The ASCII value of the string escape char, usually 92 (\) or 94 (^). (Pawn)
25 string_escape_char                       = 92       # number
27 # Alternate string escape char for Pawn. Only works right before the quote char.
28 string_escape_char2                      = 0        # number
30 # Allow interpreting '>=' and '>>=' as part of a template in 'void f(list<list<B>>=val);'.
31 # If true (default), 'assert(x<0 && y>=3)' will be broken.
32 # Improvements to template detection may make this option obsolete.
33 tok_split_gte                            = false    # false/true
35 # Control what to do with the UTF-8 BOM (recommend 'remove')
36 utf8_bom                                 = remove   # ignore/add/remove/force
38 # If the file contains bytes with values between 128 and 255, but is not UTF-8, then output as UTF-8
39 utf8_byte                                = false    # false/true
41 # Force the output encoding to UTF-8
42 utf8_force                               = false    # false/true
45 # Indenting
48 # The number of columns to indent per level.
49 # Usually 2, 3, 4, or 8.
50 indent_columns                           = 4        # number
52 # The continuation indent. If non-zero, this overrides the indent of '(' and '=' continuation indents.
53 # For FreeBSD, this is set to 4. Negative value is absolute and not increased for each ( level
54 indent_continue                          = 0        # number
56 # How to use tabs when indenting code
57 # 0=spaces only
58 # 1=indent with tabs to brace level, align with spaces
59 # 2=indent and align with tabs, using spaces when not on a tabstop
60 indent_with_tabs                         = 0        # number
62 # Comments that are not a brace level are indented with tabs on a tabstop.
63 # Requires indent_with_tabs=2. If false, will use spaces.
64 indent_cmt_with_tabs                     = false    # false/true
66 # Whether to indent strings broken by '\' so that they line up
67 indent_align_string                      = false    # false/true
69 # The number of spaces to indent multi-line XML strings.
70 # Requires indent_align_string=True
71 indent_xml_string                        = 0        # number
73 # Spaces to indent '{' from level
74 indent_brace                             = 0        # number
76 # Whether braces are indented to the body level
77 indent_braces                            = false    # false/true
79 # Disabled indenting function braces if indent_braces is true
80 indent_braces_no_func                    = false    # false/true
82 # Disabled indenting class braces if indent_braces is true
83 indent_braces_no_class                   = false    # false/true
85 # Disabled indenting struct braces if indent_braces is true
86 indent_braces_no_struct                  = false    # false/true
88 # Indent based on the size of the brace parent, i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc.
89 indent_brace_parent                      = false    # false/true
91 # Whether the 'namespace' body is indented
92 indent_namespace                         = false    # false/true
94 # The number of spaces to indent a namespace block
95 indent_namespace_level                   = 0        # number
97 # If the body of the namespace is longer than this number, it won't be indented.
98 # Requires indent_namespace=true. Default=0 (no limit)
99 indent_namespace_limit                   = 0        # number
101 # Whether the 'extern "C"' body is indented
102 indent_extern                            = false    # false/true
104 # Whether the 'class' body is indented
105 indent_class                             = true     # false/true
107 # Whether to indent the stuff after a leading class colon
108 indent_class_colon                       = false    # false/true
110 # Virtual indent from the ':' for member initializers. Default is 2
111 indent_ctor_init_leading                 = 2        # number
113 # Additional indenting for constructor initializer list
114 indent_ctor_init                         = 0        # number
116 # False=treat 'else\nif' as 'else if' for indenting purposes
117 # True=indent the 'if' one level
118 indent_else_if                           = false    # false/true
120 # Amount to indent variable declarations after a open brace. neg=relative, pos=absolute
121 indent_var_def_blk                       = 0        # number
123 # Indent continued variable declarations instead of aligning.
124 indent_var_def_cont                      = false    # false/true
126 # True:  force indentation of function definition to start in column 1
127 # False: use the default behavior
128 indent_func_def_force_col1               = false    # false/true
130 # True:  indent continued function call parameters one indent level
131 # False: align parameters under the open paren
132 indent_func_call_param                   = false    # false/true
134 # Same as indent_func_call_param, but for function defs
135 indent_func_def_param                    = false    # false/true
137 # Same as indent_func_call_param, but for function protos
138 indent_func_proto_param                  = false    # false/true
140 # Same as indent_func_call_param, but for class declarations
141 indent_func_class_param                  = false    # false/true
143 # Same as indent_func_call_param, but for class variable constructors
144 indent_func_ctor_var_param               = false    # false/true
146 # Same as indent_func_call_param, but for templates
147 indent_template_param                    = false    # false/true
149 # Double the indent for indent_func_xxx_param options
150 indent_func_param_double                 = false    # false/true
152 # Indentation column for standalone 'const' function decl/proto qualifier
153 indent_func_const                        = 0        # number
155 # Indentation column for standalone 'throw' function decl/proto qualifier
156 indent_func_throw                        = 0        # number
158 # The number of spaces to indent a continued '->' or '.'
159 # Usually set to 0, 1, or indent_columns.
160 indent_member                            = 0        # number
162 # Spaces to indent single line ('//') comments on lines before code
163 indent_sing_line_comments                = 0        # number
165 # If set, will indent trailing single line ('//') comments relative
166 # to the code instead of trying to keep the same absolute column
167 indent_relative_single_line_comments     = true     # false/true
169 # Spaces to indent 'case' from 'switch'
170 # Usually 0 or indent_columns.
171 indent_switch_case                       = 0        # number
173 # Spaces to shift the 'case' line, without affecting any other lines
174 # Usually 0.
175 indent_case_shift                        = 0        # number
177 # Spaces to indent '{' from 'case'.
178 # By default, the brace will appear under the 'c' in case.
179 # Usually set to 0 or indent_columns.
180 indent_case_brace                        = 0        # number
182 # Whether to indent comments found in first column
183 indent_col1_comment                      = false    # false/true
185 # How to indent goto labels
186 #  >0 : absolute column where 1 is the leftmost column
187 #  <=0 : subtract from brace indent
188 indent_label                             = 1        # number
190 # Same as indent_label, but for access specifiers that are followed by a colon
191 indent_access_spec                       = 1        # number
193 # Indent the code after an access specifier by one level.
194 # If set, this option forces 'indent_access_spec=0'
195 indent_access_spec_body                  = false    # false/true
197 # If an open paren is followed by a newline, indent the next line so that it lines up after the open paren (not recommended)
198 indent_paren_nl                          = false    # false/true
200 # Controls the indent of a close paren after a newline.
201 # 0: Indent to body level
202 # 1: Align under the open paren
203 # 2: Indent to the brace level
204 indent_paren_close                       = 0        # number
206 # Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren
207 indent_comma_paren                       = false    # false/true
209 # Controls the indent of a BOOL operator when inside a paren.If TRUE, aligns under the open paren
210 indent_bool_paren                        = false    # false/true
212 # If 'indent_bool_paren' is true, controls the indent of the first expression. If TRUE, aligns the first expression to the following ones
213 indent_first_bool_expr                   = false    # false/true
215 # If an open square is followed by a newline, indent the next line so that it lines up after the open square (not recommended)
216 indent_square_nl                         = false    # false/true
218 # Don't change the relative indent of ESQL/C 'EXEC SQL' bodies
219 indent_preserve_sql                      = false    # false/true
221 # Align continued statements at the '='. Default=True
222 # If FALSE or the '=' is followed by a newline, the next line is indent one tab.
223 indent_align_assign                      = true     # false/true
225 # Indent OC blocks at brace level instead of usual rules.
226 indent_oc_block                          = false    # false/true
228 # Indent OC blocks in a message relative to the parameter name.
229 # 0=use indent_oc_block rules, 1+=spaces to indent
230 indent_oc_block_msg                      = 0        # number
232 # Minimum indent for subsequent parameters
233 indent_oc_msg_colon                      = 0        # number
236 # Spacing options
239 # Add or remove space around arithmetic operator '+', '-', '/', '*', etc
240 sp_arith                                 = force    # ignore/add/remove/force
242 # Add or remove space around assignment operator '=', '+=', etc
243 sp_assign                                = force    # ignore/add/remove/force
245 # Add or remove space around '=' in C++11 lambda capture specifications. Overrides sp_assign
246 sp_cpp_lambda_assign                     = ignore   # ignore/add/remove/force
248 # Add or remove space after the capture specification in C++11 lambda.
249 sp_cpp_lambda_paren                      = ignore   # ignore/add/remove/force
251 # Add or remove space around assignment operator '=' in a prototype
252 sp_assign_default                        = force    # ignore/add/remove/force
254 # Add or remove space before assignment operator '=', '+=', etc. Overrides sp_assign.
255 sp_before_assign                         = ignore   # ignore/add/remove/force
257 # Add or remove space after assignment operator '=', '+=', etc. Overrides sp_assign.
258 sp_after_assign                          = ignore   # ignore/add/remove/force
260 # Add or remove space around assignment '=' in enum
261 sp_enum_assign                           = force    # ignore/add/remove/force
263 # Add or remove space before assignment '=' in enum. Overrides sp_enum_assign.
264 sp_enum_before_assign                    = ignore   # ignore/add/remove/force
266 # Add or remove space after assignment '=' in enum. Overrides sp_enum_assign.
267 sp_enum_after_assign                     = ignore   # ignore/add/remove/force
269 # Add or remove space around preprocessor '##' concatenation operator. Default=Add
270 sp_pp_concat                             = remove   # ignore/add/remove/force
272 # Add or remove space after preprocessor '#' stringify operator. Also affects the '#@' charizing operator.
273 sp_pp_stringify                          = ignore   # ignore/add/remove/force
275 # Add or remove space before preprocessor '#' stringify operator as in '#define x(y) L#y'.
276 sp_before_pp_stringify                   = ignore   # ignore/add/remove/force
278 # Add or remove space around boolean operators '&&' and '||'
279 sp_bool                                  = force    # ignore/add/remove/force
281 # Add or remove space around compare operator '<', '>', '==', etc
282 sp_compare                               = force    # ignore/add/remove/force
284 # Add or remove space inside '(' and ')'
285 sp_inside_paren                          = remove   # ignore/add/remove/force
287 # Add or remove space between nested parens
288 sp_paren_paren                           = remove   # ignore/add/remove/force
290 # Whether to balance spaces inside nested parens
291 sp_balance_nested_parens                 = false    # false/true
293 # Add or remove space between ')' and '{'
294 sp_paren_brace                           = force    # ignore/add/remove/force
296 # Add or remove space before pointer star '*'
297 sp_before_ptr_star                       = force   # ignore/add/remove/force
299 # Add or remove space before pointer star '*' that isn't followed by a variable name
300 # If set to 'ignore', sp_before_ptr_star is used instead.
301 sp_before_unnamed_ptr_star               = ignore   # ignore/add/remove/force
303 # Add or remove space between pointer stars '*'
304 sp_between_ptr_star                      = ignore   # ignore/add/remove/force
306 # Add or remove space after pointer star '*', if followed by a word.
307 sp_after_ptr_star                        = remove   # ignore/add/remove/force
309 # Add or remove space after a pointer star '*', if followed by a func proto/def.
310 sp_after_ptr_star_func                   = remove   # ignore/add/remove/force
312 # Add or remove space after a pointer star '*', if followed by an open paren (function types).
313 sp_ptr_star_paren                        = ignore   # ignore/add/remove/force
315 # Add or remove space before a pointer star '*', if followed by a func proto/def.
316 sp_before_ptr_star_func                  = ignore   # ignore/add/remove/force
318 # Add or remove space before a reference sign '&'
319 sp_before_byref                          = force    # ignore/add/remove/force
321 # Add or remove space before a reference sign '&' that isn't followed by a variable name
322 # If set to 'ignore', sp_before_byref is used instead.
323 sp_before_unnamed_byref                  = ignore   # ignore/add/remove/force
325 # Add or remove space after reference sign '&', if followed by a word.
326 sp_after_byref                           = ignore   # ignore/add/remove/force
328 # Add or remove space after a reference sign '&', if followed by a func proto/def.
329 sp_after_byref_func                      = ignore   # ignore/add/remove/force
331 # Add or remove space before a reference sign '&', if followed by a func proto/def.
332 sp_before_byref_func                     = ignore   # ignore/add/remove/force
334 # Add or remove space between type and word. Default=Force
335 sp_after_type                            = force    # ignore/add/remove/force
337 # Add or remove space before the paren in the D constructs 'template Foo(' and 'class Foo('.
338 sp_before_template_paren                 = ignore   # ignore/add/remove/force
340 # Add or remove space in 'template <' vs 'template<'.
341 # If set to ignore, sp_before_angle is used.
342 sp_template_angle                        = ignore   # ignore/add/remove/force
344 # Add or remove space before '<>'
345 sp_before_angle                          = ignore   # ignore/add/remove/force
347 # Add or remove space inside '<' and '>'
348 sp_inside_angle                          = ignore   # ignore/add/remove/force
350 # Add or remove space after '<>'
351 sp_after_angle                           = ignore   # ignore/add/remove/force
353 # Add or remove space between '<>' and '(' as found in 'new List<byte>();'
354 sp_angle_paren                           = ignore   # ignore/add/remove/force
356 # Add or remove space between '<>' and a word as in 'List<byte> m;'
357 sp_angle_word                            = ignore   # ignore/add/remove/force
359 # Add or remove space between '>' and '>' in '>>' (template stuff C++/C# only). Default=Add
360 sp_angle_shift                           = add      # ignore/add/remove/force
362 # Permit removal of the space between '>>' in 'foo<bar<int> >' (C++11 only). Default=False
363 # sp_angle_shift cannot remove the space without this option.
364 sp_permit_cpp11_shift                    = false    # false/true
366 # Add or remove space before '(' of 'if', 'for', 'switch', and 'while'
367 sp_before_sparen                         = force    # ignore/add/remove/force
369 # Add or remove space inside if-condition '(' and ')'
370 sp_inside_sparen                         = remove   # ignore/add/remove/force
372 # Add or remove space before if-condition ')'. Overrides sp_inside_sparen.
373 sp_inside_sparen_close                   = ignore   # ignore/add/remove/force
375 # Add or remove space before if-condition '('. Overrides sp_inside_sparen.
376 sp_inside_sparen_open                    = ignore   # ignore/add/remove/force
378 # Add or remove space after ')' of 'if', 'for', 'switch', and 'while'
379 sp_after_sparen                          = force    # ignore/add/remove/force
381 # Add or remove space between ')' and '{' of 'if', 'for', 'switch', and 'while'
382 sp_sparen_brace                          = force    # ignore/add/remove/force
384 # Add or remove space between 'invariant' and '(' in the D language.
385 sp_invariant_paren                       = ignore   # ignore/add/remove/force
387 # Add or remove space after the ')' in 'invariant (C) c' in the D language.
388 sp_after_invariant_paren                 = ignore   # ignore/add/remove/force
390 # Add or remove space before empty statement ';' on 'if', 'for' and 'while'
391 sp_special_semi                          = force    # ignore/add/remove/force
393 # Add or remove space before ';'. Default=Remove
394 sp_before_semi                           = remove   # ignore/add/remove/force
396 # Add or remove space before ';' in non-empty 'for' statements
397 sp_before_semi_for                       = remove   # ignore/add/remove/force
399 # Add or remove space before a semicolon of an empty part of a for statement.
400 sp_before_semi_for_empty                 = remove   # ignore/add/remove/force
402 # Add or remove space after ';', except when followed by a comment. Default=Add
403 sp_after_semi                            = force    # ignore/add/remove/force
405 # Add or remove space after ';' in non-empty 'for' statements. Default=Force
406 sp_after_semi_for                        = force    # ignore/add/remove/force
408 # Add or remove space after the final semicolon of an empty part of a for statement: for ( ; ; <here> ).
409 sp_after_semi_for_empty                  = remove   # ignore/add/remove/force
411 # Add or remove space before '[' (except '[]')
412 sp_before_square                         = remove   # ignore/add/remove/force
414 # Add or remove space before '[]'
415 sp_before_squares                        = remove   # ignore/add/remove/force
417 # Add or remove space inside a non-empty '[' and ']'
418 sp_inside_square                         = remove   # ignore/add/remove/force
420 # Add or remove space after ','
421 sp_after_comma                           = force    # ignore/add/remove/force
423 # Add or remove space before ','
424 sp_before_comma                          = remove   # ignore/add/remove/force
426 # Add or remove space between an open paren and comma: '(,' vs '( ,'
427 sp_paren_comma                           = force    # ignore/add/remove/force
429 # Add or remove space before the variadic '...' when preceded by a non-punctuator
430 sp_before_ellipsis                       = ignore   # ignore/add/remove/force
432 # Add or remove space after class ':'
433 sp_after_class_colon                     = ignore   # ignore/add/remove/force
435 # Add or remove space before class ':'
436 sp_before_class_colon                    = ignore   # ignore/add/remove/force
438 # Add or remove space before case ':'. Default=Remove
439 sp_before_case_colon                     = remove   # ignore/add/remove/force
441 # Add or remove space between 'operator' and operator sign
442 sp_after_operator                        = ignore   # ignore/add/remove/force
444 # Add or remove space between the operator symbol and the open paren, as in 'operator ++('
445 sp_after_operator_sym                    = ignore   # ignore/add/remove/force
447 # Add or remove space after C/D cast, i.e. 'cast(int)a' vs 'cast(int) a' or '(int)a' vs '(int) a'
448 sp_after_cast                            = remove   # ignore/add/remove/force
450 # Add or remove spaces inside cast parens
451 sp_inside_paren_cast                     = remove   # ignore/add/remove/force
453 # Add or remove space between the type and open paren in a C++ cast, i.e. 'int(exp)' vs 'int (exp)'
454 sp_cpp_cast_paren                        = remove   # ignore/add/remove/force
456 # Add or remove space between 'sizeof' and '('
457 sp_sizeof_paren                          = remove   # ignore/add/remove/force
459 # Add or remove space after the tag keyword (Pawn)
460 sp_after_tag                             = ignore   # ignore/add/remove/force
462 # Add or remove space inside enum '{' and '}'
463 sp_inside_braces_enum                    = force    # ignore/add/remove/force
465 # Add or remove space inside struct/union '{' and '}'
466 sp_inside_braces_struct                  = force    # ignore/add/remove/force
468 # Add or remove space inside '{' and '}'
469 sp_inside_braces                         = force    # ignore/add/remove/force
471 # Add or remove space inside '{}'
472 sp_inside_braces_empty                   = remove   # ignore/add/remove/force
474 # Add or remove space between return type and function name
475 # A minimum of 1 is forced except for pointer return types.
476 sp_type_func                             = ignore   # ignore/add/remove/force
478 # Add or remove space between function name and '(' on function declaration
479 sp_func_proto_paren                      = remove   # ignore/add/remove/force
481 # Add or remove space between function name and '(' on function definition
482 sp_func_def_paren                        = remove   # ignore/add/remove/force
484 # Add or remove space inside empty function '()'
485 sp_inside_fparens                        = remove   # ignore/add/remove/force
487 # Add or remove space inside function '(' and ')'
488 sp_inside_fparen                         = remove   # ignore/add/remove/force
490 # Add or remove space inside the first parens in the function type: 'void (*x)(...)'
491 sp_inside_tparen                         = remove   # ignore/add/remove/force
493 # Add or remove between the parens in the function type: 'void (*x)(...)'
494 sp_after_tparen_close                    = remove   # ignore/add/remove/force
496 # Add or remove space between ']' and '(' when part of a function call.
497 sp_square_fparen                         = remove   # ignore/add/remove/force
499 # Add or remove space between ')' and '{' of function
500 sp_fparen_brace                          = force   # ignore/add/remove/force
502 # Add or remove space between function name and '(' on function calls
503 sp_func_call_paren                       = remove  # ignore/add/remove/force
505 # Add or remove space between function name and '()' on function calls without parameters.
506 # If set to 'ignore' (the default), sp_func_call_paren is used.
507 sp_func_call_paren_empty                 = ignore   # ignore/add/remove/force
509 # Add or remove space between the user function name and '(' on function calls
510 # You need to set a keyword to be a user function, like this: 'set func_call_user _' in the config file.
511 sp_func_call_user_paren                  = ignore   # ignore/add/remove/force
513 # Add or remove space between a constructor/destructor and the open paren
514 sp_func_class_paren                      = remove   # ignore/add/remove/force
516 # Add or remove space between 'return' and '('
517 sp_return_paren                          = force    # ignore/add/remove/force
519 # Add or remove space between '__attribute__' and '('
520 sp_attribute_paren                       = remove   # ignore/add/remove/force
522 # Add or remove space between 'defined' and '(' in '#if defined (FOO)'
523 sp_defined_paren                         = remove   # ignore/add/remove/force
525 # Add or remove space between 'throw' and '(' in 'throw (something)'
526 sp_throw_paren                           = remove   # ignore/add/remove/force
528 # Add or remove space between 'throw' and anything other than '(' as in '@throw [...];'
529 sp_after_throw                           = ignore   # ignore/add/remove/force
531 # Add or remove space between 'catch' and '(' in 'catch (something) { }'
532 # If set to ignore, sp_before_sparen is used.
533 sp_catch_paren                           = remove   # ignore/add/remove/force
535 # Add or remove space between 'version' and '(' in 'version (something) { }' (D language)
536 # If set to ignore, sp_before_sparen is used.
537 sp_version_paren                         = ignore   # ignore/add/remove/force
539 # Add or remove space between 'scope' and '(' in 'scope (something) { }' (D language)
540 # If set to ignore, sp_before_sparen is used.
541 sp_scope_paren                           = ignore   # ignore/add/remove/force
543 # Add or remove space between macro and value
544 sp_macro                                 = force    # ignore/add/remove/force
546 # Add or remove space between macro function ')' and value
547 sp_macro_func                            = force    # ignore/add/remove/force
549 # Add or remove space between 'else' and '{' if on the same line
550 sp_else_brace                            = force    # ignore/add/remove/force
552 # Add or remove space between '}' and 'else' if on the same line
553 sp_brace_else                            = force    # ignore/add/remove/force
555 # Add or remove space between '}' and the name of a typedef on the same line
556 sp_brace_typedef                         = force    # ignore/add/remove/force
558 # Add or remove space between 'catch' and '{' if on the same line
559 sp_catch_brace                           = force    # ignore/add/remove/force
561 # Add or remove space between '}' and 'catch' if on the same line
562 sp_brace_catch                           = force    # ignore/add/remove/force
564 # Add or remove space between 'finally' and '{' if on the same line
565 sp_finally_brace                         = force    # ignore/add/remove/force
567 # Add or remove space between '}' and 'finally' if on the same line
568 sp_brace_finally                         = force    # ignore/add/remove/force
570 # Add or remove space between 'try' and '{' if on the same line
571 sp_try_brace                             = force    # ignore/add/remove/force
573 # Add or remove space between get/set and '{' if on the same line
574 sp_getset_brace                          = force    # ignore/add/remove/force
576 # Add or remove space before the '::' operator
577 sp_before_dc                             = remove   # ignore/add/remove/force
579 # Add or remove space after the '::' operator
580 sp_after_dc                              = remove   # ignore/add/remove/force
582 # Add or remove around the D named array initializer ':' operator
583 sp_d_array_colon                         = ignore   # ignore/add/remove/force
585 # Add or remove space after the '!' (not) operator. Default=Remove
586 sp_not                                   = remove   # ignore/add/remove/force
588 # Add or remove space after the '~' (invert) operator. Default=Remove
589 sp_inv                                   = remove   # ignore/add/remove/force
591 # Add or remove space after the '&' (address-of) operator. Default=Remove
592 # This does not affect the spacing after a '&' that is part of a type.
593 sp_addr                                  = remove   # ignore/add/remove/force
595 # Add or remove space around the '.' or '->' operators. Default=Remove
596 sp_member                                = remove   # ignore/add/remove/force
598 # Add or remove space after the '*' (dereference) operator. Default=Remove
599 # This does not affect the spacing after a '*' that is part of a type.
600 sp_deref                                 = remove   # ignore/add/remove/force
602 # Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. Default=Remove
603 sp_sign                                  = remove   # ignore/add/remove/force
605 # Add or remove space before or after '++' and '--', as in '(--x)' or 'y++;'. Default=Remove
606 sp_incdec                                = remove   # ignore/add/remove/force
608 # Add or remove space before a backslash-newline at the end of a line. Default=Add
609 sp_before_nl_cont                        = add      # ignore/add/remove/force
611 # Add or remove space after the scope '+' or '-', as in '-(void) foo;' or '+(int) bar;'
612 sp_after_oc_scope                        = ignore   # ignore/add/remove/force
614 # Add or remove space after the colon in message specs
615 # '-(int) f:(int) x;' vs '-(int) f: (int) x;'
616 sp_after_oc_colon                        = ignore   # ignore/add/remove/force
618 # Add or remove space before the colon in message specs
619 # '-(int) f: (int) x;' vs '-(int) f : (int) x;'
620 sp_before_oc_colon                       = ignore   # ignore/add/remove/force
622 # Add or remove space after the colon in immutable dictionary expression
623 # 'NSDictionary *test = @{@"foo" :@"bar"};'
624 sp_after_oc_dict_colon                   = ignore   # ignore/add/remove/force
626 # Add or remove space before the colon in immutable dictionary expression
627 # 'NSDictionary *test = @{@"foo" :@"bar"};'
628 sp_before_oc_dict_colon                  = ignore   # ignore/add/remove/force
630 # Add or remove space after the colon in message specs
631 # '[object setValue:1];' vs '[object setValue: 1];'
632 sp_after_send_oc_colon                   = ignore   # ignore/add/remove/force
634 # Add or remove space before the colon in message specs
635 # '[object setValue:1];' vs '[object setValue :1];'
636 sp_before_send_oc_colon                  = ignore   # ignore/add/remove/force
638 # Add or remove space after the (type) in message specs
639 # '-(int)f: (int) x;' vs '-(int)f: (int)x;'
640 sp_after_oc_type                         = ignore   # ignore/add/remove/force
642 # Add or remove space after the first (type) in message specs
643 # '-(int) f:(int)x;' vs '-(int)f:(int)x;'
644 sp_after_oc_return_type                  = ignore   # ignore/add/remove/force
646 # Add or remove space between '@selector' and '('
647 # '@selector(msgName)' vs '@selector (msgName)'
648 # Also applies to @protocol() constructs
649 sp_after_oc_at_sel                       = ignore   # ignore/add/remove/force
651 # Add or remove space between '@selector(x)' and the following word
652 # '@selector(foo) a:' vs '@selector(foo)a:'
653 sp_after_oc_at_sel_parens                = ignore   # ignore/add/remove/force
655 # Add or remove space inside '@selector' parens
656 # '@selector(foo)' vs '@selector( foo )'
657 # Also applies to @protocol() constructs
658 sp_inside_oc_at_sel_parens               = ignore   # ignore/add/remove/force
660 # Add or remove space before a block pointer caret
661 # '^int (int arg){...}' vs. ' ^int (int arg){...}'
662 sp_before_oc_block_caret                 = ignore   # ignore/add/remove/force
664 # Add or remove space after a block pointer caret
665 # '^int (int arg){...}' vs. '^ int (int arg){...}'
666 sp_after_oc_block_caret                  = ignore   # ignore/add/remove/force
668 # Add or remove space between the receiver and selector in a message.
669 # '[receiver selector ...]'
670 sp_after_oc_msg_receiver                 = ignore   # ignore/add/remove/force
672 # Add or remove space after @property.
673 sp_after_oc_property                     = ignore   # ignore/add/remove/force
675 # Add or remove space around the ':' in 'b ? t : f'
676 sp_cond_colon                            = force    # ignore/add/remove/force
678 # Add or remove space around the '?' in 'b ? t : f'
679 sp_cond_question                         = force    # ignore/add/remove/force
681 # Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make sense here.
682 sp_case_label                            = force    # ignore/add/remove/force
684 # Control the space around the D '..' operator.
685 sp_range                                 = ignore   # ignore/add/remove/force
687 # Control the spacing after ':' in 'for (TYPE VAR : EXPR)' (Java)
688 sp_after_for_colon                       = ignore   # ignore/add/remove/force
690 # Control the spacing before ':' in 'for (TYPE VAR : EXPR)' (Java)
691 sp_before_for_colon                      = ignore   # ignore/add/remove/force
693 # Control the spacing in 'extern (C)' (D)
694 sp_extern_paren                          = ignore   # ignore/add/remove/force
696 # Control the space after the opening of a C++ comment '// A' vs '//A'
697 sp_cmt_cpp_start                         = force    # ignore/add/remove/force
699 # Controls the spaces between #else or #endif and a trailing comment
700 sp_endif_cmt                             = force    # ignore/add/remove/force
702 # Controls the spaces after 'new', 'delete', and 'delete[]'
703 sp_after_new                             = force    # ignore/add/remove/force
705 # Controls the spaces before a trailing or embedded comment
706 sp_before_tr_emb_cmt                     = force    # ignore/add/remove/force
708 # Number of spaces before a trailing or embedded comment
709 sp_num_before_tr_emb_cmt                 = 1        # number
711 # Control space between a Java annotation and the open paren.
712 sp_annotation_paren                      = ignore   # ignore/add/remove/force
715 # Code alignment (not left column spaces/tabs)
718 # Whether to keep non-indenting tabs
719 align_keep_tabs                          = false    # false/true
721 # Whether to use tabs for aligning
722 align_with_tabs                          = false    # false/true
724 # Whether to bump out to the next tab when aligning
725 align_on_tabstop                         = false    # false/true
727 # Whether to left-align numbers
728 align_number_left                        = false    # false/true
730 # Align variable definitions in prototypes and functions
731 align_func_params                        = false    # false/true
733 # Align parameters in single-line functions that have the same name.
734 # The function names must already be aligned with each other.
735 align_same_func_call_params              = false    # false/true
737 # The span for aligning variable definitions (0=don't align)
738 align_var_def_span                       = 0        # number
740 # How to align the star in variable definitions.
741 #  0=Part of the type     'void *   foo;'
742 #  1=Part of the variable 'void     *foo;'
743 #  2=Dangling             'void    *foo;'
744 align_var_def_star_style                 = 1        # number
746 # How to align the '&' in variable definitions.
747 #  0=Part of the type
748 #  1=Part of the variable
749 #  2=Dangling
750 align_var_def_amp_style                  = 1        # number
752 # The threshold for aligning variable definitions (0=no limit)
753 align_var_def_thresh                     = 0        # number
755 # The gap for aligning variable definitions
756 align_var_def_gap                        = 0        # number
758 # Whether to align the colon in struct bit fields
759 align_var_def_colon                      = false    # false/true
761 # Whether to align any attribute after the variable name
762 align_var_def_attribute                  = false    # false/true
764 # Whether to align inline struct/enum/union variable definitions
765 align_var_def_inline                     = true     # false/true
767 # The span for aligning on '=' in assignments (0=don't align)
768 align_assign_span                        = 3        # number
770 # The threshold for aligning on '=' in assignments (0=no limit)
771 align_assign_thresh                      = 4        # number
773 # The span for aligning on '=' in enums (0=don't align)
774 align_enum_equ_span                      = 3        # number
776 # The threshold for aligning on '=' in enums (0=no limit)
777 align_enum_equ_thresh                    = 4        # number
779 # The span for aligning struct/union (0=don't align)
780 align_var_struct_span                    = 3        # number
782 # The threshold for aligning struct/union member definitions (0=no limit)
783 align_var_struct_thresh                  = 4        # number
785 # The gap for aligning struct/union member definitions
786 align_var_struct_gap                     = 0        # number
788 # The span for aligning struct initializer values (0=don't align)
789 align_struct_init_span                   = 3        # number
791 # The minimum space between the type and the synonym of a typedef
792 align_typedef_gap                        = 0        # number
794 # The span for aligning single-line typedefs (0=don't align)
795 align_typedef_span                       = 0        # number
797 # How to align typedef'd functions with other typedefs
798 # 0: Don't mix them at all
799 # 1: align the open paren with the types
800 # 2: align the function type name with the other type names
801 align_typedef_func                       = 0        # number
803 # Controls the positioning of the '*' in typedefs. Just try it.
804 # 0: Align on typedef type, ignore '*'
805 # 1: The '*' is part of type name: typedef int  *pint;
806 # 2: The '*' is part of the type, but dangling: typedef int *pint;
807 align_typedef_star_style                 = 0        # number
809 # Controls the positioning of the '&' in typedefs. Just try it.
810 # 0: Align on typedef type, ignore '&'
811 # 1: The '&' is part of type name: typedef int  &pint;
812 # 2: The '&' is part of the type, but dangling: typedef int &pint;
813 align_typedef_amp_style                  = 0        # number
815 # The span for aligning comments that end lines (0=don't align)
816 align_right_cmt_span                     = 0        # number
818 # If aligning comments, mix with comments after '}' and #endif with less than 3 spaces before the comment
819 align_right_cmt_mix                      = false    # false/true
821 # If a trailing comment is more than this number of columns away from the text it follows,
822 # it will qualify for being aligned. This has to be > 0 to do anything.
823 align_right_cmt_gap                      = 0        # number
825 # Align trailing comment at or beyond column N; 'pulls in' comments as a bonus side effect (0=ignore)
826 align_right_cmt_at_col                   = 0        # number
828 # The span for aligning function prototypes (0=don't align)
829 align_func_proto_span                    = 0        # number
831 # Minimum gap between the return type and the function name.
832 align_func_proto_gap                     = 0        # number
834 # Align function protos on the 'operator' keyword instead of what follows
835 align_on_operator                        = false    # false/true
837 # Whether to mix aligning prototype and variable declarations.
838 # If true, align_var_def_XXX options are used instead of align_func_proto_XXX options.
839 align_mix_var_proto                      = false    # false/true
841 # Align single-line functions with function prototypes, uses align_func_proto_span
842 align_single_line_func                   = false    # false/true
844 # Aligning the open brace of single-line functions.
845 # Requires align_single_line_func=true, uses align_func_proto_span
846 align_single_line_brace                  = false    # false/true
848 # Gap for align_single_line_brace.
849 align_single_line_brace_gap              = 0        # number
851 # The span for aligning ObjC msg spec (0=don't align)
852 align_oc_msg_spec_span                   = 0        # number
854 # Whether to align macros wrapped with a backslash and a newline.
855 # This will not work right if the macro contains a multi-line comment.
856 align_nl_cont                            = false    # false/true
858 # # Align macro functions and variables together
859 align_pp_define_together                 = false    # false/true
861 # The minimum space between label and value of a preprocessor define
862 align_pp_define_gap                      = 0        # number
864 # The span for aligning on '#define' bodies (0=don't align)
865 align_pp_define_span                     = 5        # number
867 # Align lines that start with '<<' with previous '<<'. Default=true
868 align_left_shift                         = true     # false/true
870 # Span for aligning parameters in an Obj-C message call on the ':' (0=don't align)
871 align_oc_msg_colon_span                  = 0        # number
873 # If true, always align with the first parameter, even if it is too short.
874 align_oc_msg_colon_first                 = false    # false/true
876 # Aligning parameters in an Obj-C '+' or '-' declaration on the ':'
877 align_oc_decl_colon                      = false    # false/true
880 # Newline adding and removing options
883 # Whether to collapse empty blocks between '{' and '}'
884 nl_collapse_empty_body                   = true     # false/true
886 # Don't split one-line braced assignments - 'foo_t f = { 1, 2 };'
887 nl_assign_leave_one_liners               = false    # false/true
889 # Don't split one-line braced statements inside a class xx { } body
890 nl_class_leave_one_liners                = false    # false/true
892 # Don't split one-line enums: 'enum foo { BAR = 15 };'
893 nl_enum_leave_one_liners                 = false    # false/true
895 # Don't split one-line get or set functions
896 nl_getset_leave_one_liners               = false    # false/true
898 # Don't split one-line function definitions - 'int foo() { return 0; }'
899 nl_func_leave_one_liners                 = false    # false/true
901 # Don't split one-line if/else statements - 'if(a) b++;'
902 nl_if_leave_one_liners                   = false    # false/true
904 # Don't split one-line OC messages
905 nl_oc_msg_leave_one_liner                = false    # false/true
907 # Add or remove newlines at the start of the file
908 nl_start_of_file                         = remove   # ignore/add/remove/force
910 # The number of newlines at the start of the file (only used if nl_start_of_file is 'add' or 'force'
911 nl_start_of_file_min                     = 0        # number
913 # Add or remove newline at the end of the file
914 nl_end_of_file                           = force    # ignore/add/remove/force
916 # The number of newlines at the end of the file (only used if nl_end_of_file is 'add' or 'force')
917 nl_end_of_file_min                       = 1        # number
919 # Add or remove newline between '=' and '{'
920 nl_assign_brace                          = remove   # ignore/add/remove/force
922 # Add or remove newline between '=' and '[' (D only)
923 nl_assign_square                         = ignore   # ignore/add/remove/force
925 # Add or remove newline after '= [' (D only). Will also affect the newline before the ']'
926 nl_after_square_assign                   = ignore   # ignore/add/remove/force
928 # The number of blank lines after a block of variable definitions at the top of a function body
929 # 0 = No change (default)
930 nl_func_var_def_blk                      = 1        # number
932 # The number of newlines before a block of typedefs
933 # 0 = No change (default)
934 nl_typedef_blk_start                     = 0        # number
936 # The number of newlines after a block of typedefs
937 # 0 = No change (default)
938 nl_typedef_blk_end                       = 0        # number
940 # The maximum consecutive newlines within a block of typedefs
941 # 0 = No change (default)
942 nl_typedef_blk_in                        = 0        # number
944 # The number of newlines before a block of variable definitions not at the top of a function body
945 # 0 = No change (default)
946 nl_var_def_blk_start                     = 0        # number
948 # The number of newlines after a block of variable definitions not at the top of a function body
949 # 0 = No change (default)
950 nl_var_def_blk_end                       = 0        # number
952 # The maximum consecutive newlines within a block of variable definitions
953 # 0 = No change (default)
954 nl_var_def_blk_in                        = 0        # number
956 # Add or remove newline between a function call's ')' and '{', as in:
957 # list_for_each(item, &list) { }
958 nl_fcall_brace                           = remove   # ignore/add/remove/force
960 # Add or remove newline between 'enum' and '{'
961 nl_enum_brace                            = remove   # ignore/add/remove/force
963 # Add or remove newline between 'struct and '{'
964 nl_struct_brace                          = remove   # ignore/add/remove/force
966 # Add or remove newline between 'union' and '{'
967 nl_union_brace                           = remove   # ignore/add/remove/force
969 # Add or remove newline between 'if' and '{'
970 nl_if_brace                              = remove   # ignore/add/remove/force
972 # Add or remove newline between '}' and 'else'
973 nl_brace_else                            = remove   # ignore/add/remove/force
975 # Add or remove newline between 'else if' and '{'
976 # If set to ignore, nl_if_brace is used instead
977 nl_elseif_brace                          = ignore   # ignore/add/remove/force
979 # Add or remove newline between 'else' and '{'
980 nl_else_brace                            = remove   # ignore/add/remove/force
982 # Add or remove newline between 'else' and 'if'
983 nl_else_if                               = remove   # ignore/add/remove/force
985 # Add or remove newline between '}' and 'finally'
986 nl_brace_finally                         = remove   # ignore/add/remove/force
988 # Add or remove newline between 'finally' and '{'
989 nl_finally_brace                         = remove   # ignore/add/remove/force
991 # Add or remove newline between 'try' and '{'
992 nl_try_brace                             = remove   # ignore/add/remove/force
994 # Add or remove newline between get/set and '{'
995 nl_getset_brace                          = remove   # ignore/add/remove/force
997 # Add or remove newline between 'for' and '{'
998 nl_for_brace                             = remove   # ignore/add/remove/force
1000 # Add or remove newline between 'catch' and '{'
1001 nl_catch_brace                           = remove   # ignore/add/remove/force
1003 # Add or remove newline between '}' and 'catch'
1004 nl_brace_catch                           = remove   # ignore/add/remove/force
1006 # Add or remove newline between 'while' and '{'
1007 nl_while_brace                           = remove   # ignore/add/remove/force
1009 # Add or remove newline between 'scope (x)' and '{' (D)
1010 nl_scope_brace                           = ignore   # ignore/add/remove/force
1012 # Add or remove newline between 'unittest' and '{' (D)
1013 nl_unittest_brace                        = ignore   # ignore/add/remove/force
1015 # Add or remove newline between 'version (x)' and '{' (D)
1016 nl_version_brace                         = ignore   # ignore/add/remove/force
1018 # Add or remove newline between 'using' and '{'
1019 nl_using_brace                           = remove   # ignore/add/remove/force
1021 # Add or remove newline between two open or close braces.
1022 # Due to general newline/brace handling, REMOVE may not work.
1023 nl_brace_brace                           = force   # ignore/add/remove/force
1025 # Add or remove newline between 'do' and '{'
1026 nl_do_brace                              = remove   # ignore/add/remove/force
1028 # Add or remove newline between '}' and 'while' of 'do' statement
1029 nl_brace_while                           = remove   # ignore/add/remove/force
1031 # Add or remove newline between 'switch' and '{'
1032 nl_switch_brace                          = remove   # ignore/add/remove/force
1034 # Add a newline between ')' and '{' if the ')' is on a different line than the if/for/etc.
1035 # Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch, and nl_catch_brace.
1036 nl_multi_line_cond                       = false    # false/true
1038 # Force a newline in a define after the macro name for multi-line defines.
1039 nl_multi_line_define                     = true     # false/true
1041 # Whether to put a newline before 'case' statement
1042 nl_before_case                           = false    # false/true
1044 # Add or remove newline between ')' and 'throw'
1045 nl_before_throw                          = ignore   # ignore/add/remove/force
1047 # Whether to put a newline after 'case' statement
1048 nl_after_case                            = false    # false/true
1050 # Add or remove a newline between a case ':' and '{'. Overrides nl_after_case.
1051 nl_case_colon_brace                      = force    # ignore/add/remove/force
1053 # Newline between namespace and {
1054 nl_namespace_brace                       = remove   # ignore/add/remove/force
1056 # Add or remove newline between 'template<>' and whatever follows.
1057 nl_template_class                        = ignore   # ignore/add/remove/force
1059 # Add or remove newline between 'class' and '{'
1060 nl_class_brace                           = remove   # ignore/add/remove/force
1062 # Add or remove newline after each ',' in the constructor member initialization
1063 nl_class_init_args                       = ignore   # ignore/add/remove/force
1065 # Add or remove newline between return type and function name in a function definition
1066 nl_func_type_name                        = remove   # ignore/add/remove/force
1068 # Add or remove newline between return type and function name inside a class {}
1069 # Uses nl_func_type_name or nl_func_proto_type_name if set to ignore.
1070 nl_func_type_name_class                  = ignore   # ignore/add/remove/force
1072 # Add or remove newline between function scope and name in a definition
1073 # Controls the newline after '::' in 'void A::f() { }'
1074 nl_func_scope_name                       = ignore   # ignore/add/remove/force
1076 # Add or remove newline between return type and function name in a prototype
1077 nl_func_proto_type_name                  = remove   # ignore/add/remove/force
1079 # Add or remove newline between a function name and the opening '('
1080 nl_func_paren                            = remove   # ignore/add/remove/force
1082 # Add or remove newline between a function name and the opening '(' in the definition
1083 nl_func_def_paren                        = remove   # ignore/add/remove/force
1085 # Add or remove newline after '(' in a function declaration
1086 nl_func_decl_start                       = ignore   # ignore/add/remove/force
1088 # Add or remove newline after '(' in a function definition
1089 nl_func_def_start                        = ignore   # ignore/add/remove/force
1091 # Overrides nl_func_decl_start when there is only one parameter.
1092 nl_func_decl_start_single                = ignore   # ignore/add/remove/force
1094 # Overrides nl_func_def_start when there is only one parameter.
1095 nl_func_def_start_single                 = ignore   # ignore/add/remove/force
1097 # Add or remove newline after each ',' in a function declaration
1098 nl_func_decl_args                        = ignore   # ignore/add/remove/force
1100 # Add or remove newline after each ',' in a function definition
1101 nl_func_def_args                         = ignore   # ignore/add/remove/force
1103 # Add or remove newline before the ')' in a function declaration
1104 nl_func_decl_end                         = remove   # ignore/add/remove/force
1106 # Add or remove newline before the ')' in a function definition
1107 nl_func_def_end                          = remove   # ignore/add/remove/force
1109 # Overrides nl_func_decl_end when there is only one parameter.
1110 nl_func_decl_end_single                  = ignore   # ignore/add/remove/force
1112 # Overrides nl_func_def_end when there is only one parameter.
1113 nl_func_def_end_single                   = ignore   # ignore/add/remove/force
1115 # Add or remove newline between '()' in a function declaration.
1116 nl_func_decl_empty                       = remove   # ignore/add/remove/force
1118 # Add or remove newline between '()' in a function definition.
1119 nl_func_def_empty                        = remove   # ignore/add/remove/force
1121 # Whether to put each OC message parameter on a separate line
1122 # See nl_oc_msg_leave_one_liner
1123 nl_oc_msg_args                           = false    # false/true
1125 # Add or remove newline between function signature and '{'
1126 nl_fdef_brace                            = force    # ignore/add/remove/force
1128 # Add or remove a newline between the return keyword and return expression.
1129 nl_return_expr                           = remove   # ignore/add/remove/force
1131 # Whether to put a newline after semicolons, except in 'for' statements
1132 nl_after_semicolon                       = false    # false/true
1134 # Whether to put a newline after brace open.
1135 # This also adds a newline before the matching brace close.
1136 nl_after_brace_open                      = false    # false/true
1138 # If nl_after_brace_open and nl_after_brace_open_cmt are true, a newline is
1139 # placed between the open brace and a trailing single-line comment.
1140 nl_after_brace_open_cmt                  = false    # false/true
1142 # Whether to put a newline after a virtual brace open with a non-empty body.
1143 # These occur in un-braced if/while/do/for statement bodies.
1144 nl_after_vbrace_open                     = true     # false/true
1146 # Whether to put a newline after a virtual brace open with an empty body.
1147 # These occur in un-braced if/while/do/for statement bodies.
1148 nl_after_vbrace_open_empty               = false    # false/true
1150 # Whether to put a newline after a brace close.
1151 # Does not apply if followed by a necessary ';'.
1152 nl_after_brace_close                     = true    # false/true
1154 # Whether to put a newline after a virtual brace close.
1155 # Would add a newline before return in: 'if (foo) a++; return;'
1156 nl_after_vbrace_close                    = true    # false/true
1158 # Control the newline between the close brace and 'b' in: 'struct { int a; } b;'
1159 # Affects enums, unions, and structures. If set to ignore, uses nl_after_brace_close
1160 nl_brace_struct_var                      = remove   # ignore/add/remove/force
1162 # Whether to alter newlines in '#define' macros
1163 nl_define_macro                          = false    # false/true
1165 # Whether to not put blanks after '#ifxx', '#elxx', or before '#endif'
1166 nl_squeeze_ifdef                         = false    # false/true
1168 # Add or remove blank line before 'if'
1169 nl_before_if                             = ignore   # ignore/add/remove/force
1171 # Add or remove blank line after 'if' statement
1172 nl_after_if                              = ignore   # ignore/add/remove/force
1174 # Add or remove blank line before 'for'
1175 nl_before_for                            = ignore   # ignore/add/remove/force
1177 # Add or remove blank line after 'for' statement
1178 nl_after_for                             = ignore   # ignore/add/remove/force
1180 # Add or remove blank line before 'while'
1181 nl_before_while                          = ignore   # ignore/add/remove/force
1183 # Add or remove blank line after 'while' statement
1184 nl_after_while                           = ignore   # ignore/add/remove/force
1186 # Add or remove blank line before 'switch'
1187 nl_before_switch                         = ignore   # ignore/add/remove/force
1189 # Add or remove blank line after 'switch' statement
1190 nl_after_switch                          = ignore   # ignore/add/remove/force
1192 # Add or remove blank line before 'do'
1193 nl_before_do                             = ignore   # ignore/add/remove/force
1195 # Add or remove blank line after 'do/while' statement
1196 nl_after_do                              = ignore   # ignore/add/remove/force
1198 # Whether to double-space commented-entries in struct/enum
1199 nl_ds_struct_enum_cmt                    = false    # false/true
1201 # Whether to double-space before the close brace of a struct/union/enum
1202 # (lower priority than 'eat_blanks_before_close_brace')
1203 nl_ds_struct_enum_close_brace            = false    # false/true
1205 # Add or remove a newline around a class colon.
1206 # Related to pos_class_colon, nl_class_init_args, and pos_comma.
1207 nl_class_colon                           = ignore   # ignore/add/remove/force
1209 # Change simple unbraced if statements into a one-liner
1210 # 'if(b)\n i++;' => 'if(b) i++;'
1211 nl_create_if_one_liner                   = false    # false/true
1213 # Change simple unbraced for statements into a one-liner
1214 # 'for (i=0;i<5;i++)\n foo(i);' => 'for (i=0;i<5;i++) foo(i);'
1215 nl_create_for_one_liner                  = false    # false/true
1217 # Change simple unbraced while statements into a one-liner
1218 # 'while (i<5)\n foo(i++);' => 'while (i<5) foo(i++);'
1219 nl_create_while_one_liner                = false    # false/true
1222 # Positioning options
1225 # The position of arithmetic operators in wrapped expressions
1226 pos_arith                                = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1228 # The position of assignment in wrapped expressions.
1229 # Do not affect '=' followed by '{'
1230 pos_assign                               = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1232 # The position of boolean operators in wrapped expressions
1233 pos_bool                                 = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1235 # The position of comparison operators in wrapped expressions
1236 pos_compare                              = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1238 # The position of conditional (b ? t : f) operators in wrapped expressions
1239 pos_conditional                          = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1241 # The position of the comma in wrapped expressions
1242 pos_comma                                = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1244 # The position of the comma in the constructor initialization list
1245 pos_class_comma                          = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1247 # The position of colons between constructor and member initialization
1248 pos_class_colon                          = ignore   # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force
1251 # Line Splitting options
1254 # Try to limit code width to N number of columns
1255 code_width                               = 0        # number
1257 # Whether to fully split long 'for' statements at semi-colons
1258 ls_for_split_full                        = false    # false/true
1260 # Whether to fully split long function protos/calls at commas
1261 ls_func_split_full                       = false    # false/true
1263 # Whether to split lines as close to code_width as possible and ignore some groupings
1264 ls_code_width                            = false    # false/true
1267 # Blank line options
1270 # The maximum consecutive newlines
1271 nl_max                                   = 3        # number
1273 # The number of newlines after a function prototype, if followed by another function prototype
1274 nl_after_func_proto                      = 0        # number
1276 # The number of newlines after a function prototype, if not followed by another function prototype
1277 nl_after_func_proto_group                = 0        # number
1279 # The number of newlines after '}' of a multi-line function body
1280 nl_after_func_body                       = 0        # number
1282 # The number of newlines after '}' of a multi-line function body in a class declaration
1283 nl_after_func_body_class                 = 0        # number
1285 # The number of newlines after '}' of a single line function body
1286 nl_after_func_body_one_liner             = 0        # number
1288 # The minimum number of newlines before a multi-line comment.
1289 # Doesn't apply if after a brace open or another multi-line comment.
1290 nl_before_block_comment                  = 0        # number
1292 # The minimum number of newlines before a single-line C comment.
1293 # Doesn't apply if after a brace open or other single-line C comments.
1294 nl_before_c_comment                      = 0        # number
1296 # The minimum number of newlines before a CPP comment.
1297 # Doesn't apply if after a brace open or other CPP comments.
1298 nl_before_cpp_comment                    = 0        # number
1300 # Whether to force a newline after a multi-line comment.
1301 nl_after_multiline_comment               = false    # false/true
1303 # The number of newlines after '}' or ';' of a struct/enum/union definition
1304 nl_after_struct                          = 0        # number
1306 # The number of newlines after '}' or ';' of a class definition
1307 nl_after_class                           = 0        # number
1309 # The number of newlines before a 'private:', 'public:', 'protected:', 'signals:', or 'slots:' label.
1310 # Will not change the newline count if after a brace open.
1311 # 0 = No change.
1312 nl_before_access_spec                    = 0        # number
1314 # The number of newlines after a 'private:', 'public:', 'protected:', 'signals:', or 'slots:' label.
1315 # 0 = No change.
1316 nl_after_access_spec                     = 0        # number
1318 # The number of newlines between a function def and the function comment.
1319 # 0 = No change.
1320 nl_comment_func_def                      = 0        # number
1322 # The number of newlines after a try-catch-finally block that isn't followed by a brace close.
1323 # 0 = No change.
1324 nl_after_try_catch_finally               = 0        # number
1326 # The number of newlines before and after a property, indexer or event decl.
1327 # 0 = No change.
1328 nl_around_cs_property                    = 0        # number
1330 # The number of newlines between the get/set/add/remove handlers in C#.
1331 # 0 = No change.
1332 nl_between_get_set                       = 0        # number
1334 # Add or remove newline between C# property and the '{'
1335 nl_property_brace                        = ignore   # ignore/add/remove/force
1337 # Whether to remove blank lines after '{'
1338 eat_blanks_after_open_brace              = true     # false/true
1340 # Whether to remove blank lines before '}'
1341 eat_blanks_before_close_brace            = true    # false/true
1343 # How aggressively to remove extra newlines not in preproc.
1344 # 0: No change
1345 # 1: Remove most newlines not handled by other config
1346 # 2: Remove all newlines and reformat completely by config
1347 nl_remove_extra_newlines                 = 0        # number
1349 # Whether to put a blank line before 'return' statements, unless after an open brace.
1350 nl_before_return                         = false    # false/true
1352 # Whether to put a blank line after 'return' statements, unless followed by a close brace.
1353 nl_after_return                          = true     # false/true
1355 # Whether to put a newline after a Java annotation statement.
1356 # Only affects annotations that are after a newline.
1357 nl_after_annotation                      = ignore   # ignore/add/remove/force
1359 # Controls the newline between two annotations.
1360 nl_between_annotation                    = ignore   # ignore/add/remove/force
1363 # Code modifying options (non-whitespace)
1366 # Add or remove braces on single-line 'do' statement
1367 mod_full_brace_do                        = force    # ignore/add/remove/force
1369 # Add or remove braces on single-line 'for' statement
1370 mod_full_brace_for                       = force    # ignore/add/remove/force
1372 # Add or remove braces on single-line function definitions. (Pawn)
1373 mod_full_brace_function                  = ignore   # ignore/add/remove/force
1375 # Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'.
1376 mod_full_brace_if                        = force    # ignore/add/remove/force
1378 # Make all if/elseif/else statements in a chain be braced or not. Overrides mod_full_brace_if.
1379 # If any must be braced, they are all braced.  If all can be unbraced, then the braces are removed.
1380 mod_full_brace_if_chain                  = false    # false/true
1382 # Don't remove braces around statements that span N newlines
1383 mod_full_brace_nl                        = 0        # number
1385 # Add or remove braces on single-line 'while' statement
1386 mod_full_brace_while                     = force    # ignore/add/remove/force
1388 # Add or remove braces on single-line 'using ()' statement
1389 mod_full_brace_using                     = ignore   # ignore/add/remove/force
1391 # Add or remove unnecessary paren on 'return' statement
1392 mod_paren_on_return                      = remove   # ignore/add/remove/force
1394 # Whether to change optional semicolons to real semicolons
1395 mod_pawn_semicolon                       = false    # false/true
1397 # Add parens on 'while' and 'if' statement around bools
1398 mod_full_paren_if_bool                   = false    # false/true
1400 # Whether to remove superfluous semicolons
1401 mod_remove_extra_semicolon               = false    # false/true
1403 # If a function body exceeds the specified number of newlines and doesn't have a comment after
1404 # the close brace, a comment will be added.
1405 mod_add_long_function_closebrace_comment = 0        # number
1407 # If a switch body exceeds the specified number of newlines and doesn't have a comment after
1408 # the close brace, a comment will be added.
1409 mod_add_long_switch_closebrace_comment   = 0        # number
1411 # If an #ifdef body exceeds the specified number of newlines and doesn't have a comment after
1412 # the #endif, a comment will be added.
1413 mod_add_long_ifdef_endif_comment         = 20       # number
1415 # If an #ifdef or #else body exceeds the specified number of newlines and doesn't have a comment after
1416 # the #else, a comment will be added.
1417 mod_add_long_ifdef_else_comment          = 20       # number
1419 # If TRUE, will sort consecutive single-line 'import' statements [Java, D]
1420 mod_sort_import                          = false    # false/true
1422 # If TRUE, will sort consecutive single-line 'using' statements [C#]
1423 mod_sort_using                           = false    # false/true
1425 # If TRUE, will sort consecutive single-line '#include' statements [C/C++] and '#import' statements [Obj-C]
1426 # This is generally a bad idea, as it may break your code.
1427 mod_sort_include                         = false    # false/true
1429 # If TRUE, it will move a 'break' that appears after a fully braced 'case' before the close brace.
1430 mod_move_case_break                      = false    # false/true
1432 # Will add or remove the braces around a fully braced case statement.
1433 # Will only remove the braces if there are no variable declarations in the block.
1434 mod_case_brace                           = ignore   # ignore/add/remove/force
1436 # If TRUE, it will remove a void 'return;' that appears as the last statement in a function.
1437 mod_remove_empty_return                  = true     # false/true
1440 # Comment modifications
1443 # Try to wrap comments at cmt_width columns
1444 cmt_width                                = 0        # number
1446 # Set the comment reflow mode (default: 0)
1447 # 0: no reflowing (apart from the line wrapping due to cmt_width)
1448 # 1: no touching at all
1449 # 2: full reflow
1450 cmt_reflow_mode                          = 0        # number
1452 # If false, disable all multi-line comment changes, including cmt_width. keyword substitution, and leading chars.
1453 # Default is true.
1454 cmt_indent_multi                         = true     # false/true
1456 # Whether to group c-comments that look like they are in a block
1457 cmt_c_group                              = false    # false/true
1459 # Whether to put an empty '/*' on the first line of the combined c-comment
1460 cmt_c_nl_start                           = false    # false/true
1462 # Whether to put a newline before the closing '*/' of the combined c-comment
1463 cmt_c_nl_end                             = false    # false/true
1465 # Whether to group cpp-comments that look like they are in a block
1466 cmt_cpp_group                            = false    # false/true
1468 # Whether to put an empty '/*' on the first line of the combined cpp-comment
1469 cmt_cpp_nl_start                         = false    # false/true
1471 # Whether to put a newline before the closing '*/' of the combined cpp-comment
1472 cmt_cpp_nl_end                           = false    # false/true
1474 # Whether to change cpp-comments into c-comments
1475 cmt_cpp_to_c                             = false    # false/true
1477 # Whether to put a star on subsequent comment lines
1478 cmt_star_cont                            = false    # false/true
1480 # The number of spaces to insert at the start of subsequent comment lines
1481 cmt_sp_before_star_cont                  = 0        # number
1483 # The number of spaces to insert after the star on subsequent comment lines
1484 cmt_sp_after_star_cont                   = 0        # number
1486 # For multi-line comments with a '*' lead, remove leading spaces if the first and last lines of
1487 # the comment are the same length. Default=True
1488 cmt_multi_check_last                     = true     # false/true
1490 # The filename that contains text to insert at the head of a file if the file doesn't start with a C/C++ comment.
1491 # Will substitute $(filename) with the current file's name.
1492 cmt_insert_file_header                   = ""         # string
1494 # The filename that contains text to insert at the end of a file if the file doesn't end with a C/C++ comment.
1495 # Will substitute $(filename) with the current file's name.
1496 cmt_insert_file_footer                   = ""         # string
1498 # The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment.
1499 # Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff.
1500 # Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... }
1501 cmt_insert_func_header                   = ""         # string
1503 # The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment.
1504 # Will substitute $(class) with the class name.
1505 cmt_insert_class_header                  = ""         # string
1507 # The filename that contains text to insert before a Obj-C message specification if the method isn't preceeded with a C/C++ comment.
1508 # Will substitute $(message) with the function name and $(javaparam) with the javadoc @param and @return stuff.
1509 cmt_insert_oc_msg_header                 = ""         # string
1511 # If a preprocessor is encountered when stepping backwards from a function name, then
1512 # this option decides whether the comment should be inserted.
1513 # Affects cmt_insert_oc_msg_header, cmt_insert_func_header and cmt_insert_class_header.
1514 cmt_insert_before_preproc                = false    # false/true
1517 # Preprocessor options
1520 # Control indent of preprocessors inside #if blocks at brace level 0
1521 pp_indent                                = ignore   # ignore/add/remove/force
1523 # Whether to indent #if/#else/#endif at the brace level (true) or from column 1 (false)
1524 pp_indent_at_level                       = false    # false/true
1526 # If pp_indent_at_level=false, specifies the number of columns to indent per level. Default=1.
1527 pp_indent_count                          = 1        # number
1529 # Add or remove space after # based on pp_level of #if blocks
1530 pp_space                                 = ignore   # ignore/add/remove/force
1532 # Sets the number of spaces added with pp_space
1533 pp_space_count                           = 0        # number
1535 # The indent for #region and #endregion in C# and '#pragma region' in C/C++
1536 pp_indent_region                         = 0        # number
1538 # Whether to indent the code between #region and #endregion
1539 pp_region_indent_code                    = false    # false/true
1541 # If pp_indent_at_level=true, sets the indent for #if, #else, and #endif when not at file-level
1542 pp_indent_if                             = 0        # number
1544 # Control whether to indent the code between #if, #else and #endif when not at file-level
1545 pp_if_indent_code                        = false    # false/true
1547 # Whether to indent '#define' at the brace level (true) or from column 1 (false)
1548 pp_define_at_level                       = false    # false/true
1550 # You can force a token to be a type with the 'type' option.
1551 # Example:
1552 # type myfoo1 myfoo2
1554 # You can create custom macro-based indentation using macro-open,
1555 # macro-else and macro-close.
1556 # Example:
1557 # macro-open  BEGIN_TEMPLATE_MESSAGE_MAP
1558 # macro-open  BEGIN_MESSAGE_MAP
1559 # macro-close END_MESSAGE_MAP
1561 # You can assign any keyword to any type with the set option.
1562 # set func_call_user _ N_
1564 # The full syntax description of all custom definition config entries
1565 # is shown below:
1567 # define custom tokens as:
1568 # - embed whitespace in token using '' escape character, or
1569 #   put token in quotes
1570 # - these: ' " and ` are recognized as quote delimiters
1572 # type token1 token2 token3 ...
1573 #             ^ optionally specify multiple tokens on a single line
1574 # define def_token output_token
1575 #                  ^ output_token is optional, then NULL is assumed
1576 # macro-open token
1577 # macro-close token
1578 # macro-else token
1579 # set id token1 token2 ...
1580 #               ^ optionally specify multiple tokens on a single line
1581 #     ^ id is one of the names in token_enum.h sans the CT_ prefix,
1582 #       e.g. PP_PRAGMA
1584 # all tokens are separated by any mix of ',' commas, '=' equal signs
1585 # and whitespace (space, tab)