diff --git a/indenters/uigui_uncrustify.ini b/indenters/uigui_uncrustify.ini old mode 100755 new mode 100644 index e16e560..157b419 --- a/indenters/uigui_uncrustify.ini +++ b/indenters/uigui_uncrustify.ini @@ -1,8 +1,8 @@ [header] -categories=General options|Indenting|Spacing options|Code alignment (not left column spaces/tabs)|Newline adding and removing options|Positioning options|Line Splitting options|Blank line options|Code modifying options (non-whitespace)|Comment modifications|Preprocessor options +categories=(0)General options|(15)Spacing options|(273)Indenting options|(389)Newline adding and removing options|(575)Blank line options|(625)Positioning options|(637)Line splitting options|(641)Code alignment options (not left column spaces/tabs)|(713)Comment modification options|(742)Code modifying options (non-whitespace)|(799)Preprocessor options|(820)Sort includes options|(823)Use or Do not Use options|(829)Warn levels - 1: error, 2: warning (default), 3: note cfgFileParameterEnding=cr configFilename=uncrustify.cfg -fileTypes=*.c|*.cpp|*.d|*.cs|*.vala|*.java|*.pawn|*.p|*.sma|*.inl|*.h|*.cxx|*.hpp|*.hxx|*.cc|*.di|*.m|*.mm|*.sqc|*.es +fileTypes=*.c|*.c++|*.cc|*.cp|*.cpp|*.cs|*.cxx|*.d|*.di|*.es|*.h|*.h++|*.hh|*.hp|*.hpp|*.hxx|*.inl|*.java|*.js|*.m|*.mm|*.p|*.pawn|*.sma|*.sqc|*.sql|*.vala indenterFileName=uncrustify indenterName=Uncrustify (C, C++, C#, ObjectiveC, D, Java, Pawn, VALA) inputFileName=indentinput @@ -15,20 +15,20 @@ parameterOrder=ipo showHelpParameter=-h stringparaminquotes=false useCfgFileParameter="-c " -version=0.59 +version=Uncrustify_d-0.76.0-148-ce753d9e9 [Newlines] Category=0 -Description="The type of line endings" +Description="(0)The type of line endings.

Default: auto" Enabled=false EditorType=multiple -Choices="newlines=lf|newlines=crlf|newlines=cr|newlines=auto" -ChoicesReadable="Newlines Mac|Newlines Win|Newlines Unix|Newlines Auto" -ValueDefault=3 +Choices=newlines=lf|newlines=crlf|newlines=cr|newlines=auto +ChoicesReadable="(0)Newlines Unix|(0)Newlines Win|(0)Newlines Mac|(0)Newlines Auto" +ValueDefault=auto [Input Tab Size] Category=0 -Description="The original size of tabs in the input" +Description="(1)The original size of tabs in the input.

Default: 8" Enabled=false EditorType=numeric CallName="input_tab_size=" @@ -38,7 +38,7 @@ ValueDefault=8 [Output Tab Size] Category=0 -Description="The size of tabs in the output (only used if align_with_tabs=true)" +Description="(2)The size of tabs in the output (only used if align_with_tabs=true).

Default: 8" Enabled=false EditorType=numeric CallName="output_tab_size=" @@ -48,7 +48,7 @@ ValueDefault=8 [String Escape Char] Category=0 -Description="The ASCII value of the string escape char, usually 92 (\) or 94 (^). (Pawn)" +Description="(3)The ASCII value of the string escape char, usually 92 (\) or (Pawn) 94 (^).

Default: 92" Enabled=false EditorType=numeric CallName="string_escape_char=" @@ -58,7 +58,7 @@ ValueDefault=92 [String Escape Char2] Category=0 -Description="Alternate string escape char for Pawn. Only works right before the quote char." +Description="(4)Alternate string escape char (usually only used for Pawn).
Only works right before the quote char." Enabled=false EditorType=numeric CallName="string_escape_char2=" @@ -66,3225 +66,6654 @@ MinVal=0 MaxVal=255 ValueDefault=0 +[String Replace Tab Chars] +Category=0 +Description="(5)Replace tab characters found in string literals with the escape sequence \t
instead." +Enabled=false +EditorType=boolean +TrueFalse=string_replace_tab_chars=true|string_replace_tab_chars=false +ValueDefault=false + [Tok Split Gte] Category=0 -Description="Allow interpreting '>=' and '>>=' as part of a template in 'void f(list<list<B>>=val);'.
If true (default), 'assert(x<0 && y>=3)' will be broken.
Improvements to template detection may make this option obsolete." +Description="(6)Allow interpreting '>=' and '>>=' as part of a template in code like
'void f(list<list<B>>=val);'. If true, 'assert(x<0 && y>=3)' will be broken.
Improvements to template detection may make this option obsolete." Enabled=false EditorType=boolean TrueFalse=tok_split_gte=true|tok_split_gte=false -ValueDefault=0 +ValueDefault=false + +[Disable Processing Nl Cont] +Category=0 +Description="(7)Disable formatting of NL_CONT ('\\n') ended lines (e.g. multi-line macros)." +Enabled=false +EditorType=boolean +TrueFalse=disable_processing_nl_cont=true|disable_processing_nl_cont=false +ValueDefault=false + +[Disable Processing Cmt] +Category=0 +Description="(8)Specify the marker used in comments to disable processing of part of the
file.

Default: *INDENT-OFF*" +Enabled=false +CallName=disable_processing_cmt= +EditorType=string +ValueDefault= *INDENT-OFF* + +[Enable Processing Cmt] +Category=0 +Description="(9)Specify the marker used in comments to (re)enable processing in a file.

Default: *INDENT-ON*" +Enabled=false +CallName=enable_processing_cmt= +EditorType=string +ValueDefault= *INDENT-ON* + +[Enable Digraphs] +Category=0 +Description="(10)Enable parsing of digraphs." +Enabled=false +EditorType=boolean +TrueFalse=enable_digraphs=true|enable_digraphs=false +ValueDefault=false + +[Processing Cmt As Regex] +Category=0 +Description="(11)Option to allow both disable_processing_cmt and enable_processing_cmt
strings, if specified, to be interpreted as ECMAScript regular expressions.
If true, a regex search will be performed within comments according to the
specified patterns in order to disable/enable processing." +Enabled=false +EditorType=boolean +TrueFalse=processing_cmt_as_regex=true|processing_cmt_as_regex=false +ValueDefault=false [Utf8 Bom] Category=0 -Description="Control what to do with the UTF-8 BOM (recommed 'remove')" +Description="(12)Add or remove the UTF-8 BOM (recommend 'remove')." Enabled=false EditorType=multiple -Choices="utf8_bom=ignore|utf8_bom=add|utf8_bom=remove|utf8_bom=force" -ChoicesReadable="Ignore Utf8 Bom|Add Utf8 Bom|Remove Utf8 Bom|Force Utf8 Bom" -ValueDefault=0 +Choices=utf8_bom=ignore|utf8_bom=add|utf8_bom=remove|utf8_bom=force|utf8_bom=not_defined +ChoicesReadable="(12)Ignore Utf8 Bom|(12)Add Utf8 Bom|(12)Remove Utf8 Bom|(12)Force Utf8 Bom" +ValueDefault=ignore [Utf8 Byte] Category=0 -Description="If the file only contains chars between 128 and 255 and is not UTF-8, then output as UTF-8" +Description="(13)If the file contains bytes with values between 128 and 255, but is not
UTF-8, then output as UTF-8." Enabled=false EditorType=boolean TrueFalse=utf8_byte=true|utf8_byte=false -ValueDefault=0 +ValueDefault=false [Utf8 Force] Category=0 -Description="Force the output encoding to UTF-8" +Description="(14)Force the output encoding to UTF-8." Enabled=false EditorType=boolean TrueFalse=utf8_force=true|utf8_force=false -ValueDefault=0 +ValueDefault=false -[Indent Columns] +[Sp Arith] Category=1 -Description="The number of columns to indent per level.
Usually 2, 3, 4, or 8." +Description="(15)Add or remove space around non-assignment symbolic operators ('+', '/', '%',
'<<', and so forth)." Enabled=false -EditorType=numeric -CallName="indent_columns=" -MinVal=0 -MaxVal=16 -ValueDefault=8 +EditorType=multiple +Choices=sp_arith=ignore|sp_arith=add|sp_arith=remove|sp_arith=force|sp_arith=not_defined +ChoicesReadable="(15)Ignore Sp Arith|(15)Add Sp Arith|(15)Remove Sp Arith|(15)Force Sp Arith" +ValueDefault=ignore -[Indent Continue] +[Sp Arith Additive] Category=1 -Description="The continuation indent. If non-zero, this overrides the indent of '(' and '=' continuation indents.
For FreeBSD, this is set to 4." +Description="(16)Add or remove space around arithmetic operators '+' and '-'.

Overrides sp_arith." Enabled=false -EditorType=numeric -CallName="indent_continue=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_arith_additive=ignore|sp_arith_additive=add|sp_arith_additive=remove|sp_arith_additive=force|sp_arith_additive=not_defined +ChoicesReadable="(16)Ignore Sp Arith Additive|(16)Add Sp Arith Additive|(16)Remove Sp Arith Additive|(16)Force Sp Arith Additive" +ValueDefault=ignore -[Indent With Tabs] +[Sp Assign] Category=1 -Description="How to use tabs when indenting code
0=spaces only
1=indent with tabs to brace level, align with spaces
2=indent and align with tabs, using spaces when not on a tabstop" -Enabled=true +Description="(17)Add or remove space around assignment operator '=', '+=', etc." +Enabled=false EditorType=multiple -Choices="indent_with_tabs=0|indent_with_tabs=1|indent_with_tabs=2" -ChoicesReadable="Spaces only|Indent with tabs, align with spaces|Indent and align with tabs" -ValueDefault=1 +Choices=sp_assign=ignore|sp_assign=add|sp_assign=remove|sp_assign=force|sp_assign=not_defined +ChoicesReadable="(17)Ignore Sp Assign|(17)Add Sp Assign|(17)Remove Sp Assign|(17)Force Sp Assign" +ValueDefault=ignore -[Indent Cmt With Tabs] +[Sp Cpp Lambda Assign] Category=1 -Description="Comments that are not a brace level are indented with tabs on a tabstop.
Requires indent_with_tabs=2. If false, will use spaces." +Description="(18)Add or remove space around '=' in C++11 lambda capture specifications.

Overrides sp_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_cmt_with_tabs=true|indent_cmt_with_tabs=false -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_assign=ignore|sp_cpp_lambda_assign=add|sp_cpp_lambda_assign=remove|sp_cpp_lambda_assign=force|sp_cpp_lambda_assign=not_defined +ChoicesReadable="(18)Ignore Sp Cpp Lambda Assign|(18)Add Sp Cpp Lambda Assign|(18)Remove Sp Cpp Lambda Assign|(18)Force Sp Cpp Lambda Assign" +ValueDefault=ignore -[Indent Align String] +[Sp Cpp Lambda Square Paren] Category=1 -Description="Whether to indent strings broken by '\' so that they line up" +Description="(19)Add or remove space after the capture specification of a C++11 lambda when
an argument list is present, as in '[] <here> (int x){ ... }'." Enabled=false -EditorType=boolean -TrueFalse=indent_align_string=true|indent_align_string=false -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_square_paren=ignore|sp_cpp_lambda_square_paren=add|sp_cpp_lambda_square_paren=remove|sp_cpp_lambda_square_paren=force|sp_cpp_lambda_square_paren=not_defined +ChoicesReadable="(19)Ignore Sp Cpp Lambda Square Paren|(19)Add Sp Cpp Lambda Square Paren|(19)Remove Sp Cpp Lambda Square Paren|(19)Force Sp Cpp Lambda Square Paren" +ValueDefault=ignore -[Indent Xml String] +[Sp Cpp Lambda Square Brace] Category=1 -Description="The number of spaces to indent multi-line XML strings.
Requires indent_align_string=True" +Description="(20)Add or remove space after the capture specification of a C++11 lambda with
no argument list is present, as in '[] <here> { ... }'." Enabled=false -EditorType=numeric -CallName="indent_xml_string=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_square_brace=ignore|sp_cpp_lambda_square_brace=add|sp_cpp_lambda_square_brace=remove|sp_cpp_lambda_square_brace=force|sp_cpp_lambda_square_brace=not_defined +ChoicesReadable="(20)Ignore Sp Cpp Lambda Square Brace|(20)Add Sp Cpp Lambda Square Brace|(20)Remove Sp Cpp Lambda Square Brace|(20)Force Sp Cpp Lambda Square Brace" +ValueDefault=ignore -[Indent Brace] +[Sp Cpp Lambda Argument List] Category=1 -Description="Spaces to indent '{' from level" +Description="(21)Add or remove space after the opening parenthesis and before the closing
parenthesis of a argument list of a C++11 lambda, as in
'[]( <here> int x <here> ){ ... }'." Enabled=false -EditorType=numeric -CallName="indent_brace=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_argument_list=ignore|sp_cpp_lambda_argument_list=add|sp_cpp_lambda_argument_list=remove|sp_cpp_lambda_argument_list=force|sp_cpp_lambda_argument_list=not_defined +ChoicesReadable="(21)Ignore Sp Cpp Lambda Argument List|(21)Add Sp Cpp Lambda Argument List|(21)Remove Sp Cpp Lambda Argument List|(21)Force Sp Cpp Lambda Argument List" +ValueDefault=ignore -[Indent Braces] +[Sp Cpp Lambda Paren Brace] Category=1 -Description="Whether braces are indented to the body level" +Description="(22)Add or remove space after the argument list of a C++11 lambda, as in
'[](int x) <here> { ... }'." Enabled=false -EditorType=boolean -TrueFalse=indent_braces=true|indent_braces=false -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_paren_brace=ignore|sp_cpp_lambda_paren_brace=add|sp_cpp_lambda_paren_brace=remove|sp_cpp_lambda_paren_brace=force|sp_cpp_lambda_paren_brace=not_defined +ChoicesReadable="(22)Ignore Sp Cpp Lambda Paren Brace|(22)Add Sp Cpp Lambda Paren Brace|(22)Remove Sp Cpp Lambda Paren Brace|(22)Force Sp Cpp Lambda Paren Brace" +ValueDefault=ignore -[Indent Braces No Func] +[Sp Cpp Lambda Fparen] Category=1 -Description="Disabled indenting function braces if indent_braces is true" +Description="(23)Add or remove space between a lambda body and its call operator of an
immediately invoked lambda, as in '[]( ... ){ ... } <here> ( ... )'." Enabled=false -EditorType=boolean -TrueFalse=indent_braces_no_func=true|indent_braces_no_func=false -ValueDefault=0 +EditorType=multiple +Choices=sp_cpp_lambda_fparen=ignore|sp_cpp_lambda_fparen=add|sp_cpp_lambda_fparen=remove|sp_cpp_lambda_fparen=force|sp_cpp_lambda_fparen=not_defined +ChoicesReadable="(23)Ignore Sp Cpp Lambda Fparen|(23)Add Sp Cpp Lambda Fparen|(23)Remove Sp Cpp Lambda Fparen|(23)Force Sp Cpp Lambda Fparen" +ValueDefault=ignore -[Indent Braces No Class] +[Sp Assign Default] Category=1 -Description="Disabled indenting class braces if indent_braces is true" +Description="(24)Add or remove space around assignment operator '=' in a prototype.

If set to ignore, use sp_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_braces_no_class=true|indent_braces_no_class=false -ValueDefault=0 +EditorType=multiple +Choices=sp_assign_default=ignore|sp_assign_default=add|sp_assign_default=remove|sp_assign_default=force|sp_assign_default=not_defined +ChoicesReadable="(24)Ignore Sp Assign Default|(24)Add Sp Assign Default|(24)Remove Sp Assign Default|(24)Force Sp Assign Default" +ValueDefault=ignore -[Indent Braces No Struct] +[Sp Before Assign] Category=1 -Description="Disabled indenting struct braces if indent_braces is true" +Description="(25)Add or remove space before assignment operator '=', '+=', etc.

Overrides sp_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_braces_no_struct=true|indent_braces_no_struct=false -ValueDefault=0 +EditorType=multiple +Choices=sp_before_assign=ignore|sp_before_assign=add|sp_before_assign=remove|sp_before_assign=force|sp_before_assign=not_defined +ChoicesReadable="(25)Ignore Sp Before Assign|(25)Add Sp Before Assign|(25)Remove Sp Before Assign|(25)Force Sp Before Assign" +ValueDefault=ignore -[Indent Brace Parent] +[Sp After Assign] Category=1 -Description="Indent based on the size of the brace parent, i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc." +Description="(26)Add or remove space after assignment operator '=', '+=', etc.

Overrides sp_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_brace_parent=true|indent_brace_parent=false -ValueDefault=0 +EditorType=multiple +Choices=sp_after_assign=ignore|sp_after_assign=add|sp_after_assign=remove|sp_after_assign=force|sp_after_assign=not_defined +ChoicesReadable="(26)Ignore Sp After Assign|(26)Add Sp After Assign|(26)Remove Sp After Assign|(26)Force Sp After Assign" +ValueDefault=ignore -[Indent Namespace] +[Sp Enum Brace] Category=1 -Description="Whether the 'namespace' body is indented" +Description="(27)Add or remove space in 'enum {'.

Default: add" Enabled=false -EditorType=boolean -TrueFalse=indent_namespace=true|indent_namespace=false -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_brace=ignore|sp_enum_brace=add|sp_enum_brace=remove|sp_enum_brace=force|sp_enum_brace=not_defined +ChoicesReadable="(27)Ignore Sp Enum Brace|(27)Add Sp Enum Brace|(27)Remove Sp Enum Brace|(27)Force Sp Enum Brace" +ValueDefault=add -[Indent Namespace Level] +[Sp Enum Paren] Category=1 -Description="The number of spaces to indent a namespace block" +Description="(28)Add or remove space in 'NS_ENUM ('." Enabled=false -EditorType=numeric -CallName="indent_namespace_level=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_paren=ignore|sp_enum_paren=add|sp_enum_paren=remove|sp_enum_paren=force|sp_enum_paren=not_defined +ChoicesReadable="(28)Ignore Sp Enum Paren|(28)Add Sp Enum Paren|(28)Remove Sp Enum Paren|(28)Force Sp Enum Paren" +ValueDefault=ignore -[Indent Namespace Limit] +[Sp Enum Assign] Category=1 -Description="If the body of the namespace is longer than this number, it won't be indented.
Requires indent_namespace=true. Default=0 (no limit)" +Description="(29)Add or remove space around assignment '=' in enum." Enabled=false -EditorType=numeric -CallName="indent_namespace_limit=" -MinVal=0 -MaxVal=255 -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_assign=ignore|sp_enum_assign=add|sp_enum_assign=remove|sp_enum_assign=force|sp_enum_assign=not_defined +ChoicesReadable="(29)Ignore Sp Enum Assign|(29)Add Sp Enum Assign|(29)Remove Sp Enum Assign|(29)Force Sp Enum Assign" +ValueDefault=ignore -[Indent Extern] +[Sp Enum Before Assign] Category=1 -Description="Whether the 'extern "C"' body is indented" +Description="(30)Add or remove space before assignment '=' in enum.

Overrides sp_enum_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_extern=true|indent_extern=false -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_before_assign=ignore|sp_enum_before_assign=add|sp_enum_before_assign=remove|sp_enum_before_assign=force|sp_enum_before_assign=not_defined +ChoicesReadable="(30)Ignore Sp Enum Before Assign|(30)Add Sp Enum Before Assign|(30)Remove Sp Enum Before Assign|(30)Force Sp Enum Before Assign" +ValueDefault=ignore -[Indent Class] +[Sp Enum After Assign] Category=1 -Description="Whether the 'class' body is indented" +Description="(31)Add or remove space after assignment '=' in enum.

Overrides sp_enum_assign." Enabled=false -EditorType=boolean -TrueFalse=indent_class=true|indent_class=false -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_after_assign=ignore|sp_enum_after_assign=add|sp_enum_after_assign=remove|sp_enum_after_assign=force|sp_enum_after_assign=not_defined +ChoicesReadable="(31)Ignore Sp Enum After Assign|(31)Add Sp Enum After Assign|(31)Remove Sp Enum After Assign|(31)Force Sp Enum After Assign" +ValueDefault=ignore -[Indent Class Colon] +[Sp Enum Colon] Category=1 -Description="Whether to indent the stuff after a leading class colon" +Description="(32)Add or remove space around assignment ':' in enum." Enabled=false -EditorType=boolean -TrueFalse=indent_class_colon=true|indent_class_colon=false -ValueDefault=0 +EditorType=multiple +Choices=sp_enum_colon=ignore|sp_enum_colon=add|sp_enum_colon=remove|sp_enum_colon=force|sp_enum_colon=not_defined +ChoicesReadable="(32)Ignore Sp Enum Colon|(32)Add Sp Enum Colon|(32)Remove Sp Enum Colon|(32)Force Sp Enum Colon" +ValueDefault=ignore -[Indent Ctor Init] +[Sp Pp Concat] Category=1 -Description="Additional indenting for constructor initializer list" +Description="(33)Add or remove space around preprocessor '##' concatenation operator.

Default: add" Enabled=false -EditorType=numeric -CallName="indent_ctor_init=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_pp_concat=ignore|sp_pp_concat=add|sp_pp_concat=remove|sp_pp_concat=force|sp_pp_concat=not_defined +ChoicesReadable="(33)Ignore Sp Pp Concat|(33)Add Sp Pp Concat|(33)Remove Sp Pp Concat|(33)Force Sp Pp Concat" +ValueDefault=add -[Indent Else If] +[Sp Pp Stringify] Category=1 -Description="False=treat 'else\nif' as 'else if' for indenting purposes
True=indent the 'if' one level
" +Description="(34)Add or remove space after preprocessor '#' stringify operator.
Also affects the '#@' charizing operator." Enabled=false -EditorType=boolean -TrueFalse=indent_else_if=true|indent_else_if=false -ValueDefault=0 +EditorType=multiple +Choices=sp_pp_stringify=ignore|sp_pp_stringify=add|sp_pp_stringify=remove|sp_pp_stringify=force|sp_pp_stringify=not_defined +ChoicesReadable="(34)Ignore Sp Pp Stringify|(34)Add Sp Pp Stringify|(34)Remove Sp Pp Stringify|(34)Force Sp Pp Stringify" +ValueDefault=ignore -[Indent Var Def Blk] +[Sp Before Pp Stringify] Category=1 -Description="Amount to indent variable declarations after a open brace. neg=relative, pos=absolute" +Description="(35)Add or remove space before preprocessor '#' stringify operator
as in '#define x(y) L#y'." Enabled=false -EditorType=numeric -CallName="indent_var_def_blk=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_before_pp_stringify=ignore|sp_before_pp_stringify=add|sp_before_pp_stringify=remove|sp_before_pp_stringify=force|sp_before_pp_stringify=not_defined +ChoicesReadable="(35)Ignore Sp Before Pp Stringify|(35)Add Sp Before Pp Stringify|(35)Remove Sp Before Pp Stringify|(35)Force Sp Before Pp Stringify" +ValueDefault=ignore -[Indent Var Def Cont] +[Sp Bool] Category=1 -Description="Indent continued variable declarations instead of aligning." +Description="(36)Add or remove space around boolean operators '&&' and '||'." Enabled=false -EditorType=boolean -TrueFalse=indent_var_def_cont=true|indent_var_def_cont=false -ValueDefault=0 +EditorType=multiple +Choices=sp_bool=ignore|sp_bool=add|sp_bool=remove|sp_bool=force|sp_bool=not_defined +ChoicesReadable="(36)Ignore Sp Bool|(36)Add Sp Bool|(36)Remove Sp Bool|(36)Force Sp Bool" +ValueDefault=ignore -[Indent Func Call Param] +[Sp Compare] Category=1 -Description="True: indent continued function call parameters one indent level
False: align parameters under the open paren" +Description="(37)Add or remove space around compare operator '<', '>', '==', etc." Enabled=false -EditorType=boolean -TrueFalse=indent_func_call_param=true|indent_func_call_param=false -ValueDefault=0 +EditorType=multiple +Choices=sp_compare=ignore|sp_compare=add|sp_compare=remove|sp_compare=force|sp_compare=not_defined +ChoicesReadable="(37)Ignore Sp Compare|(37)Add Sp Compare|(37)Remove Sp Compare|(37)Force Sp Compare" +ValueDefault=ignore -[Indent Func Def Param] +[Sp Inside Paren] Category=1 -Description="Same as indent_func_call_param, but for function defs" +Description="(38)Add or remove space inside '(' and ')'." Enabled=false -EditorType=boolean -TrueFalse=indent_func_def_param=true|indent_func_def_param=false -ValueDefault=0 +EditorType=multiple +Choices=sp_inside_paren=ignore|sp_inside_paren=add|sp_inside_paren=remove|sp_inside_paren=force|sp_inside_paren=not_defined +ChoicesReadable="(38)Ignore Sp Inside Paren|(38)Add Sp Inside Paren|(38)Remove Sp Inside Paren|(38)Force Sp Inside Paren" +ValueDefault=ignore -[Indent Func Proto Param] +[Sp Paren Paren] Category=1 -Description="Same as indent_func_call_param, but for function protos" +Description="(39)Add or remove space between nested parentheses, i.e. '((' vs. ') )'." Enabled=false -EditorType=boolean -TrueFalse=indent_func_proto_param=true|indent_func_proto_param=false -ValueDefault=0 +EditorType=multiple +Choices=sp_paren_paren=ignore|sp_paren_paren=add|sp_paren_paren=remove|sp_paren_paren=force|sp_paren_paren=not_defined +ChoicesReadable="(39)Ignore Sp Paren Paren|(39)Add Sp Paren Paren|(39)Remove Sp Paren Paren|(39)Force Sp Paren Paren" +ValueDefault=ignore -[Indent Func Class Param] +[Sp Cparen Oparen] Category=1 -Description="Same as indent_func_call_param, but for class declarations" +Description="(40)Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('." Enabled=false -EditorType=boolean -TrueFalse=indent_func_class_param=true|indent_func_class_param=false -ValueDefault=0 +EditorType=multiple +Choices=sp_cparen_oparen=ignore|sp_cparen_oparen=add|sp_cparen_oparen=remove|sp_cparen_oparen=force|sp_cparen_oparen=not_defined +ChoicesReadable="(40)Ignore Sp Cparen Oparen|(40)Add Sp Cparen Oparen|(40)Remove Sp Cparen Oparen|(40)Force Sp Cparen Oparen" +ValueDefault=ignore -[Indent Func Ctor Var Param] +[Sp Balance Nested Parens] Category=1 -Description="Same as indent_func_call_param, but for class variable constructors" +Description="(41)Whether to balance spaces inside nested parentheses." Enabled=false EditorType=boolean -TrueFalse=indent_func_ctor_var_param=true|indent_func_ctor_var_param=false -ValueDefault=0 +TrueFalse=sp_balance_nested_parens=true|sp_balance_nested_parens=false +ValueDefault=false -[Indent Template Param] +[Sp Paren Brace] Category=1 -Description="Same as indent_func_call_param, but for templates" +Description="(42)Add or remove space between ')' and '{'." Enabled=false -EditorType=boolean -TrueFalse=indent_template_param=true|indent_template_param=false -ValueDefault=0 +EditorType=multiple +Choices=sp_paren_brace=ignore|sp_paren_brace=add|sp_paren_brace=remove|sp_paren_brace=force|sp_paren_brace=not_defined +ChoicesReadable="(42)Ignore Sp Paren Brace|(42)Add Sp Paren Brace|(42)Remove Sp Paren Brace|(42)Force Sp Paren Brace" +ValueDefault=ignore -[Indent Func Param Double] +[Sp Brace Brace] Category=1 -Description="Double the indent for indent_func_xxx_param options" +Description="(43)Add or remove space between nested braces, i.e. '{{' vs. '{ {'." Enabled=false -EditorType=boolean -TrueFalse=indent_func_param_double=true|indent_func_param_double=false -ValueDefault=0 +EditorType=multiple +Choices=sp_brace_brace=ignore|sp_brace_brace=add|sp_brace_brace=remove|sp_brace_brace=force|sp_brace_brace=not_defined +ChoicesReadable="(43)Ignore Sp Brace Brace|(43)Add Sp Brace Brace|(43)Remove Sp Brace Brace|(43)Force Sp Brace Brace" +ValueDefault=ignore -[Indent Func Const] +[Sp Before Ptr Star] Category=1 -Description="Indentation column for standalone 'const' function decl/proto qualifier" +Description="(44)Add or remove space before pointer star '*'." Enabled=false -EditorType=numeric -CallName="indent_func_const=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_before_ptr_star=ignore|sp_before_ptr_star=add|sp_before_ptr_star=remove|sp_before_ptr_star=force|sp_before_ptr_star=not_defined +ChoicesReadable="(44)Ignore Sp Before Ptr Star|(44)Add Sp Before Ptr Star|(44)Remove Sp Before Ptr Star|(44)Force Sp Before Ptr Star" +ValueDefault=ignore -[Indent Func Throw] +[Sp Before Unnamed Ptr Star] Category=1 -Description="Indentation column for standalone 'throw' function decl/proto qualifier" +Description="(45)Add or remove space before pointer star '*' that isn't followed by a
variable name. If set to ignore, sp_before_ptr_star is used instead." Enabled=false -EditorType=numeric -CallName="indent_func_throw=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_before_unnamed_ptr_star=ignore|sp_before_unnamed_ptr_star=add|sp_before_unnamed_ptr_star=remove|sp_before_unnamed_ptr_star=force|sp_before_unnamed_ptr_star=not_defined +ChoicesReadable="(45)Ignore Sp Before Unnamed Ptr Star|(45)Add Sp Before Unnamed Ptr Star|(45)Remove Sp Before Unnamed Ptr Star|(45)Force Sp Before Unnamed Ptr Star" +ValueDefault=ignore -[Indent Member] +[Sp Qualifier Unnamed Ptr Star] Category=1 -Description="The number of spaces to indent a continued '->' or '.'
Usually set to 0, 1, or indent_columns." +Description="(46)Add or remove space between a qualifier and a pointer star '*' that isn't
followed by a variable name, as in '(char const *)'. If set to ignore,
sp_before_ptr_star is used instead." Enabled=false -EditorType=numeric -CallName="indent_member=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_qualifier_unnamed_ptr_star=ignore|sp_qualifier_unnamed_ptr_star=add|sp_qualifier_unnamed_ptr_star=remove|sp_qualifier_unnamed_ptr_star=force|sp_qualifier_unnamed_ptr_star=not_defined +ChoicesReadable="(46)Ignore Sp Qualifier Unnamed Ptr Star|(46)Add Sp Qualifier Unnamed Ptr Star|(46)Remove Sp Qualifier Unnamed Ptr Star|(46)Force Sp Qualifier Unnamed Ptr Star" +ValueDefault=ignore -[Indent Sing Line Comments] +[Sp Between Ptr Star] Category=1 -Description="Spaces to indent single line ('//') comments on lines before code" +Description="(47)Add or remove space between pointer stars '*', as in 'int ***a;'." Enabled=false -EditorType=numeric -CallName="indent_sing_line_comments=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_between_ptr_star=ignore|sp_between_ptr_star=add|sp_between_ptr_star=remove|sp_between_ptr_star=force|sp_between_ptr_star=not_defined +ChoicesReadable="(47)Ignore Sp Between Ptr Star|(47)Add Sp Between Ptr Star|(47)Remove Sp Between Ptr Star|(47)Force Sp Between Ptr Star" +ValueDefault=ignore -[Indent Relative Single Line Comments] +[Sp After Ptr Star] Category=1 -Description="If set, will indent trailing single line ('//') comments relative
to the code instead of trying to keep the same absolute column" +Description="(48)Add or remove space after pointer star '*', if followed by a word.

Overrides sp_type_func." Enabled=false -EditorType=boolean -TrueFalse=indent_relative_single_line_comments=true|indent_relative_single_line_comments=false -ValueDefault=0 +EditorType=multiple +Choices=sp_after_ptr_star=ignore|sp_after_ptr_star=add|sp_after_ptr_star=remove|sp_after_ptr_star=force|sp_after_ptr_star=not_defined +ChoicesReadable="(48)Ignore Sp After Ptr Star|(48)Add Sp After Ptr Star|(48)Remove Sp After Ptr Star|(48)Force Sp After Ptr Star" +ValueDefault=ignore -[Indent Switch Case] +[Sp After Ptr Block Caret] Category=1 -Description="Spaces to indent 'case' from 'switch'
Usually 0 or indent_columns." +Description="(49)Add or remove space after pointer caret '^', if followed by a word." Enabled=false -EditorType=numeric -CallName="indent_switch_case=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_after_ptr_block_caret=ignore|sp_after_ptr_block_caret=add|sp_after_ptr_block_caret=remove|sp_after_ptr_block_caret=force|sp_after_ptr_block_caret=not_defined +ChoicesReadable="(49)Ignore Sp After Ptr Block Caret|(49)Add Sp After Ptr Block Caret|(49)Remove Sp After Ptr Block Caret|(49)Force Sp After Ptr Block Caret" +ValueDefault=ignore -[Indent Case Shift] +[Sp After Ptr Star Qualifier] Category=1 -Description="Spaces to shift the 'case' line, without affecting any other lines
Usually 0." +Description="(50)Add or remove space after pointer star '*', if followed by a qualifier." Enabled=false -EditorType=numeric -CallName="indent_case_shift=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_after_ptr_star_qualifier=ignore|sp_after_ptr_star_qualifier=add|sp_after_ptr_star_qualifier=remove|sp_after_ptr_star_qualifier=force|sp_after_ptr_star_qualifier=not_defined +ChoicesReadable="(50)Ignore Sp After Ptr Star Qualifier|(50)Add Sp After Ptr Star Qualifier|(50)Remove Sp After Ptr Star Qualifier|(50)Force Sp After Ptr Star Qualifier" +ValueDefault=ignore -[Indent Case Brace] +[Sp After Ptr Star Func] Category=1 -Description="Spaces to indent '{' from 'case'.
By default, the brace will appear under the 'c' in case.
Usually set to 0 or indent_columns." +Description="(51)Add or remove space after a pointer star '*', if followed by a function
prototype or function definition.

Overrides sp_after_ptr_star and sp_type_func." Enabled=false -EditorType=numeric -CallName="indent_case_brace=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_after_ptr_star_func=ignore|sp_after_ptr_star_func=add|sp_after_ptr_star_func=remove|sp_after_ptr_star_func=force|sp_after_ptr_star_func=not_defined +ChoicesReadable="(51)Ignore Sp After Ptr Star Func|(51)Add Sp After Ptr Star Func|(51)Remove Sp After Ptr Star Func|(51)Force Sp After Ptr Star Func" +ValueDefault=ignore -[Indent Col1 Comment] +[Sp After Ptr Star Trailing] Category=1 -Description="Whether to indent comments found in first column" +Description="(52)Add or remove space after a pointer star '*' in the trailing return of a
function prototype or function definition." Enabled=false -EditorType=boolean -TrueFalse=indent_col1_comment=true|indent_col1_comment=false -ValueDefault=0 +EditorType=multiple +Choices=sp_after_ptr_star_trailing=ignore|sp_after_ptr_star_trailing=add|sp_after_ptr_star_trailing=remove|sp_after_ptr_star_trailing=force|sp_after_ptr_star_trailing=not_defined +ChoicesReadable="(52)Ignore Sp After Ptr Star Trailing|(52)Add Sp After Ptr Star Trailing|(52)Remove Sp After Ptr Star Trailing|(52)Force Sp After Ptr Star Trailing" +ValueDefault=ignore -[Indent Label] +[Sp Ptr Star Func Var] Category=1 -Description="How to indent goto labels
>0 : absolute column where 1 is the leftmost column
<=0 : subtract from brace indent" +Description="(53)Add or remove space between the pointer star '*' and the name of the variable
in a function pointer definition." Enabled=false -EditorType=numeric -CallName="indent_label=" -MinVal=-16 -MaxVal=16 -ValueDefault=1 +EditorType=multiple +Choices=sp_ptr_star_func_var=ignore|sp_ptr_star_func_var=add|sp_ptr_star_func_var=remove|sp_ptr_star_func_var=force|sp_ptr_star_func_var=not_defined +ChoicesReadable="(53)Ignore Sp Ptr Star Func Var|(53)Add Sp Ptr Star Func Var|(53)Remove Sp Ptr Star Func Var|(53)Force Sp Ptr Star Func Var" +ValueDefault=ignore -[Indent Access Spec] +[Sp Ptr Star Func Type] Category=1 -Description="Same as indent_label, but for access specifiers that are followed by a colon" +Description="(54)Add or remove space between the pointer star '*' and the name of the type
in a function pointer type definition." Enabled=false -EditorType=numeric -CallName="indent_access_spec=" -MinVal=-16 -MaxVal=16 -ValueDefault=1 +EditorType=multiple +Choices=sp_ptr_star_func_type=ignore|sp_ptr_star_func_type=add|sp_ptr_star_func_type=remove|sp_ptr_star_func_type=force|sp_ptr_star_func_type=not_defined +ChoicesReadable="(54)Ignore Sp Ptr Star Func Type|(54)Add Sp Ptr Star Func Type|(54)Remove Sp Ptr Star Func Type|(54)Force Sp Ptr Star Func Type" +ValueDefault=ignore -[Indent Access Spec Body] +[Sp Ptr Star Paren] Category=1 -Description="Indent the code after an access specifier by one level.
If set, this option forces 'indent_access_spec=0'" +Description="(55)Add or remove space after a pointer star '*', if followed by an open
parenthesis, as in 'void* (*)()'." Enabled=false -EditorType=boolean -TrueFalse=indent_access_spec_body=true|indent_access_spec_body=false -ValueDefault=0 +EditorType=multiple +Choices=sp_ptr_star_paren=ignore|sp_ptr_star_paren=add|sp_ptr_star_paren=remove|sp_ptr_star_paren=force|sp_ptr_star_paren=not_defined +ChoicesReadable="(55)Ignore Sp Ptr Star Paren|(55)Add Sp Ptr Star Paren|(55)Remove Sp Ptr Star Paren|(55)Force Sp Ptr Star Paren" +ValueDefault=ignore -[Indent Paren Nl] +[Sp Before Ptr Star Func] Category=1 -Description="If an open paren is followed by a newline, indent the next line so that it lines up after the open paren (not recommended)" +Description="(56)Add or remove space before a pointer star '*', if followed by a function
prototype or function definition. If set to ignore, sp_before_ptr_star is
used instead." Enabled=false -EditorType=boolean -TrueFalse=indent_paren_nl=true|indent_paren_nl=false -ValueDefault=0 +EditorType=multiple +Choices=sp_before_ptr_star_func=ignore|sp_before_ptr_star_func=add|sp_before_ptr_star_func=remove|sp_before_ptr_star_func=force|sp_before_ptr_star_func=not_defined +ChoicesReadable="(56)Ignore Sp Before Ptr Star Func|(56)Add Sp Before Ptr Star Func|(56)Remove Sp Before Ptr Star Func|(56)Force Sp Before Ptr Star Func" +ValueDefault=ignore -[Indent Paren Close] +[Sp Qualifier Ptr Star Func] Category=1 -Description="Controls the indent of a close paren after a newline.
0: Indent to body level
1: Align under the open paren
2: Indent to the brace level" +Description="(57)Add or remove space between a qualifier and a pointer star '*' followed by
the name of the function in a function prototype or definition, as in
'char const *foo()`. If set to ignore, sp_before_ptr_star is used instead." Enabled=false -EditorType=numeric -CallName="indent_paren_close=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_qualifier_ptr_star_func=ignore|sp_qualifier_ptr_star_func=add|sp_qualifier_ptr_star_func=remove|sp_qualifier_ptr_star_func=force|sp_qualifier_ptr_star_func=not_defined +ChoicesReadable="(57)Ignore Sp Qualifier Ptr Star Func|(57)Add Sp Qualifier Ptr Star Func|(57)Remove Sp Qualifier Ptr Star Func|(57)Force Sp Qualifier Ptr Star Func" +ValueDefault=ignore -[Indent Comma Paren] +[Sp Before Ptr Star Trailing] Category=1 -Description="Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren" +Description="(58)Add or remove space before a pointer star '*' in the trailing return of a
function prototype or function definition." Enabled=false -EditorType=boolean -TrueFalse=indent_comma_paren=true|indent_comma_paren=false -ValueDefault=0 +EditorType=multiple +Choices=sp_before_ptr_star_trailing=ignore|sp_before_ptr_star_trailing=add|sp_before_ptr_star_trailing=remove|sp_before_ptr_star_trailing=force|sp_before_ptr_star_trailing=not_defined +ChoicesReadable="(58)Ignore Sp Before Ptr Star Trailing|(58)Add Sp Before Ptr Star Trailing|(58)Remove Sp Before Ptr Star Trailing|(58)Force Sp Before Ptr Star Trailing" +ValueDefault=ignore -[Indent Bool Paren] +[Sp Qualifier Ptr Star Trailing] Category=1 -Description="Controls the indent of a BOOL operator when inside a paren.If TRUE, aligns under the open paren" +Description="(59)Add or remove space between a qualifier and a pointer star '*' in the
trailing return of a function prototype or function definition, as in
'auto foo() -> char const *'." Enabled=false -EditorType=boolean -TrueFalse=indent_bool_paren=true|indent_bool_paren=false -ValueDefault=0 +EditorType=multiple +Choices=sp_qualifier_ptr_star_trailing=ignore|sp_qualifier_ptr_star_trailing=add|sp_qualifier_ptr_star_trailing=remove|sp_qualifier_ptr_star_trailing=force|sp_qualifier_ptr_star_trailing=not_defined +ChoicesReadable="(59)Ignore Sp Qualifier Ptr Star Trailing|(59)Add Sp Qualifier Ptr Star Trailing|(59)Remove Sp Qualifier Ptr Star Trailing|(59)Force Sp Qualifier Ptr Star Trailing" +ValueDefault=ignore -[Indent First Bool Expr] +[Sp Before Byref] Category=1 -Description="If 'indent_bool_paren' is true, controls the indent of the first expression. If TRUE, aligns the first expression to the following ones" +Description="(60)Add or remove space before a reference sign '&'." Enabled=false -EditorType=boolean -TrueFalse=indent_first_bool_expr=true|indent_first_bool_expr=false -ValueDefault=0 +EditorType=multiple +Choices=sp_before_byref=ignore|sp_before_byref=add|sp_before_byref=remove|sp_before_byref=force|sp_before_byref=not_defined +ChoicesReadable="(60)Ignore Sp Before Byref|(60)Add Sp Before Byref|(60)Remove Sp Before Byref|(60)Force Sp Before Byref" +ValueDefault=ignore -[Indent Square Nl] +[Sp Before Unnamed Byref] Category=1 -Description="If an open square is followed by a newline, indent the next line so that it lines up after the open square (not recommended)" +Description="(61)Add or remove space before a reference sign '&' that isn't followed by a
variable name. If set to ignore, sp_before_byref is used instead." Enabled=false -EditorType=boolean -TrueFalse=indent_square_nl=true|indent_square_nl=false -ValueDefault=0 +EditorType=multiple +Choices=sp_before_unnamed_byref=ignore|sp_before_unnamed_byref=add|sp_before_unnamed_byref=remove|sp_before_unnamed_byref=force|sp_before_unnamed_byref=not_defined +ChoicesReadable="(61)Ignore Sp Before Unnamed Byref|(61)Add Sp Before Unnamed Byref|(61)Remove Sp Before Unnamed Byref|(61)Force Sp Before Unnamed Byref" +ValueDefault=ignore -[Indent Preserve Sql] +[Sp After Byref] Category=1 -Description="Don't change the relative indent of ESQL/C 'EXEC SQL' bodies" +Description="(62)Add or remove space after reference sign '&', if followed by a word.

Overrides sp_type_func." Enabled=false -EditorType=boolean -TrueFalse=indent_preserve_sql=true|indent_preserve_sql=false -ValueDefault=0 +EditorType=multiple +Choices=sp_after_byref=ignore|sp_after_byref=add|sp_after_byref=remove|sp_after_byref=force|sp_after_byref=not_defined +ChoicesReadable="(62)Ignore Sp After Byref|(62)Add Sp After Byref|(62)Remove Sp After Byref|(62)Force Sp After Byref" +ValueDefault=ignore -[Indent Align Assign] +[Sp After Byref Func] Category=1 -Description="Align continued statements at the '='. Default=True
If FALSE or the '=' is followed by a newline, the next line is indent one tab." +Description="(63)Add or remove space after a reference sign '&', if followed by a function
prototype or function definition.

Overrides sp_after_byref and sp_type_func." Enabled=false -EditorType=boolean -TrueFalse=indent_align_assign=true|indent_align_assign=false -ValueDefault=1 +EditorType=multiple +Choices=sp_after_byref_func=ignore|sp_after_byref_func=add|sp_after_byref_func=remove|sp_after_byref_func=force|sp_after_byref_func=not_defined +ChoicesReadable="(63)Ignore Sp After Byref Func|(63)Add Sp After Byref Func|(63)Remove Sp After Byref Func|(63)Force Sp After Byref Func" +ValueDefault=ignore -[Sp Arith] -Category=2 -Description="Add or remove space around arithmetic operator '+', '-', '/', '*', etc" +[Sp Before Byref Func] +Category=1 +Description="(64)Add or remove space before a reference sign '&', if followed by a function
prototype or function definition." Enabled=false EditorType=multiple -Choices="sp_arith=ignore|sp_arith=add|sp_arith=remove|sp_arith=force" -ChoicesReadable="Ignore Sp Arith|Add Sp Arith|Remove Sp Arith|Force Sp Arith" -ValueDefault=0 +Choices=sp_before_byref_func=ignore|sp_before_byref_func=add|sp_before_byref_func=remove|sp_before_byref_func=force|sp_before_byref_func=not_defined +ChoicesReadable="(64)Ignore Sp Before Byref Func|(64)Add Sp Before Byref Func|(64)Remove Sp Before Byref Func|(64)Force Sp Before Byref Func" +ValueDefault=ignore -[Sp Assign] -Category=2 -Description="Add or remove space around assignment operator '=', '+=', etc" +[Sp Byref Paren] +Category=1 +Description="(65)Add or remove space after a reference sign '&', if followed by an open
parenthesis, as in 'char& (*)()'." Enabled=false EditorType=multiple -Choices="sp_assign=ignore|sp_assign=add|sp_assign=remove|sp_assign=force" -ChoicesReadable="Ignore Sp Assign|Add Sp Assign|Remove Sp Assign|Force Sp Assign" -ValueDefault=0 +Choices=sp_byref_paren=ignore|sp_byref_paren=add|sp_byref_paren=remove|sp_byref_paren=force|sp_byref_paren=not_defined +ChoicesReadable="(65)Ignore Sp Byref Paren|(65)Add Sp Byref Paren|(65)Remove Sp Byref Paren|(65)Force Sp Byref Paren" +ValueDefault=ignore -[Sp Assign Default] -Category=2 -Description="Add or remove space around assignment operator '=' in a prototype" +[Sp After Type] +Category=1 +Description="(66)Add or remove space between type and word. In cases where total removal of
whitespace would be a syntax error, a value of 'remove' is treated the same
as 'force'.

This also affects some other instances of space following a type that are
not covered by other options; for example, between the return type and
parenthesis of a function type template argument, between the type and
parenthesis of an array parameter, or between 'decltype(...)' and the
following word.

Default: force" Enabled=false EditorType=multiple -Choices="sp_assign_default=ignore|sp_assign_default=add|sp_assign_default=remove|sp_assign_default=force" -ChoicesReadable="Ignore Sp Assign Default|Add Sp Assign Default|Remove Sp Assign Default|Force Sp Assign Default" -ValueDefault=0 +Choices=sp_after_type=ignore|sp_after_type=add|sp_after_type=remove|sp_after_type=force|sp_after_type=not_defined +ChoicesReadable="(66)Ignore Sp After Type|(66)Add Sp After Type|(66)Remove Sp After Type|(66)Force Sp After Type" +ValueDefault=force -[Sp Before Assign] -Category=2 -Description="Add or remove space before assignment operator '=', '+=', etc. Overrides sp_assign." +[Sp After Decltype] +Category=1 +Description="(67)Add or remove space between 'decltype(...)' and word,
brace or function call." Enabled=false EditorType=multiple -Choices="sp_before_assign=ignore|sp_before_assign=add|sp_before_assign=remove|sp_before_assign=force" -ChoicesReadable="Ignore Sp Before Assign|Add Sp Before Assign|Remove Sp Before Assign|Force Sp Before Assign" -ValueDefault=0 +Choices=sp_after_decltype=ignore|sp_after_decltype=add|sp_after_decltype=remove|sp_after_decltype=force|sp_after_decltype=not_defined +ChoicesReadable="(67)Ignore Sp After Decltype|(67)Add Sp After Decltype|(67)Remove Sp After Decltype|(67)Force Sp After Decltype" +ValueDefault=ignore -[Sp After Assign] -Category=2 -Description="Add or remove space after assignment operator '=', '+=', etc. Overrides sp_assign." +[Sp Before Template Paren] +Category=1 +Description="(68)(D) Add or remove space before the parenthesis in the D constructs
'template Foo(' and 'class Foo('." Enabled=false EditorType=multiple -Choices="sp_after_assign=ignore|sp_after_assign=add|sp_after_assign=remove|sp_after_assign=force" -ChoicesReadable="Ignore Sp After Assign|Add Sp After Assign|Remove Sp After Assign|Force Sp After Assign" -ValueDefault=0 +Choices=sp_before_template_paren=ignore|sp_before_template_paren=add|sp_before_template_paren=remove|sp_before_template_paren=force|sp_before_template_paren=not_defined +ChoicesReadable="(68)Ignore Sp Before Template Paren|(68)Add Sp Before Template Paren|(68)Remove Sp Before Template Paren|(68)Force Sp Before Template Paren" +ValueDefault=ignore -[Sp Enum Assign] -Category=2 -Description="Add or remove space around assignment '=' in enum" +[Sp Template Angle] +Category=1 +Description="(69)Add or remove space between 'template' and '<'.
If set to ignore, sp_before_angle is used." Enabled=false EditorType=multiple -Choices="sp_enum_assign=ignore|sp_enum_assign=add|sp_enum_assign=remove|sp_enum_assign=force" -ChoicesReadable="Ignore Sp Enum Assign|Add Sp Enum Assign|Remove Sp Enum Assign|Force Sp Enum Assign" -ValueDefault=0 +Choices=sp_template_angle=ignore|sp_template_angle=add|sp_template_angle=remove|sp_template_angle=force|sp_template_angle=not_defined +ChoicesReadable="(69)Ignore Sp Template Angle|(69)Add Sp Template Angle|(69)Remove Sp Template Angle|(69)Force Sp Template Angle" +ValueDefault=ignore -[Sp Enum Before Assign] -Category=2 -Description="Add or remove space before assignment '=' in enum. Overrides sp_enum_assign." +[Sp Before Angle] +Category=1 +Description="(70)Add or remove space before '<'." Enabled=false EditorType=multiple -Choices="sp_enum_before_assign=ignore|sp_enum_before_assign=add|sp_enum_before_assign=remove|sp_enum_before_assign=force" -ChoicesReadable="Ignore Sp Enum Before Assign|Add Sp Enum Before Assign|Remove Sp Enum Before Assign|Force Sp Enum Before Assign" -ValueDefault=0 +Choices=sp_before_angle=ignore|sp_before_angle=add|sp_before_angle=remove|sp_before_angle=force|sp_before_angle=not_defined +ChoicesReadable="(70)Ignore Sp Before Angle|(70)Add Sp Before Angle|(70)Remove Sp Before Angle|(70)Force Sp Before Angle" +ValueDefault=ignore -[Sp Enum After Assign] -Category=2 -Description="Add or remove space after assignment '=' in enum. Overrides sp_enum_assign." +[Sp Inside Angle] +Category=1 +Description="(71)Add or remove space inside '<' and '>'." Enabled=false EditorType=multiple -Choices="sp_enum_after_assign=ignore|sp_enum_after_assign=add|sp_enum_after_assign=remove|sp_enum_after_assign=force" -ChoicesReadable="Ignore Sp Enum After Assign|Add Sp Enum After Assign|Remove Sp Enum After Assign|Force Sp Enum After Assign" -ValueDefault=0 +Choices=sp_inside_angle=ignore|sp_inside_angle=add|sp_inside_angle=remove|sp_inside_angle=force|sp_inside_angle=not_defined +ChoicesReadable="(71)Ignore Sp Inside Angle|(71)Add Sp Inside Angle|(71)Remove Sp Inside Angle|(71)Force Sp Inside Angle" +ValueDefault=ignore -[Sp Pp Concat] -Category=2 -Description="Add or remove space around preprocessor '##' concatenation operator. Default=Add" +[Sp Inside Angle Empty] +Category=1 +Description="(72)Add or remove space inside '<>'." Enabled=false EditorType=multiple -Choices="sp_pp_concat=ignore|sp_pp_concat=add|sp_pp_concat=remove|sp_pp_concat=force" -ChoicesReadable="Ignore Sp Pp Concat|Add Sp Pp Concat|Remove Sp Pp Concat|Force Sp Pp Concat" -ValueDefault=1 +Choices=sp_inside_angle_empty=ignore|sp_inside_angle_empty=add|sp_inside_angle_empty=remove|sp_inside_angle_empty=force|sp_inside_angle_empty=not_defined +ChoicesReadable="(72)Ignore Sp Inside Angle Empty|(72)Add Sp Inside Angle Empty|(72)Remove Sp Inside Angle Empty|(72)Force Sp Inside Angle Empty" +ValueDefault=ignore -[Sp Pp Stringify] -Category=2 -Description="Add or remove space after preprocessor '#' stringify operator. Also affects the '#@' charizing operator. Default=Add" +[Sp Angle Colon] +Category=1 +Description="(73)Add or remove space between '>' and ':'." Enabled=false EditorType=multiple -Choices="sp_pp_stringify=ignore|sp_pp_stringify=add|sp_pp_stringify=remove|sp_pp_stringify=force" -ChoicesReadable="Ignore Sp Pp Stringify|Add Sp Pp Stringify|Remove Sp Pp Stringify|Force Sp Pp Stringify" -ValueDefault=1 +Choices=sp_angle_colon=ignore|sp_angle_colon=add|sp_angle_colon=remove|sp_angle_colon=force|sp_angle_colon=not_defined +ChoicesReadable="(73)Ignore Sp Angle Colon|(73)Add Sp Angle Colon|(73)Remove Sp Angle Colon|(73)Force Sp Angle Colon" +ValueDefault=ignore -[Sp Bool] -Category=2 -Description="Add or remove space around boolean operators '&&' and '||'" +[Sp After Angle] +Category=1 +Description="(74)Add or remove space after '>'." Enabled=false EditorType=multiple -Choices="sp_bool=ignore|sp_bool=add|sp_bool=remove|sp_bool=force" -ChoicesReadable="Ignore Sp Bool|Add Sp Bool|Remove Sp Bool|Force Sp Bool" -ValueDefault=0 +Choices=sp_after_angle=ignore|sp_after_angle=add|sp_after_angle=remove|sp_after_angle=force|sp_after_angle=not_defined +ChoicesReadable="(74)Ignore Sp After Angle|(74)Add Sp After Angle|(74)Remove Sp After Angle|(74)Force Sp After Angle" +ValueDefault=ignore -[Sp Compare] -Category=2 -Description="Add or remove space around compare operator '<', '>', '==', etc" +[Sp Angle Paren] +Category=1 +Description="(75)Add or remove space between '>' and '(' as found in 'new List<byte>(foo);'." Enabled=false EditorType=multiple -Choices="sp_compare=ignore|sp_compare=add|sp_compare=remove|sp_compare=force" -ChoicesReadable="Ignore Sp Compare|Add Sp Compare|Remove Sp Compare|Force Sp Compare" -ValueDefault=0 +Choices=sp_angle_paren=ignore|sp_angle_paren=add|sp_angle_paren=remove|sp_angle_paren=force|sp_angle_paren=not_defined +ChoicesReadable="(75)Ignore Sp Angle Paren|(75)Add Sp Angle Paren|(75)Remove Sp Angle Paren|(75)Force Sp Angle Paren" +ValueDefault=ignore -[Sp Inside Paren] -Category=2 -Description="Add or remove space inside '(' and ')'" +[Sp Angle Paren Empty] +Category=1 +Description="(76)Add or remove space between '>' and '()' as found in 'new List<byte>();'." Enabled=false EditorType=multiple -Choices="sp_inside_paren=ignore|sp_inside_paren=add|sp_inside_paren=remove|sp_inside_paren=force" -ChoicesReadable="Ignore Sp Inside Paren|Add Sp Inside Paren|Remove Sp Inside Paren|Force Sp Inside Paren" -ValueDefault=0 +Choices=sp_angle_paren_empty=ignore|sp_angle_paren_empty=add|sp_angle_paren_empty=remove|sp_angle_paren_empty=force|sp_angle_paren_empty=not_defined +ChoicesReadable="(76)Ignore Sp Angle Paren Empty|(76)Add Sp Angle Paren Empty|(76)Remove Sp Angle Paren Empty|(76)Force Sp Angle Paren Empty" +ValueDefault=ignore -[Sp Paren Paren] -Category=2 -Description="Add or remove space between nested parens" +[Sp Angle Word] +Category=1 +Description="(77)Add or remove space between '>' and a word as in 'List<byte> m;' or
'template <typename T> static ...'." Enabled=false EditorType=multiple -Choices="sp_paren_paren=ignore|sp_paren_paren=add|sp_paren_paren=remove|sp_paren_paren=force" -ChoicesReadable="Ignore Sp Paren Paren|Add Sp Paren Paren|Remove Sp Paren Paren|Force Sp Paren Paren" -ValueDefault=0 +Choices=sp_angle_word=ignore|sp_angle_word=add|sp_angle_word=remove|sp_angle_word=force|sp_angle_word=not_defined +ChoicesReadable="(77)Ignore Sp Angle Word|(77)Add Sp Angle Word|(77)Remove Sp Angle Word|(77)Force Sp Angle Word" +ValueDefault=ignore -[Sp Balance Nested Parens] -Category=2 -Description="Whether to balance spaces inside nested parens" +[Sp Angle Shift] +Category=1 +Description="(78)Add or remove space between '>' and '>' in '>>' (template stuff).

Default: add" +Enabled=false +EditorType=multiple +Choices=sp_angle_shift=ignore|sp_angle_shift=add|sp_angle_shift=remove|sp_angle_shift=force|sp_angle_shift=not_defined +ChoicesReadable="(78)Ignore Sp Angle Shift|(78)Add Sp Angle Shift|(78)Remove Sp Angle Shift|(78)Force Sp Angle Shift" +ValueDefault=add + +[Sp Permit Cpp11 Shift] +Category=1 +Description="(79)(C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note
that sp_angle_shift cannot remove the space without this option." Enabled=false EditorType=boolean -TrueFalse=sp_balance_nested_parens=true|sp_balance_nested_parens=false -ValueDefault=0 +TrueFalse=sp_permit_cpp11_shift=true|sp_permit_cpp11_shift=false +ValueDefault=false -[Sp Paren Brace] -Category=2 -Description="Add or remove space between ')' and '{'" +[Sp Before Sparen] +Category=1 +Description="(80)Add or remove space before '(' of control statements ('if', 'for', 'switch',
'while', etc.)." Enabled=false EditorType=multiple -Choices="sp_paren_brace=ignore|sp_paren_brace=add|sp_paren_brace=remove|sp_paren_brace=force" -ChoicesReadable="Ignore Sp Paren Brace|Add Sp Paren Brace|Remove Sp Paren Brace|Force Sp Paren Brace" -ValueDefault=0 +Choices=sp_before_sparen=ignore|sp_before_sparen=add|sp_before_sparen=remove|sp_before_sparen=force|sp_before_sparen=not_defined +ChoicesReadable="(80)Ignore Sp Before Sparen|(80)Add Sp Before Sparen|(80)Remove Sp Before Sparen|(80)Force Sp Before Sparen" +ValueDefault=ignore -[Sp Before Ptr Star] -Category=2 -Description="Add or remove space before pointer star '*'" +[Sp Inside Sparen] +Category=1 +Description="(81)Add or remove space inside '(' and ')' of control statements other than
'for'." Enabled=false EditorType=multiple -Choices="sp_before_ptr_star=ignore|sp_before_ptr_star=add|sp_before_ptr_star=remove|sp_before_ptr_star=force" -ChoicesReadable="Ignore Sp Before Ptr Star|Add Sp Before Ptr Star|Remove Sp Before Ptr Star|Force Sp Before Ptr Star" -ValueDefault=0 +Choices=sp_inside_sparen=ignore|sp_inside_sparen=add|sp_inside_sparen=remove|sp_inside_sparen=force|sp_inside_sparen=not_defined +ChoicesReadable="(81)Ignore Sp Inside Sparen|(81)Add Sp Inside Sparen|(81)Remove Sp Inside Sparen|(81)Force Sp Inside Sparen" +ValueDefault=ignore -[Sp Before Unnamed Ptr Star] -Category=2 -Description="Add or remove space before pointer star '*' that isn't followed by a variable name
If set to 'ignore', sp_before_ptr_star is used instead." +[Sp Inside Sparen Open] +Category=1 +Description="(82)Add or remove space after '(' of control statements other than 'for'.

Overrides sp_inside_sparen." Enabled=false EditorType=multiple -Choices="sp_before_unnamed_ptr_star=ignore|sp_before_unnamed_ptr_star=add|sp_before_unnamed_ptr_star=remove|sp_before_unnamed_ptr_star=force" -ChoicesReadable="Ignore Sp Before Unnamed Ptr Star|Add Sp Before Unnamed Ptr Star|Remove Sp Before Unnamed Ptr Star|Force Sp Before Unnamed Ptr Star" -ValueDefault=0 +Choices=sp_inside_sparen_open=ignore|sp_inside_sparen_open=add|sp_inside_sparen_open=remove|sp_inside_sparen_open=force|sp_inside_sparen_open=not_defined +ChoicesReadable="(82)Ignore Sp Inside Sparen Open|(82)Add Sp Inside Sparen Open|(82)Remove Sp Inside Sparen Open|(82)Force Sp Inside Sparen Open" +ValueDefault=ignore -[Sp Between Ptr Star] -Category=2 -Description="Add or remove space between pointer stars '*'" +[Sp Inside Sparen Close] +Category=1 +Description="(83)Add or remove space before ')' of control statements other than 'for'.

Overrides sp_inside_sparen." Enabled=false EditorType=multiple -Choices="sp_between_ptr_star=ignore|sp_between_ptr_star=add|sp_between_ptr_star=remove|sp_between_ptr_star=force" -ChoicesReadable="Ignore Sp Between Ptr Star|Add Sp Between Ptr Star|Remove Sp Between Ptr Star|Force Sp Between Ptr Star" -ValueDefault=0 +Choices=sp_inside_sparen_close=ignore|sp_inside_sparen_close=add|sp_inside_sparen_close=remove|sp_inside_sparen_close=force|sp_inside_sparen_close=not_defined +ChoicesReadable="(83)Ignore Sp Inside Sparen Close|(83)Add Sp Inside Sparen Close|(83)Remove Sp Inside Sparen Close|(83)Force Sp Inside Sparen Close" +ValueDefault=ignore -[Sp After Ptr Star] -Category=2 -Description="Add or remove space after pointer star '*', if followed by a word." +[Sp Inside For] +Category=1 +Description="(84)Add or remove space inside '(' and ')' of 'for' statements." Enabled=false EditorType=multiple -Choices="sp_after_ptr_star=ignore|sp_after_ptr_star=add|sp_after_ptr_star=remove|sp_after_ptr_star=force" -ChoicesReadable="Ignore Sp After Ptr Star|Add Sp After Ptr Star|Remove Sp After Ptr Star|Force Sp After Ptr Star" -ValueDefault=0 +Choices=sp_inside_for=ignore|sp_inside_for=add|sp_inside_for=remove|sp_inside_for=force|sp_inside_for=not_defined +ChoicesReadable="(84)Ignore Sp Inside For|(84)Add Sp Inside For|(84)Remove Sp Inside For|(84)Force Sp Inside For" +ValueDefault=ignore -[Sp After Ptr Star Func] -Category=2 -Description="Add or remove space after a pointer star '*', if followed by a func proto/def." +[Sp Inside For Open] +Category=1 +Description="(85)Add or remove space after '(' of 'for' statements.

Overrides sp_inside_for." Enabled=false EditorType=multiple -Choices="sp_after_ptr_star_func=ignore|sp_after_ptr_star_func=add|sp_after_ptr_star_func=remove|sp_after_ptr_star_func=force" -ChoicesReadable="Ignore Sp After Ptr Star Func|Add Sp After Ptr Star Func|Remove Sp After Ptr Star Func|Force Sp After Ptr Star Func" -ValueDefault=0 +Choices=sp_inside_for_open=ignore|sp_inside_for_open=add|sp_inside_for_open=remove|sp_inside_for_open=force|sp_inside_for_open=not_defined +ChoicesReadable="(85)Ignore Sp Inside For Open|(85)Add Sp Inside For Open|(85)Remove Sp Inside For Open|(85)Force Sp Inside For Open" +ValueDefault=ignore -[Sp Before Ptr Star Func] -Category=2 -Description="Add or remove space before a pointer star '*', if followed by a func proto/def." +[Sp Inside For Close] +Category=1 +Description="(86)Add or remove space before ')' of 'for' statements.

Overrides sp_inside_for." Enabled=false EditorType=multiple -Choices="sp_before_ptr_star_func=ignore|sp_before_ptr_star_func=add|sp_before_ptr_star_func=remove|sp_before_ptr_star_func=force" -ChoicesReadable="Ignore Sp Before Ptr Star Func|Add Sp Before Ptr Star Func|Remove Sp Before Ptr Star Func|Force Sp Before Ptr Star Func" -ValueDefault=0 +Choices=sp_inside_for_close=ignore|sp_inside_for_close=add|sp_inside_for_close=remove|sp_inside_for_close=force|sp_inside_for_close=not_defined +ChoicesReadable="(86)Ignore Sp Inside For Close|(86)Add Sp Inside For Close|(86)Remove Sp Inside For Close|(86)Force Sp Inside For Close" +ValueDefault=ignore -[Sp Before Byref] -Category=2 -Description="Add or remove space before a reference sign '&'" +[Sp Sparen Paren] +Category=1 +Description="(87)Add or remove space between '((' or '))' of control statements." Enabled=false EditorType=multiple -Choices="sp_before_byref=ignore|sp_before_byref=add|sp_before_byref=remove|sp_before_byref=force" -ChoicesReadable="Ignore Sp Before Byref|Add Sp Before Byref|Remove Sp Before Byref|Force Sp Before Byref" -ValueDefault=0 +Choices=sp_sparen_paren=ignore|sp_sparen_paren=add|sp_sparen_paren=remove|sp_sparen_paren=force|sp_sparen_paren=not_defined +ChoicesReadable="(87)Ignore Sp Sparen Paren|(87)Add Sp Sparen Paren|(87)Remove Sp Sparen Paren|(87)Force Sp Sparen Paren" +ValueDefault=ignore -[Sp Before Unnamed Byref] -Category=2 -Description="Add or remove space before a reference sign '&' that isn't followed by a variable name
If set to 'ignore', sp_before_byref is used instead." +[Sp After Sparen] +Category=1 +Description="(88)Add or remove space after ')' of control statements." Enabled=false EditorType=multiple -Choices="sp_before_unnamed_byref=ignore|sp_before_unnamed_byref=add|sp_before_unnamed_byref=remove|sp_before_unnamed_byref=force" -ChoicesReadable="Ignore Sp Before Unnamed Byref|Add Sp Before Unnamed Byref|Remove Sp Before Unnamed Byref|Force Sp Before Unnamed Byref" -ValueDefault=0 +Choices=sp_after_sparen=ignore|sp_after_sparen=add|sp_after_sparen=remove|sp_after_sparen=force|sp_after_sparen=not_defined +ChoicesReadable="(88)Ignore Sp After Sparen|(88)Add Sp After Sparen|(88)Remove Sp After Sparen|(88)Force Sp After Sparen" +ValueDefault=ignore -[Sp After Byref] -Category=2 -Description="Add or remove space after reference sign '&', if followed by a word." +[Sp Sparen Brace] +Category=1 +Description="(89)Add or remove space between ')' and '{' of control statements." Enabled=false EditorType=multiple -Choices="sp_after_byref=ignore|sp_after_byref=add|sp_after_byref=remove|sp_after_byref=force" -ChoicesReadable="Ignore Sp After Byref|Add Sp After Byref|Remove Sp After Byref|Force Sp After Byref" -ValueDefault=0 +Choices=sp_sparen_brace=ignore|sp_sparen_brace=add|sp_sparen_brace=remove|sp_sparen_brace=force|sp_sparen_brace=not_defined +ChoicesReadable="(89)Ignore Sp Sparen Brace|(89)Add Sp Sparen Brace|(89)Remove Sp Sparen Brace|(89)Force Sp Sparen Brace" +ValueDefault=ignore -[Sp After Byref Func] -Category=2 -Description="Add or remove space after a reference sign '&', if followed by a func proto/def." +[Sp Do Brace Open] +Category=1 +Description="(90)Add or remove space between 'do' and '{'." Enabled=false EditorType=multiple -Choices="sp_after_byref_func=ignore|sp_after_byref_func=add|sp_after_byref_func=remove|sp_after_byref_func=force" -ChoicesReadable="Ignore Sp After Byref Func|Add Sp After Byref Func|Remove Sp After Byref Func|Force Sp After Byref Func" -ValueDefault=0 +Choices=sp_do_brace_open=ignore|sp_do_brace_open=add|sp_do_brace_open=remove|sp_do_brace_open=force|sp_do_brace_open=not_defined +ChoicesReadable="(90)Ignore Sp Do Brace Open|(90)Add Sp Do Brace Open|(90)Remove Sp Do Brace Open|(90)Force Sp Do Brace Open" +ValueDefault=ignore -[Sp Before Byref Func] -Category=2 -Description="Add or remove space before a reference sign '&', if followed by a func proto/def." +[Sp Brace Close While] +Category=1 +Description="(91)Add or remove space between '}' and 'while'." Enabled=false EditorType=multiple -Choices="sp_before_byref_func=ignore|sp_before_byref_func=add|sp_before_byref_func=remove|sp_before_byref_func=force" -ChoicesReadable="Ignore Sp Before Byref Func|Add Sp Before Byref Func|Remove Sp Before Byref Func|Force Sp Before Byref Func" -ValueDefault=0 +Choices=sp_brace_close_while=ignore|sp_brace_close_while=add|sp_brace_close_while=remove|sp_brace_close_while=force|sp_brace_close_while=not_defined +ChoicesReadable="(91)Ignore Sp Brace Close While|(91)Add Sp Brace Close While|(91)Remove Sp Brace Close While|(91)Force Sp Brace Close While" +ValueDefault=ignore -[Sp After Type] -Category=2 -Description="Add or remove space between type and word. Default=Force" +[Sp While Paren Open] +Category=1 +Description="(92)Add or remove space between 'while' and '('. Overrides sp_before_sparen." Enabled=false EditorType=multiple -Choices="sp_after_type=ignore|sp_after_type=add|sp_after_type=remove|sp_after_type=force" -ChoicesReadable="Ignore Sp After Type|Add Sp After Type|Remove Sp After Type|Force Sp After Type" -ValueDefault=3 +Choices=sp_while_paren_open=ignore|sp_while_paren_open=add|sp_while_paren_open=remove|sp_while_paren_open=force|sp_while_paren_open=not_defined +ChoicesReadable="(92)Ignore Sp While Paren Open|(92)Add Sp While Paren Open|(92)Remove Sp While Paren Open|(92)Force Sp While Paren Open" +ValueDefault=ignore -[Sp Template Angle] -Category=2 -Description="Add or remove space in 'template <' vs 'template<'.
If set to ignore, sp_before_angle is used." +[Sp Invariant Paren] +Category=1 +Description="(93)(D) Add or remove space between 'invariant' and '('." Enabled=false EditorType=multiple -Choices="sp_template_angle=ignore|sp_template_angle=add|sp_template_angle=remove|sp_template_angle=force" -ChoicesReadable="Ignore Sp Template Angle|Add Sp Template Angle|Remove Sp Template Angle|Force Sp Template Angle" -ValueDefault=0 +Choices=sp_invariant_paren=ignore|sp_invariant_paren=add|sp_invariant_paren=remove|sp_invariant_paren=force|sp_invariant_paren=not_defined +ChoicesReadable="(93)Ignore Sp Invariant Paren|(93)Add Sp Invariant Paren|(93)Remove Sp Invariant Paren|(93)Force Sp Invariant Paren" +ValueDefault=ignore -[Sp Before Angle] -Category=2 -Description="Add or remove space before '<>'" +[Sp After Invariant Paren] +Category=1 +Description="(94)(D) Add or remove space after the ')' in 'invariant (C) c'." Enabled=false EditorType=multiple -Choices="sp_before_angle=ignore|sp_before_angle=add|sp_before_angle=remove|sp_before_angle=force" -ChoicesReadable="Ignore Sp Before Angle|Add Sp Before Angle|Remove Sp Before Angle|Force Sp Before Angle" -ValueDefault=0 +Choices=sp_after_invariant_paren=ignore|sp_after_invariant_paren=add|sp_after_invariant_paren=remove|sp_after_invariant_paren=force|sp_after_invariant_paren=not_defined +ChoicesReadable="(94)Ignore Sp After Invariant Paren|(94)Add Sp After Invariant Paren|(94)Remove Sp After Invariant Paren|(94)Force Sp After Invariant Paren" +ValueDefault=ignore -[Sp Inside Angle] -Category=2 -Description="Add or remove space inside '<' and '>'" +[Sp Special Semi] +Category=1 +Description="(95)Add or remove space before empty statement ';' on 'if', 'for' and 'while'." Enabled=false EditorType=multiple -Choices="sp_inside_angle=ignore|sp_inside_angle=add|sp_inside_angle=remove|sp_inside_angle=force" -ChoicesReadable="Ignore Sp Inside Angle|Add Sp Inside Angle|Remove Sp Inside Angle|Force Sp Inside Angle" -ValueDefault=0 +Choices=sp_special_semi=ignore|sp_special_semi=add|sp_special_semi=remove|sp_special_semi=force|sp_special_semi=not_defined +ChoicesReadable="(95)Ignore Sp Special Semi|(95)Add Sp Special Semi|(95)Remove Sp Special Semi|(95)Force Sp Special Semi" +ValueDefault=ignore -[Sp After Angle] -Category=2 -Description="Add or remove space after '<>'" +[Sp Before Semi] +Category=1 +Description="(96)Add or remove space before ';'.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_after_angle=ignore|sp_after_angle=add|sp_after_angle=remove|sp_after_angle=force" -ChoicesReadable="Ignore Sp After Angle|Add Sp After Angle|Remove Sp After Angle|Force Sp After Angle" -ValueDefault=0 +Choices=sp_before_semi=ignore|sp_before_semi=add|sp_before_semi=remove|sp_before_semi=force|sp_before_semi=not_defined +ChoicesReadable="(96)Ignore Sp Before Semi|(96)Add Sp Before Semi|(96)Remove Sp Before Semi|(96)Force Sp Before Semi" +ValueDefault=remove -[Sp Angle Paren] -Category=2 -Description="Add or remove space between '<>' and '(' as found in 'new List<byte>();'" +[Sp Before Semi For] +Category=1 +Description="(97)Add or remove space before ';' in non-empty 'for' statements." Enabled=false EditorType=multiple -Choices="sp_angle_paren=ignore|sp_angle_paren=add|sp_angle_paren=remove|sp_angle_paren=force" -ChoicesReadable="Ignore Sp Angle Paren|Add Sp Angle Paren|Remove Sp Angle Paren|Force Sp Angle Paren" -ValueDefault=0 +Choices=sp_before_semi_for=ignore|sp_before_semi_for=add|sp_before_semi_for=remove|sp_before_semi_for=force|sp_before_semi_for=not_defined +ChoicesReadable="(97)Ignore Sp Before Semi For|(97)Add Sp Before Semi For|(97)Remove Sp Before Semi For|(97)Force Sp Before Semi For" +ValueDefault=ignore -[Sp Angle Word] -Category=2 -Description="Add or remove space between '<>' and a word as in 'List<byte> m;'" +[Sp Before Semi For Empty] +Category=1 +Description="(98)Add or remove space before a semicolon of an empty left part of a for
statement, as in 'for ( <here> ; ; )'." Enabled=false EditorType=multiple -Choices="sp_angle_word=ignore|sp_angle_word=add|sp_angle_word=remove|sp_angle_word=force" -ChoicesReadable="Ignore Sp Angle Word|Add Sp Angle Word|Remove Sp Angle Word|Force Sp Angle Word" -ValueDefault=0 +Choices=sp_before_semi_for_empty=ignore|sp_before_semi_for_empty=add|sp_before_semi_for_empty=remove|sp_before_semi_for_empty=force|sp_before_semi_for_empty=not_defined +ChoicesReadable="(98)Ignore Sp Before Semi For Empty|(98)Add Sp Before Semi For Empty|(98)Remove Sp Before Semi For Empty|(98)Force Sp Before Semi For Empty" +ValueDefault=ignore -[Sp Angle Shift] -Category=2 -Description="Add or remove space between '>' and '>' in '>>' (template stuff C++/C# only). Default=Add" +[Sp Between Semi For Empty] +Category=1 +Description="(99)Add or remove space between the semicolons of an empty middle part of a for
statement, as in 'for ( ; <here> ; )'." Enabled=false EditorType=multiple -Choices="sp_angle_shift=ignore|sp_angle_shift=add|sp_angle_shift=remove|sp_angle_shift=force" -ChoicesReadable="Ignore Sp Angle Shift|Add Sp Angle Shift|Remove Sp Angle Shift|Force Sp Angle Shift" -ValueDefault=1 +Choices=sp_between_semi_for_empty=ignore|sp_between_semi_for_empty=add|sp_between_semi_for_empty=remove|sp_between_semi_for_empty=force|sp_between_semi_for_empty=not_defined +ChoicesReadable="(99)Ignore Sp Between Semi For Empty|(99)Add Sp Between Semi For Empty|(99)Remove Sp Between Semi For Empty|(99)Force Sp Between Semi For Empty" +ValueDefault=ignore -[Sp Before Sparen] -Category=2 -Description="Add or remove space before '(' of 'if', 'for', 'switch', and 'while'" +[Sp After Semi] +Category=1 +Description="(100)Add or remove space after ';', except when followed by a comment.

Default: add" Enabled=false EditorType=multiple -Choices="sp_before_sparen=ignore|sp_before_sparen=add|sp_before_sparen=remove|sp_before_sparen=force" -ChoicesReadable="Ignore Sp Before Sparen|Add Sp Before Sparen|Remove Sp Before Sparen|Force Sp Before Sparen" -ValueDefault=0 +Choices=sp_after_semi=ignore|sp_after_semi=add|sp_after_semi=remove|sp_after_semi=force|sp_after_semi=not_defined +ChoicesReadable="(100)Ignore Sp After Semi|(100)Add Sp After Semi|(100)Remove Sp After Semi|(100)Force Sp After Semi" +ValueDefault=add -[Sp Inside Sparen] -Category=2 -Description="Add or remove space inside if-condition '(' and ')'" +[Sp After Semi For] +Category=1 +Description="(101)Add or remove space after ';' in non-empty 'for' statements.

Default: force" Enabled=false EditorType=multiple -Choices="sp_inside_sparen=ignore|sp_inside_sparen=add|sp_inside_sparen=remove|sp_inside_sparen=force" -ChoicesReadable="Ignore Sp Inside Sparen|Add Sp Inside Sparen|Remove Sp Inside Sparen|Force Sp Inside Sparen" -ValueDefault=0 +Choices=sp_after_semi_for=ignore|sp_after_semi_for=add|sp_after_semi_for=remove|sp_after_semi_for=force|sp_after_semi_for=not_defined +ChoicesReadable="(101)Ignore Sp After Semi For|(101)Add Sp After Semi For|(101)Remove Sp After Semi For|(101)Force Sp After Semi For" +ValueDefault=force -[Sp Inside Sparen Close] -Category=2 -Description="Add or remove space before if-condition ')'. Overrides sp_inside_sparen." +[Sp After Semi For Empty] +Category=1 +Description="(102)Add or remove space after the final semicolon of an empty part of a for
statement, as in 'for ( ; ; <here> )'." Enabled=false EditorType=multiple -Choices="sp_inside_sparen_close=ignore|sp_inside_sparen_close=add|sp_inside_sparen_close=remove|sp_inside_sparen_close=force" -ChoicesReadable="Ignore Sp Inside Sparen Close|Add Sp Inside Sparen Close|Remove Sp Inside Sparen Close|Force Sp Inside Sparen Close" -ValueDefault=0 +Choices=sp_after_semi_for_empty=ignore|sp_after_semi_for_empty=add|sp_after_semi_for_empty=remove|sp_after_semi_for_empty=force|sp_after_semi_for_empty=not_defined +ChoicesReadable="(102)Ignore Sp After Semi For Empty|(102)Add Sp After Semi For Empty|(102)Remove Sp After Semi For Empty|(102)Force Sp After Semi For Empty" +ValueDefault=ignore -[Sp After Sparen] -Category=2 -Description="Add or remove space after ')' of 'if', 'for', 'switch', and 'while'" +[Sp Before Square] +Category=1 +Description="(103)Add or remove space before '[' (except '[]')." Enabled=false EditorType=multiple -Choices="sp_after_sparen=ignore|sp_after_sparen=add|sp_after_sparen=remove|sp_after_sparen=force" -ChoicesReadable="Ignore Sp After Sparen|Add Sp After Sparen|Remove Sp After Sparen|Force Sp After Sparen" -ValueDefault=0 +Choices=sp_before_square=ignore|sp_before_square=add|sp_before_square=remove|sp_before_square=force|sp_before_square=not_defined +ChoicesReadable="(103)Ignore Sp Before Square|(103)Add Sp Before Square|(103)Remove Sp Before Square|(103)Force Sp Before Square" +ValueDefault=ignore -[Sp Sparen Brace] -Category=2 -Description="Add or remove space between ')' and '{' of 'if', 'for', 'switch', and 'while'" +[Sp Before Vardef Square] +Category=1 +Description="(104)Add or remove space before '[' for a variable definition.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_sparen_brace=ignore|sp_sparen_brace=add|sp_sparen_brace=remove|sp_sparen_brace=force" -ChoicesReadable="Ignore Sp Sparen Brace|Add Sp Sparen Brace|Remove Sp Sparen Brace|Force Sp Sparen Brace" -ValueDefault=0 +Choices=sp_before_vardef_square=ignore|sp_before_vardef_square=add|sp_before_vardef_square=remove|sp_before_vardef_square=force|sp_before_vardef_square=not_defined +ChoicesReadable="(104)Ignore Sp Before Vardef Square|(104)Add Sp Before Vardef Square|(104)Remove Sp Before Vardef Square|(104)Force Sp Before Vardef Square" +ValueDefault=remove -[Sp Invariant Paren] -Category=2 -Description="Add or remove space between 'invariant' and '(' in the D language." +[Sp Before Square Asm Block] +Category=1 +Description="(105)Add or remove space before '[' for asm block." Enabled=false EditorType=multiple -Choices="sp_invariant_paren=ignore|sp_invariant_paren=add|sp_invariant_paren=remove|sp_invariant_paren=force" -ChoicesReadable="Ignore Sp Invariant Paren|Add Sp Invariant Paren|Remove Sp Invariant Paren|Force Sp Invariant Paren" -ValueDefault=0 +Choices=sp_before_square_asm_block=ignore|sp_before_square_asm_block=add|sp_before_square_asm_block=remove|sp_before_square_asm_block=force|sp_before_square_asm_block=not_defined +ChoicesReadable="(105)Ignore Sp Before Square Asm Block|(105)Add Sp Before Square Asm Block|(105)Remove Sp Before Square Asm Block|(105)Force Sp Before Square Asm Block" +ValueDefault=ignore -[Sp After Invariant Paren] -Category=2 -Description="Add or remove space after the ')' in 'invariant (C) c' in the D language." +[Sp Before Squares] +Category=1 +Description="(106)Add or remove space before '[]'." Enabled=false EditorType=multiple -Choices="sp_after_invariant_paren=ignore|sp_after_invariant_paren=add|sp_after_invariant_paren=remove|sp_after_invariant_paren=force" -ChoicesReadable="Ignore Sp After Invariant Paren|Add Sp After Invariant Paren|Remove Sp After Invariant Paren|Force Sp After Invariant Paren" -ValueDefault=0 +Choices=sp_before_squares=ignore|sp_before_squares=add|sp_before_squares=remove|sp_before_squares=force|sp_before_squares=not_defined +ChoicesReadable="(106)Ignore Sp Before Squares|(106)Add Sp Before Squares|(106)Remove Sp Before Squares|(106)Force Sp Before Squares" +ValueDefault=ignore -[Sp Special Semi] -Category=2 -Description="Add or remove space before empty statement ';' on 'if', 'for' and 'while'" +[Sp Cpp Before Struct Binding] +Category=1 +Description="(107)Add or remove space before C++17 structured bindings." Enabled=false EditorType=multiple -Choices="sp_special_semi=ignore|sp_special_semi=add|sp_special_semi=remove|sp_special_semi=force" -ChoicesReadable="Ignore Sp Special Semi|Add Sp Special Semi|Remove Sp Special Semi|Force Sp Special Semi" -ValueDefault=0 +Choices=sp_cpp_before_struct_binding=ignore|sp_cpp_before_struct_binding=add|sp_cpp_before_struct_binding=remove|sp_cpp_before_struct_binding=force|sp_cpp_before_struct_binding=not_defined +ChoicesReadable="(107)Ignore Sp Cpp Before Struct Binding|(107)Add Sp Cpp Before Struct Binding|(107)Remove Sp Cpp Before Struct Binding|(107)Force Sp Cpp Before Struct Binding" +ValueDefault=ignore -[Sp Before Semi] -Category=2 -Description="Add or remove space before ';'. Default=Remove" +[Sp Inside Square] +Category=1 +Description="(108)Add or remove space inside a non-empty '[' and ']'." Enabled=false EditorType=multiple -Choices="sp_before_semi=ignore|sp_before_semi=add|sp_before_semi=remove|sp_before_semi=force" -ChoicesReadable="Ignore Sp Before Semi|Add Sp Before Semi|Remove Sp Before Semi|Force Sp Before Semi" -ValueDefault=2 +Choices=sp_inside_square=ignore|sp_inside_square=add|sp_inside_square=remove|sp_inside_square=force|sp_inside_square=not_defined +ChoicesReadable="(108)Ignore Sp Inside Square|(108)Add Sp Inside Square|(108)Remove Sp Inside Square|(108)Force Sp Inside Square" +ValueDefault=ignore -[Sp Before Semi For] -Category=2 -Description="Add or remove space before ';' in non-empty 'for' statements" +[Sp Inside Square Empty] +Category=1 +Description="(109)Add or remove space inside '[]'." Enabled=false EditorType=multiple -Choices="sp_before_semi_for=ignore|sp_before_semi_for=add|sp_before_semi_for=remove|sp_before_semi_for=force" -ChoicesReadable="Ignore Sp Before Semi For|Add Sp Before Semi For|Remove Sp Before Semi For|Force Sp Before Semi For" -ValueDefault=0 +Choices=sp_inside_square_empty=ignore|sp_inside_square_empty=add|sp_inside_square_empty=remove|sp_inside_square_empty=force|sp_inside_square_empty=not_defined +ChoicesReadable="(109)Ignore Sp Inside Square Empty|(109)Add Sp Inside Square Empty|(109)Remove Sp Inside Square Empty|(109)Force Sp Inside Square Empty" +ValueDefault=ignore -[Sp Before Semi For Empty] -Category=2 -Description="Add or remove space before a semicolon of an empty part of a for statement." +[Sp Inside Square Oc Array] +Category=1 +Description="(110)(OC) Add or remove space inside a non-empty Objective-C boxed array '@[' and
']'. If set to ignore, sp_inside_square is used." Enabled=false EditorType=multiple -Choices="sp_before_semi_for_empty=ignore|sp_before_semi_for_empty=add|sp_before_semi_for_empty=remove|sp_before_semi_for_empty=force" -ChoicesReadable="Ignore Sp Before Semi For Empty|Add Sp Before Semi For Empty|Remove Sp Before Semi For Empty|Force Sp Before Semi For Empty" -ValueDefault=0 +Choices=sp_inside_square_oc_array=ignore|sp_inside_square_oc_array=add|sp_inside_square_oc_array=remove|sp_inside_square_oc_array=force|sp_inside_square_oc_array=not_defined +ChoicesReadable="(110)Ignore Sp Inside Square Oc Array|(110)Add Sp Inside Square Oc Array|(110)Remove Sp Inside Square Oc Array|(110)Force Sp Inside Square Oc Array" +ValueDefault=ignore -[Sp After Semi] -Category=2 -Description="Add or remove space after ';', except when followed by a comment. Default=Add" +[Sp After Comma] +Category=1 +Description="(111)Add or remove space after ',', i.e. 'a,b' vs. 'a, b'." Enabled=false EditorType=multiple -Choices="sp_after_semi=ignore|sp_after_semi=add|sp_after_semi=remove|sp_after_semi=force" -ChoicesReadable="Ignore Sp After Semi|Add Sp After Semi|Remove Sp After Semi|Force Sp After Semi" -ValueDefault=1 +Choices=sp_after_comma=ignore|sp_after_comma=add|sp_after_comma=remove|sp_after_comma=force|sp_after_comma=not_defined +ChoicesReadable="(111)Ignore Sp After Comma|(111)Add Sp After Comma|(111)Remove Sp After Comma|(111)Force Sp After Comma" +ValueDefault=ignore -[Sp After Semi For] -Category=2 -Description="Add or remove space after ';' in non-empty 'for' statements. Default=Force" +[Sp Before Comma] +Category=1 +Description="(112)Add or remove space before ',', i.e. 'a,b' vs. 'a ,b'.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_after_semi_for=ignore|sp_after_semi_for=add|sp_after_semi_for=remove|sp_after_semi_for=force" -ChoicesReadable="Ignore Sp After Semi For|Add Sp After Semi For|Remove Sp After Semi For|Force Sp After Semi For" -ValueDefault=3 +Choices=sp_before_comma=ignore|sp_before_comma=add|sp_before_comma=remove|sp_before_comma=force|sp_before_comma=not_defined +ChoicesReadable="(112)Ignore Sp Before Comma|(112)Add Sp Before Comma|(112)Remove Sp Before Comma|(112)Force Sp Before Comma" +ValueDefault=remove -[Sp After Semi For Empty] -Category=2 -Description="Add or remove space after the final semicolon of an empty part of a for statement: for ( ; ; <here> )." +[Sp After Mdatype Commas] +Category=1 +Description="(113)(C#, Vala) Add or remove space between ',' and ']' in multidimensional array type
like 'int[,,]'." Enabled=false EditorType=multiple -Choices="sp_after_semi_for_empty=ignore|sp_after_semi_for_empty=add|sp_after_semi_for_empty=remove|sp_after_semi_for_empty=force" -ChoicesReadable="Ignore Sp After Semi For Empty|Add Sp After Semi For Empty|Remove Sp After Semi For Empty|Force Sp After Semi For Empty" -ValueDefault=0 +Choices=sp_after_mdatype_commas=ignore|sp_after_mdatype_commas=add|sp_after_mdatype_commas=remove|sp_after_mdatype_commas=force|sp_after_mdatype_commas=not_defined +ChoicesReadable="(113)Ignore Sp After Mdatype Commas|(113)Add Sp After Mdatype Commas|(113)Remove Sp After Mdatype Commas|(113)Force Sp After Mdatype Commas" +ValueDefault=ignore -[Sp Before Square] -Category=2 -Description="Add or remove space before '[' (except '[]')" +[Sp Before Mdatype Commas] +Category=1 +Description="(114)(C#, Vala) Add or remove space between '[' and ',' in multidimensional array type
like 'int[,,]'." Enabled=false EditorType=multiple -Choices="sp_before_square=ignore|sp_before_square=add|sp_before_square=remove|sp_before_square=force" -ChoicesReadable="Ignore Sp Before Square|Add Sp Before Square|Remove Sp Before Square|Force Sp Before Square" -ValueDefault=0 +Choices=sp_before_mdatype_commas=ignore|sp_before_mdatype_commas=add|sp_before_mdatype_commas=remove|sp_before_mdatype_commas=force|sp_before_mdatype_commas=not_defined +ChoicesReadable="(114)Ignore Sp Before Mdatype Commas|(114)Add Sp Before Mdatype Commas|(114)Remove Sp Before Mdatype Commas|(114)Force Sp Before Mdatype Commas" +ValueDefault=ignore -[Sp Before Squares] -Category=2 -Description="Add or remove space before '[]'" +[Sp Between Mdatype Commas] +Category=1 +Description="(115)(C#, Vala) Add or remove space between ',' in multidimensional array type
like 'int[,,]'." Enabled=false EditorType=multiple -Choices="sp_before_squares=ignore|sp_before_squares=add|sp_before_squares=remove|sp_before_squares=force" -ChoicesReadable="Ignore Sp Before Squares|Add Sp Before Squares|Remove Sp Before Squares|Force Sp Before Squares" -ValueDefault=0 +Choices=sp_between_mdatype_commas=ignore|sp_between_mdatype_commas=add|sp_between_mdatype_commas=remove|sp_between_mdatype_commas=force|sp_between_mdatype_commas=not_defined +ChoicesReadable="(115)Ignore Sp Between Mdatype Commas|(115)Add Sp Between Mdatype Commas|(115)Remove Sp Between Mdatype Commas|(115)Force Sp Between Mdatype Commas" +ValueDefault=ignore -[Sp Inside Square] -Category=2 -Description="Add or remove space inside a non-empty '[' and ']'" +[Sp Paren Comma] +Category=1 +Description="(116)Add or remove space between an open parenthesis and comma,
i.e. '(,' vs. '( ,'.

Default: force" Enabled=false EditorType=multiple -Choices="sp_inside_square=ignore|sp_inside_square=add|sp_inside_square=remove|sp_inside_square=force" -ChoicesReadable="Ignore Sp Inside Square|Add Sp Inside Square|Remove Sp Inside Square|Force Sp Inside Square" -ValueDefault=0 +Choices=sp_paren_comma=ignore|sp_paren_comma=add|sp_paren_comma=remove|sp_paren_comma=force|sp_paren_comma=not_defined +ChoicesReadable="(116)Ignore Sp Paren Comma|(116)Add Sp Paren Comma|(116)Remove Sp Paren Comma|(116)Force Sp Paren Comma" +ValueDefault=force -[Sp After Comma] -Category=2 -Description="Add or remove space after ','" +[Sp Type Colon] +Category=1 +Description="(117)Add or remove space between a type and ':'." Enabled=false EditorType=multiple -Choices="sp_after_comma=ignore|sp_after_comma=add|sp_after_comma=remove|sp_after_comma=force" -ChoicesReadable="Ignore Sp After Comma|Add Sp After Comma|Remove Sp After Comma|Force Sp After Comma" -ValueDefault=0 +Choices=sp_type_colon=ignore|sp_type_colon=add|sp_type_colon=remove|sp_type_colon=force|sp_type_colon=not_defined +ChoicesReadable="(117)Ignore Sp Type Colon|(117)Add Sp Type Colon|(117)Remove Sp Type Colon|(117)Force Sp Type Colon" +ValueDefault=ignore -[Sp Before Comma] -Category=2 -Description="Add or remove space before ','" +[Sp After Ellipsis] +Category=1 +Description="(118)Add or remove space after the variadic '...' when preceded by a
non-punctuator.
The value REMOVE will be overridden with FORCE" Enabled=false EditorType=multiple -Choices="sp_before_comma=ignore|sp_before_comma=add|sp_before_comma=remove|sp_before_comma=force" -ChoicesReadable="Ignore Sp Before Comma|Add Sp Before Comma|Remove Sp Before Comma|Force Sp Before Comma" -ValueDefault=2 +Choices=sp_after_ellipsis=ignore|sp_after_ellipsis=add|sp_after_ellipsis=remove|sp_after_ellipsis=force|sp_after_ellipsis=not_defined +ChoicesReadable="(118)Ignore Sp After Ellipsis|(118)Add Sp After Ellipsis|(118)Remove Sp After Ellipsis|(118)Force Sp After Ellipsis" +ValueDefault=ignore -[Sp Paren Comma] -Category=2 -Description="Add or remove space between an open paren and comma: '(,' vs '( ,'
" +[Sp Before Ellipsis] +Category=1 +Description="(119)Add or remove space before the variadic '...' when preceded by a
non-punctuator.
The value REMOVE will be overridden with FORCE" Enabled=false EditorType=multiple -Choices="sp_paren_comma=ignore|sp_paren_comma=add|sp_paren_comma=remove|sp_paren_comma=force" -ChoicesReadable="Ignore Sp Paren Comma|Add Sp Paren Comma|Remove Sp Paren Comma|Force Sp Paren Comma" -ValueDefault=3 +Choices=sp_before_ellipsis=ignore|sp_before_ellipsis=add|sp_before_ellipsis=remove|sp_before_ellipsis=force|sp_before_ellipsis=not_defined +ChoicesReadable="(119)Ignore Sp Before Ellipsis|(119)Add Sp Before Ellipsis|(119)Remove Sp Before Ellipsis|(119)Force Sp Before Ellipsis" +ValueDefault=ignore -[Sp Before Ellipsis] -Category=2 -Description="Add or remove space before the variadic '...' when preceded by a non-punctuator" +[Sp Type Ellipsis] +Category=1 +Description="(120)Add or remove space between a type and '...'." Enabled=false EditorType=multiple -Choices="sp_before_ellipsis=ignore|sp_before_ellipsis=add|sp_before_ellipsis=remove|sp_before_ellipsis=force" -ChoicesReadable="Ignore Sp Before Ellipsis|Add Sp Before Ellipsis|Remove Sp Before Ellipsis|Force Sp Before Ellipsis" -ValueDefault=0 +Choices=sp_type_ellipsis=ignore|sp_type_ellipsis=add|sp_type_ellipsis=remove|sp_type_ellipsis=force|sp_type_ellipsis=not_defined +ChoicesReadable="(120)Ignore Sp Type Ellipsis|(120)Add Sp Type Ellipsis|(120)Remove Sp Type Ellipsis|(120)Force Sp Type Ellipsis" +ValueDefault=ignore -[Sp After Class Colon] -Category=2 -Description="Add or remove space after class ':'" +[Sp Ptr Type Ellipsis] +Category=1 +Description="(121)Add or remove space between a '*' and '...'." Enabled=false EditorType=multiple -Choices="sp_after_class_colon=ignore|sp_after_class_colon=add|sp_after_class_colon=remove|sp_after_class_colon=force" -ChoicesReadable="Ignore Sp After Class Colon|Add Sp After Class Colon|Remove Sp After Class Colon|Force Sp After Class Colon" -ValueDefault=0 +Choices=sp_ptr_type_ellipsis=ignore|sp_ptr_type_ellipsis=add|sp_ptr_type_ellipsis=remove|sp_ptr_type_ellipsis=force|sp_ptr_type_ellipsis=not_defined +ChoicesReadable="(121)Ignore Sp Ptr Type Ellipsis|(121)Add Sp Ptr Type Ellipsis|(121)Remove Sp Ptr Type Ellipsis|(121)Force Sp Ptr Type Ellipsis" +ValueDefault=ignore -[Sp Before Class Colon] -Category=2 -Description="Add or remove space before class ':'" +[Sp Paren Ellipsis] +Category=1 +Description="(122)Add or remove space between ')' and '...'." Enabled=false EditorType=multiple -Choices="sp_before_class_colon=ignore|sp_before_class_colon=add|sp_before_class_colon=remove|sp_before_class_colon=force" -ChoicesReadable="Ignore Sp Before Class Colon|Add Sp Before Class Colon|Remove Sp Before Class Colon|Force Sp Before Class Colon" -ValueDefault=0 +Choices=sp_paren_ellipsis=ignore|sp_paren_ellipsis=add|sp_paren_ellipsis=remove|sp_paren_ellipsis=force|sp_paren_ellipsis=not_defined +ChoicesReadable="(122)Ignore Sp Paren Ellipsis|(122)Add Sp Paren Ellipsis|(122)Remove Sp Paren Ellipsis|(122)Force Sp Paren Ellipsis" +ValueDefault=ignore -[Sp Before Case Colon] -Category=2 -Description="Add or remove space before case ':'. Default=Remove" +[Sp Byref Ellipsis] +Category=1 +Description="(123)Add or remove space between '&&' and '...'." Enabled=false EditorType=multiple -Choices="sp_before_case_colon=ignore|sp_before_case_colon=add|sp_before_case_colon=remove|sp_before_case_colon=force" -ChoicesReadable="Ignore Sp Before Case Colon|Add Sp Before Case Colon|Remove Sp Before Case Colon|Force Sp Before Case Colon" -ValueDefault=2 +Choices=sp_byref_ellipsis=ignore|sp_byref_ellipsis=add|sp_byref_ellipsis=remove|sp_byref_ellipsis=force|sp_byref_ellipsis=not_defined +ChoicesReadable="(123)Ignore Sp Byref Ellipsis|(123)Add Sp Byref Ellipsis|(123)Remove Sp Byref Ellipsis|(123)Force Sp Byref Ellipsis" +ValueDefault=ignore -[Sp After Operator] -Category=2 -Description="Add or remove space between 'operator' and operator sign" +[Sp Paren Qualifier] +Category=1 +Description="(124)Add or remove space between ')' and a qualifier such as 'const'." Enabled=false EditorType=multiple -Choices="sp_after_operator=ignore|sp_after_operator=add|sp_after_operator=remove|sp_after_operator=force" -ChoicesReadable="Ignore Sp After Operator|Add Sp After Operator|Remove Sp After Operator|Force Sp After Operator" -ValueDefault=0 +Choices=sp_paren_qualifier=ignore|sp_paren_qualifier=add|sp_paren_qualifier=remove|sp_paren_qualifier=force|sp_paren_qualifier=not_defined +ChoicesReadable="(124)Ignore Sp Paren Qualifier|(124)Add Sp Paren Qualifier|(124)Remove Sp Paren Qualifier|(124)Force Sp Paren Qualifier" +ValueDefault=ignore -[Sp After Operator Sym] -Category=2 -Description="Add or remove space between the operator symbol and the open paren, as in 'operator ++('" +[Sp Paren Noexcept] +Category=1 +Description="(125)Add or remove space between ')' and 'noexcept'." Enabled=false EditorType=multiple -Choices="sp_after_operator_sym=ignore|sp_after_operator_sym=add|sp_after_operator_sym=remove|sp_after_operator_sym=force" -ChoicesReadable="Ignore Sp After Operator Sym|Add Sp After Operator Sym|Remove Sp After Operator Sym|Force Sp After Operator Sym" -ValueDefault=0 +Choices=sp_paren_noexcept=ignore|sp_paren_noexcept=add|sp_paren_noexcept=remove|sp_paren_noexcept=force|sp_paren_noexcept=not_defined +ChoicesReadable="(125)Ignore Sp Paren Noexcept|(125)Add Sp Paren Noexcept|(125)Remove Sp Paren Noexcept|(125)Force Sp Paren Noexcept" +ValueDefault=ignore -[Sp After Cast] -Category=2 -Description="Add or remove space after C/D cast, i.e. 'cast(int)a' vs 'cast(int) a' or '(int)a' vs '(int) a'" +[Sp After Class Colon] +Category=1 +Description="(126)Add or remove space after class ':'." Enabled=false EditorType=multiple -Choices="sp_after_cast=ignore|sp_after_cast=add|sp_after_cast=remove|sp_after_cast=force" -ChoicesReadable="Ignore Sp After Cast|Add Sp After Cast|Remove Sp After Cast|Force Sp After Cast" -ValueDefault=0 +Choices=sp_after_class_colon=ignore|sp_after_class_colon=add|sp_after_class_colon=remove|sp_after_class_colon=force|sp_after_class_colon=not_defined +ChoicesReadable="(126)Ignore Sp After Class Colon|(126)Add Sp After Class Colon|(126)Remove Sp After Class Colon|(126)Force Sp After Class Colon" +ValueDefault=ignore -[Sp Inside Paren Cast] -Category=2 -Description="Add or remove spaces inside cast parens" +[Sp Before Class Colon] +Category=1 +Description="(127)Add or remove space before class ':'." Enabled=false EditorType=multiple -Choices="sp_inside_paren_cast=ignore|sp_inside_paren_cast=add|sp_inside_paren_cast=remove|sp_inside_paren_cast=force" -ChoicesReadable="Ignore Sp Inside Paren Cast|Add Sp Inside Paren Cast|Remove Sp Inside Paren Cast|Force Sp Inside Paren Cast" -ValueDefault=0 +Choices=sp_before_class_colon=ignore|sp_before_class_colon=add|sp_before_class_colon=remove|sp_before_class_colon=force|sp_before_class_colon=not_defined +ChoicesReadable="(127)Ignore Sp Before Class Colon|(127)Add Sp Before Class Colon|(127)Remove Sp Before Class Colon|(127)Force Sp Before Class Colon" +ValueDefault=ignore -[Sp Cpp Cast Paren] -Category=2 -Description="Add or remove space between the type and open paren in a C++ cast, i.e. 'int(exp)' vs 'int (exp)'" +[Sp After Constr Colon] +Category=1 +Description="(128)Add or remove space after class constructor ':'.

Default: add" Enabled=false EditorType=multiple -Choices="sp_cpp_cast_paren=ignore|sp_cpp_cast_paren=add|sp_cpp_cast_paren=remove|sp_cpp_cast_paren=force" -ChoicesReadable="Ignore Sp Cpp Cast Paren|Add Sp Cpp Cast Paren|Remove Sp Cpp Cast Paren|Force Sp Cpp Cast Paren" -ValueDefault=0 +Choices=sp_after_constr_colon=ignore|sp_after_constr_colon=add|sp_after_constr_colon=remove|sp_after_constr_colon=force|sp_after_constr_colon=not_defined +ChoicesReadable="(128)Ignore Sp After Constr Colon|(128)Add Sp After Constr Colon|(128)Remove Sp After Constr Colon|(128)Force Sp After Constr Colon" +ValueDefault=add -[Sp Sizeof Paren] -Category=2 -Description="Add or remove space between 'sizeof' and '('" +[Sp Before Constr Colon] +Category=1 +Description="(129)Add or remove space before class constructor ':'.

Default: add" Enabled=false EditorType=multiple -Choices="sp_sizeof_paren=ignore|sp_sizeof_paren=add|sp_sizeof_paren=remove|sp_sizeof_paren=force" -ChoicesReadable="Ignore Sp Sizeof Paren|Add Sp Sizeof Paren|Remove Sp Sizeof Paren|Force Sp Sizeof Paren" -ValueDefault=0 +Choices=sp_before_constr_colon=ignore|sp_before_constr_colon=add|sp_before_constr_colon=remove|sp_before_constr_colon=force|sp_before_constr_colon=not_defined +ChoicesReadable="(129)Ignore Sp Before Constr Colon|(129)Add Sp Before Constr Colon|(129)Remove Sp Before Constr Colon|(129)Force Sp Before Constr Colon" +ValueDefault=add -[Sp After Tag] -Category=2 -Description="Add or remove space after the tag keyword (Pawn)" +[Sp Before Case Colon] +Category=1 +Description="(130)Add or remove space before case ':'.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_after_tag=ignore|sp_after_tag=add|sp_after_tag=remove|sp_after_tag=force" -ChoicesReadable="Ignore Sp After Tag|Add Sp After Tag|Remove Sp After Tag|Force Sp After Tag" -ValueDefault=0 +Choices=sp_before_case_colon=ignore|sp_before_case_colon=add|sp_before_case_colon=remove|sp_before_case_colon=force|sp_before_case_colon=not_defined +ChoicesReadable="(130)Ignore Sp Before Case Colon|(130)Add Sp Before Case Colon|(130)Remove Sp Before Case Colon|(130)Force Sp Before Case Colon" +ValueDefault=remove -[Sp Inside Braces Enum] -Category=2 -Description="Add or remove space inside enum '{' and '}'" +[Sp After Operator] +Category=1 +Description="(131)Add or remove space between 'operator' and operator sign." Enabled=false EditorType=multiple -Choices="sp_inside_braces_enum=ignore|sp_inside_braces_enum=add|sp_inside_braces_enum=remove|sp_inside_braces_enum=force" -ChoicesReadable="Ignore Sp Inside Braces Enum|Add Sp Inside Braces Enum|Remove Sp Inside Braces Enum|Force Sp Inside Braces Enum" -ValueDefault=0 +Choices=sp_after_operator=ignore|sp_after_operator=add|sp_after_operator=remove|sp_after_operator=force|sp_after_operator=not_defined +ChoicesReadable="(131)Ignore Sp After Operator|(131)Add Sp After Operator|(131)Remove Sp After Operator|(131)Force Sp After Operator" +ValueDefault=ignore -[Sp Inside Braces Struct] -Category=2 -Description="Add or remove space inside struct/union '{' and '}'" +[Sp After Operator Sym] +Category=1 +Description="(132)Add or remove space between the operator symbol and the open parenthesis, as
in 'operator ++('." Enabled=false EditorType=multiple -Choices="sp_inside_braces_struct=ignore|sp_inside_braces_struct=add|sp_inside_braces_struct=remove|sp_inside_braces_struct=force" -ChoicesReadable="Ignore Sp Inside Braces Struct|Add Sp Inside Braces Struct|Remove Sp Inside Braces Struct|Force Sp Inside Braces Struct" -ValueDefault=0 +Choices=sp_after_operator_sym=ignore|sp_after_operator_sym=add|sp_after_operator_sym=remove|sp_after_operator_sym=force|sp_after_operator_sym=not_defined +ChoicesReadable="(132)Ignore Sp After Operator Sym|(132)Add Sp After Operator Sym|(132)Remove Sp After Operator Sym|(132)Force Sp After Operator Sym" +ValueDefault=ignore -[Sp Inside Braces] -Category=2 -Description="Add or remove space inside '{' and '}'" +[Sp After Operator Sym Empty] +Category=1 +Description="(133)Overrides sp_after_operator_sym when the operator has no arguments, as in
'operator *()'." Enabled=false EditorType=multiple -Choices="sp_inside_braces=ignore|sp_inside_braces=add|sp_inside_braces=remove|sp_inside_braces=force" -ChoicesReadable="Ignore Sp Inside Braces|Add Sp Inside Braces|Remove Sp Inside Braces|Force Sp Inside Braces" -ValueDefault=0 +Choices=sp_after_operator_sym_empty=ignore|sp_after_operator_sym_empty=add|sp_after_operator_sym_empty=remove|sp_after_operator_sym_empty=force|sp_after_operator_sym_empty=not_defined +ChoicesReadable="(133)Ignore Sp After Operator Sym Empty|(133)Add Sp After Operator Sym Empty|(133)Remove Sp After Operator Sym Empty|(133)Force Sp After Operator Sym Empty" +ValueDefault=ignore -[Sp Inside Braces Empty] -Category=2 -Description="Add or remove space inside '{}'" +[Sp After Cast] +Category=1 +Description="(134)Add or remove space after C/D cast, i.e. 'cast(int)a' vs. 'cast(int) a' or
'(int)a' vs. '(int) a'." Enabled=false EditorType=multiple -Choices="sp_inside_braces_empty=ignore|sp_inside_braces_empty=add|sp_inside_braces_empty=remove|sp_inside_braces_empty=force" -ChoicesReadable="Ignore Sp Inside Braces Empty|Add Sp Inside Braces Empty|Remove Sp Inside Braces Empty|Force Sp Inside Braces Empty" -ValueDefault=0 +Choices=sp_after_cast=ignore|sp_after_cast=add|sp_after_cast=remove|sp_after_cast=force|sp_after_cast=not_defined +ChoicesReadable="(134)Ignore Sp After Cast|(134)Add Sp After Cast|(134)Remove Sp After Cast|(134)Force Sp After Cast" +ValueDefault=ignore -[Sp Type Func] -Category=2 -Description="Add or remove space between return type and function name
A minimum of 1 is forced except for pointer return types." +[Sp Inside Paren Cast] +Category=1 +Description="(135)Add or remove spaces inside cast parentheses." Enabled=false EditorType=multiple -Choices="sp_type_func=ignore|sp_type_func=add|sp_type_func=remove|sp_type_func=force" -ChoicesReadable="Ignore Sp Type Func|Add Sp Type Func|Remove Sp Type Func|Force Sp Type Func" -ValueDefault=0 +Choices=sp_inside_paren_cast=ignore|sp_inside_paren_cast=add|sp_inside_paren_cast=remove|sp_inside_paren_cast=force|sp_inside_paren_cast=not_defined +ChoicesReadable="(135)Ignore Sp Inside Paren Cast|(135)Add Sp Inside Paren Cast|(135)Remove Sp Inside Paren Cast|(135)Force Sp Inside Paren Cast" +ValueDefault=ignore -[Sp Func Proto Paren] -Category=2 -Description="Add or remove space between function name and '(' on function declaration" +[Sp Cpp Cast Paren] +Category=1 +Description="(136)Add or remove space between the type and open parenthesis in a C++ cast,
i.e. 'int(exp)' vs. 'int (exp)'." Enabled=false EditorType=multiple -Choices="sp_func_proto_paren=ignore|sp_func_proto_paren=add|sp_func_proto_paren=remove|sp_func_proto_paren=force" -ChoicesReadable="Ignore Sp Func Proto Paren|Add Sp Func Proto Paren|Remove Sp Func Proto Paren|Force Sp Func Proto Paren" -ValueDefault=0 +Choices=sp_cpp_cast_paren=ignore|sp_cpp_cast_paren=add|sp_cpp_cast_paren=remove|sp_cpp_cast_paren=force|sp_cpp_cast_paren=not_defined +ChoicesReadable="(136)Ignore Sp Cpp Cast Paren|(136)Add Sp Cpp Cast Paren|(136)Remove Sp Cpp Cast Paren|(136)Force Sp Cpp Cast Paren" +ValueDefault=ignore -[Sp Func Def Paren] -Category=2 -Description="Add or remove space between function name and '(' on function definition" +[Sp Sizeof Paren] +Category=1 +Description="(137)Add or remove space between 'sizeof' and '('." Enabled=false EditorType=multiple -Choices="sp_func_def_paren=ignore|sp_func_def_paren=add|sp_func_def_paren=remove|sp_func_def_paren=force" -ChoicesReadable="Ignore Sp Func Def Paren|Add Sp Func Def Paren|Remove Sp Func Def Paren|Force Sp Func Def Paren" -ValueDefault=0 +Choices=sp_sizeof_paren=ignore|sp_sizeof_paren=add|sp_sizeof_paren=remove|sp_sizeof_paren=force|sp_sizeof_paren=not_defined +ChoicesReadable="(137)Ignore Sp Sizeof Paren|(137)Add Sp Sizeof Paren|(137)Remove Sp Sizeof Paren|(137)Force Sp Sizeof Paren" +ValueDefault=ignore -[Sp Inside Fparens] -Category=2 -Description="Add or remove space inside empty function '()'" +[Sp Sizeof Ellipsis] +Category=1 +Description="(138)Add or remove space between 'sizeof' and '...'." Enabled=false EditorType=multiple -Choices="sp_inside_fparens=ignore|sp_inside_fparens=add|sp_inside_fparens=remove|sp_inside_fparens=force" -ChoicesReadable="Ignore Sp Inside Fparens|Add Sp Inside Fparens|Remove Sp Inside Fparens|Force Sp Inside Fparens" -ValueDefault=0 +Choices=sp_sizeof_ellipsis=ignore|sp_sizeof_ellipsis=add|sp_sizeof_ellipsis=remove|sp_sizeof_ellipsis=force|sp_sizeof_ellipsis=not_defined +ChoicesReadable="(138)Ignore Sp Sizeof Ellipsis|(138)Add Sp Sizeof Ellipsis|(138)Remove Sp Sizeof Ellipsis|(138)Force Sp Sizeof Ellipsis" +ValueDefault=ignore -[Sp Inside Fparen] -Category=2 -Description="Add or remove space inside function '(' and ')'" +[Sp Sizeof Ellipsis Paren] +Category=1 +Description="(139)Add or remove space between 'sizeof...' and '('." Enabled=false EditorType=multiple -Choices="sp_inside_fparen=ignore|sp_inside_fparen=add|sp_inside_fparen=remove|sp_inside_fparen=force" -ChoicesReadable="Ignore Sp Inside Fparen|Add Sp Inside Fparen|Remove Sp Inside Fparen|Force Sp Inside Fparen" -ValueDefault=0 +Choices=sp_sizeof_ellipsis_paren=ignore|sp_sizeof_ellipsis_paren=add|sp_sizeof_ellipsis_paren=remove|sp_sizeof_ellipsis_paren=force|sp_sizeof_ellipsis_paren=not_defined +ChoicesReadable="(139)Ignore Sp Sizeof Ellipsis Paren|(139)Add Sp Sizeof Ellipsis Paren|(139)Remove Sp Sizeof Ellipsis Paren|(139)Force Sp Sizeof Ellipsis Paren" +ValueDefault=ignore -[Sp Square Fparen] -Category=2 -Description="Add or remove space between ']' and '(' when part of a function call." +[Sp Ellipsis Parameter Pack] +Category=1 +Description="(140)Add or remove space between '...' and a parameter pack." Enabled=false EditorType=multiple -Choices="sp_square_fparen=ignore|sp_square_fparen=add|sp_square_fparen=remove|sp_square_fparen=force" -ChoicesReadable="Ignore Sp Square Fparen|Add Sp Square Fparen|Remove Sp Square Fparen|Force Sp Square Fparen" -ValueDefault=0 +Choices=sp_ellipsis_parameter_pack=ignore|sp_ellipsis_parameter_pack=add|sp_ellipsis_parameter_pack=remove|sp_ellipsis_parameter_pack=force|sp_ellipsis_parameter_pack=not_defined +ChoicesReadable="(140)Ignore Sp Ellipsis Parameter Pack|(140)Add Sp Ellipsis Parameter Pack|(140)Remove Sp Ellipsis Parameter Pack|(140)Force Sp Ellipsis Parameter Pack" +ValueDefault=ignore -[Sp Fparen Brace] -Category=2 -Description="Add or remove space between ')' and '{' of function" +[Sp Parameter Pack Ellipsis] +Category=1 +Description="(141)Add or remove space between a parameter pack and '...'." Enabled=false EditorType=multiple -Choices="sp_fparen_brace=ignore|sp_fparen_brace=add|sp_fparen_brace=remove|sp_fparen_brace=force" -ChoicesReadable="Ignore Sp Fparen Brace|Add Sp Fparen Brace|Remove Sp Fparen Brace|Force Sp Fparen Brace" -ValueDefault=0 +Choices=sp_parameter_pack_ellipsis=ignore|sp_parameter_pack_ellipsis=add|sp_parameter_pack_ellipsis=remove|sp_parameter_pack_ellipsis=force|sp_parameter_pack_ellipsis=not_defined +ChoicesReadable="(141)Ignore Sp Parameter Pack Ellipsis|(141)Add Sp Parameter Pack Ellipsis|(141)Remove Sp Parameter Pack Ellipsis|(141)Force Sp Parameter Pack Ellipsis" +ValueDefault=ignore -[Sp Func Call Paren] -Category=2 -Description="Add or remove space between function name and '(' on function calls" +[Sp Decltype Paren] +Category=1 +Description="(142)Add or remove space between 'decltype' and '('." Enabled=false EditorType=multiple -Choices="sp_func_call_paren=ignore|sp_func_call_paren=add|sp_func_call_paren=remove|sp_func_call_paren=force" -ChoicesReadable="Ignore Sp Func Call Paren|Add Sp Func Call Paren|Remove Sp Func Call Paren|Force Sp Func Call Paren" -ValueDefault=0 +Choices=sp_decltype_paren=ignore|sp_decltype_paren=add|sp_decltype_paren=remove|sp_decltype_paren=force|sp_decltype_paren=not_defined +ChoicesReadable="(142)Ignore Sp Decltype Paren|(142)Add Sp Decltype Paren|(142)Remove Sp Decltype Paren|(142)Force Sp Decltype Paren" +ValueDefault=ignore -[Sp Func Call Paren Empty] -Category=2 -Description="Add or remove space between function name and '()' on function calls without parameters.
If set to 'ignore' (the default), sp_func_call_paren is used." +[Sp After Tag] +Category=1 +Description="(143)(Pawn) Add or remove space after the tag keyword." Enabled=false EditorType=multiple -Choices="sp_func_call_paren_empty=ignore|sp_func_call_paren_empty=add|sp_func_call_paren_empty=remove|sp_func_call_paren_empty=force" -ChoicesReadable="Ignore Sp Func Call Paren Empty|Add Sp Func Call Paren Empty|Remove Sp Func Call Paren Empty|Force Sp Func Call Paren Empty" -ValueDefault=0 +Choices=sp_after_tag=ignore|sp_after_tag=add|sp_after_tag=remove|sp_after_tag=force|sp_after_tag=not_defined +ChoicesReadable="(143)Ignore Sp After Tag|(143)Add Sp After Tag|(143)Remove Sp After Tag|(143)Force Sp After Tag" +ValueDefault=ignore -[Sp Func Call User Paren] -Category=2 -Description="Add or remove space between the user function name and '(' on function calls
You need to set a keyword to be a user function, like this: 'set func_call_user _' in the config file." +[Sp Inside Braces Enum] +Category=1 +Description="(144)Add or remove space inside enum '{' and '}'." Enabled=false EditorType=multiple -Choices="sp_func_call_user_paren=ignore|sp_func_call_user_paren=add|sp_func_call_user_paren=remove|sp_func_call_user_paren=force" -ChoicesReadable="Ignore Sp Func Call User Paren|Add Sp Func Call User Paren|Remove Sp Func Call User Paren|Force Sp Func Call User Paren" -ValueDefault=0 +Choices=sp_inside_braces_enum=ignore|sp_inside_braces_enum=add|sp_inside_braces_enum=remove|sp_inside_braces_enum=force|sp_inside_braces_enum=not_defined +ChoicesReadable="(144)Ignore Sp Inside Braces Enum|(144)Add Sp Inside Braces Enum|(144)Remove Sp Inside Braces Enum|(144)Force Sp Inside Braces Enum" +ValueDefault=ignore -[Sp Func Class Paren] -Category=2 -Description="Add or remove space between a constructor/destructor and the open paren" +[Sp Inside Braces Struct] +Category=1 +Description="(145)Add or remove space inside struct/union '{' and '}'." Enabled=false EditorType=multiple -Choices="sp_func_class_paren=ignore|sp_func_class_paren=add|sp_func_class_paren=remove|sp_func_class_paren=force" -ChoicesReadable="Ignore Sp Func Class Paren|Add Sp Func Class Paren|Remove Sp Func Class Paren|Force Sp Func Class Paren" -ValueDefault=0 +Choices=sp_inside_braces_struct=ignore|sp_inside_braces_struct=add|sp_inside_braces_struct=remove|sp_inside_braces_struct=force|sp_inside_braces_struct=not_defined +ChoicesReadable="(145)Ignore Sp Inside Braces Struct|(145)Add Sp Inside Braces Struct|(145)Remove Sp Inside Braces Struct|(145)Force Sp Inside Braces Struct" +ValueDefault=ignore -[Sp Return Paren] -Category=2 -Description="Add or remove space between 'return' and '('" +[Sp Inside Braces Oc Dict] +Category=1 +Description="(146)(OC) Add or remove space inside Objective-C boxed dictionary '{' and '}'" Enabled=false EditorType=multiple -Choices="sp_return_paren=ignore|sp_return_paren=add|sp_return_paren=remove|sp_return_paren=force" -ChoicesReadable="Ignore Sp Return Paren|Add Sp Return Paren|Remove Sp Return Paren|Force Sp Return Paren" -ValueDefault=0 +Choices=sp_inside_braces_oc_dict=ignore|sp_inside_braces_oc_dict=add|sp_inside_braces_oc_dict=remove|sp_inside_braces_oc_dict=force|sp_inside_braces_oc_dict=not_defined +ChoicesReadable="(146)Ignore Sp Inside Braces Oc Dict|(146)Add Sp Inside Braces Oc Dict|(146)Remove Sp Inside Braces Oc Dict|(146)Force Sp Inside Braces Oc Dict" +ValueDefault=ignore -[Sp Attribute Paren] -Category=2 -Description="Add or remove space between '__attribute__' and '('" +[Sp After Type Brace Init Lst Open] +Category=1 +Description="(147)Add or remove space after open brace in an unnamed temporary
direct-list-initialization
if statement is a brace_init_lst
works only if sp_brace_brace is set to ignore." Enabled=false EditorType=multiple -Choices="sp_attribute_paren=ignore|sp_attribute_paren=add|sp_attribute_paren=remove|sp_attribute_paren=force" -ChoicesReadable="Ignore Sp Attribute Paren|Add Sp Attribute Paren|Remove Sp Attribute Paren|Force Sp Attribute Paren" -ValueDefault=0 +Choices=sp_after_type_brace_init_lst_open=ignore|sp_after_type_brace_init_lst_open=add|sp_after_type_brace_init_lst_open=remove|sp_after_type_brace_init_lst_open=force|sp_after_type_brace_init_lst_open=not_defined +ChoicesReadable="(147)Ignore Sp After Type Brace Init Lst Open|(147)Add Sp After Type Brace Init Lst Open|(147)Remove Sp After Type Brace Init Lst Open|(147)Force Sp After Type Brace Init Lst Open" +ValueDefault=ignore -[Sp Defined Paren] -Category=2 -Description="Add or remove space between 'defined' and '(' in '#if defined (FOO)'" +[Sp Before Type Brace Init Lst Close] +Category=1 +Description="(148)Add or remove space before close brace in an unnamed temporary
direct-list-initialization
if statement is a brace_init_lst
works only if sp_brace_brace is set to ignore." Enabled=false EditorType=multiple -Choices="sp_defined_paren=ignore|sp_defined_paren=add|sp_defined_paren=remove|sp_defined_paren=force" -ChoicesReadable="Ignore Sp Defined Paren|Add Sp Defined Paren|Remove Sp Defined Paren|Force Sp Defined Paren" -ValueDefault=0 +Choices=sp_before_type_brace_init_lst_close=ignore|sp_before_type_brace_init_lst_close=add|sp_before_type_brace_init_lst_close=remove|sp_before_type_brace_init_lst_close=force|sp_before_type_brace_init_lst_close=not_defined +ChoicesReadable="(148)Ignore Sp Before Type Brace Init Lst Close|(148)Add Sp Before Type Brace Init Lst Close|(148)Remove Sp Before Type Brace Init Lst Close|(148)Force Sp Before Type Brace Init Lst Close" +ValueDefault=ignore -[Sp Throw Paren] -Category=2 -Description="Add or remove space between 'throw' and '(' in 'throw (something)'" +[Sp Inside Type Brace Init Lst] +Category=1 +Description="(149)Add or remove space inside an unnamed temporary direct-list-initialization
if statement is a brace_init_lst
works only if sp_brace_brace is set to ignore
works only if sp_before_type_brace_init_lst_close is set to ignore." Enabled=false EditorType=multiple -Choices="sp_throw_paren=ignore|sp_throw_paren=add|sp_throw_paren=remove|sp_throw_paren=force" -ChoicesReadable="Ignore Sp Throw Paren|Add Sp Throw Paren|Remove Sp Throw Paren|Force Sp Throw Paren" -ValueDefault=0 +Choices=sp_inside_type_brace_init_lst=ignore|sp_inside_type_brace_init_lst=add|sp_inside_type_brace_init_lst=remove|sp_inside_type_brace_init_lst=force|sp_inside_type_brace_init_lst=not_defined +ChoicesReadable="(149)Ignore Sp Inside Type Brace Init Lst|(149)Add Sp Inside Type Brace Init Lst|(149)Remove Sp Inside Type Brace Init Lst|(149)Force Sp Inside Type Brace Init Lst" +ValueDefault=ignore -[Sp Catch Paren] -Category=2 -Description="Add or remove space between 'catch' and '(' in 'catch (something) { }'
If set to ignore, sp_before_sparen is used." +[Sp Inside Braces] +Category=1 +Description="(150)Add or remove space inside '{' and '}'." Enabled=false EditorType=multiple -Choices="sp_catch_paren=ignore|sp_catch_paren=add|sp_catch_paren=remove|sp_catch_paren=force" -ChoicesReadable="Ignore Sp Catch Paren|Add Sp Catch Paren|Remove Sp Catch Paren|Force Sp Catch Paren" -ValueDefault=0 +Choices=sp_inside_braces=ignore|sp_inside_braces=add|sp_inside_braces=remove|sp_inside_braces=force|sp_inside_braces=not_defined +ChoicesReadable="(150)Ignore Sp Inside Braces|(150)Add Sp Inside Braces|(150)Remove Sp Inside Braces|(150)Force Sp Inside Braces" +ValueDefault=ignore -[Sp Version Paren] -Category=2 -Description="Add or remove space between 'version' and '(' in 'version (something) { }' (D language)
If set to ignore, sp_before_sparen is used." +[Sp Inside Braces Empty] +Category=1 +Description="(151)Add or remove space inside '{}'." Enabled=false EditorType=multiple -Choices="sp_version_paren=ignore|sp_version_paren=add|sp_version_paren=remove|sp_version_paren=force" -ChoicesReadable="Ignore Sp Version Paren|Add Sp Version Paren|Remove Sp Version Paren|Force Sp Version Paren" -ValueDefault=0 +Choices=sp_inside_braces_empty=ignore|sp_inside_braces_empty=add|sp_inside_braces_empty=remove|sp_inside_braces_empty=force|sp_inside_braces_empty=not_defined +ChoicesReadable="(151)Ignore Sp Inside Braces Empty|(151)Add Sp Inside Braces Empty|(151)Remove Sp Inside Braces Empty|(151)Force Sp Inside Braces Empty" +ValueDefault=ignore -[Sp Scope Paren] -Category=2 -Description="Add or remove space between 'scope' and '(' in 'scope (something) { }' (D language)
If set to ignore, sp_before_sparen is used." +[Sp Trailing Return] +Category=1 +Description="(152)Add or remove space around trailing return operator '->'." Enabled=false EditorType=multiple -Choices="sp_scope_paren=ignore|sp_scope_paren=add|sp_scope_paren=remove|sp_scope_paren=force" -ChoicesReadable="Ignore Sp Scope Paren|Add Sp Scope Paren|Remove Sp Scope Paren|Force Sp Scope Paren" -ValueDefault=0 +Choices=sp_trailing_return=ignore|sp_trailing_return=add|sp_trailing_return=remove|sp_trailing_return=force|sp_trailing_return=not_defined +ChoicesReadable="(152)Ignore Sp Trailing Return|(152)Add Sp Trailing Return|(152)Remove Sp Trailing Return|(152)Force Sp Trailing Return" +ValueDefault=ignore -[Sp Macro] -Category=2 -Description="Add or remove space between macro and value" +[Sp Type Func] +Category=1 +Description="(153)Add or remove space between return type and function name. A minimum of 1
is forced except for pointer return types." Enabled=false EditorType=multiple -Choices="sp_macro=ignore|sp_macro=add|sp_macro=remove|sp_macro=force" -ChoicesReadable="Ignore Sp Macro|Add Sp Macro|Remove Sp Macro|Force Sp Macro" -ValueDefault=0 +Choices=sp_type_func=ignore|sp_type_func=add|sp_type_func=remove|sp_type_func=force|sp_type_func=not_defined +ChoicesReadable="(153)Ignore Sp Type Func|(153)Add Sp Type Func|(153)Remove Sp Type Func|(153)Force Sp Type Func" +ValueDefault=ignore -[Sp Macro Func] -Category=2 -Description="Add or remove space between macro function ')' and value" +[Sp Type Brace Init Lst] +Category=1 +Description="(154)Add or remove space between type and open brace of an unnamed temporary
direct-list-initialization." Enabled=false EditorType=multiple -Choices="sp_macro_func=ignore|sp_macro_func=add|sp_macro_func=remove|sp_macro_func=force" -ChoicesReadable="Ignore Sp Macro Func|Add Sp Macro Func|Remove Sp Macro Func|Force Sp Macro Func" -ValueDefault=0 +Choices=sp_type_brace_init_lst=ignore|sp_type_brace_init_lst=add|sp_type_brace_init_lst=remove|sp_type_brace_init_lst=force|sp_type_brace_init_lst=not_defined +ChoicesReadable="(154)Ignore Sp Type Brace Init Lst|(154)Add Sp Type Brace Init Lst|(154)Remove Sp Type Brace Init Lst|(154)Force Sp Type Brace Init Lst" +ValueDefault=ignore -[Sp Else Brace] -Category=2 -Description="Add or remove space between 'else' and '{' if on the same line" +[Sp Func Proto Paren] +Category=1 +Description="(155)Add or remove space between function name and '(' on function declaration." Enabled=false EditorType=multiple -Choices="sp_else_brace=ignore|sp_else_brace=add|sp_else_brace=remove|sp_else_brace=force" -ChoicesReadable="Ignore Sp Else Brace|Add Sp Else Brace|Remove Sp Else Brace|Force Sp Else Brace" -ValueDefault=0 +Choices=sp_func_proto_paren=ignore|sp_func_proto_paren=add|sp_func_proto_paren=remove|sp_func_proto_paren=force|sp_func_proto_paren=not_defined +ChoicesReadable="(155)Ignore Sp Func Proto Paren|(155)Add Sp Func Proto Paren|(155)Remove Sp Func Proto Paren|(155)Force Sp Func Proto Paren" +ValueDefault=ignore -[Sp Brace Else] -Category=2 -Description="Add or remove space between '}' and 'else' if on the same line" +[Sp Func Proto Paren Empty] +Category=1 +Description="(156)Add or remove space between function name and '()' on function declaration
without parameters." Enabled=false EditorType=multiple -Choices="sp_brace_else=ignore|sp_brace_else=add|sp_brace_else=remove|sp_brace_else=force" -ChoicesReadable="Ignore Sp Brace Else|Add Sp Brace Else|Remove Sp Brace Else|Force Sp Brace Else" -ValueDefault=0 +Choices=sp_func_proto_paren_empty=ignore|sp_func_proto_paren_empty=add|sp_func_proto_paren_empty=remove|sp_func_proto_paren_empty=force|sp_func_proto_paren_empty=not_defined +ChoicesReadable="(156)Ignore Sp Func Proto Paren Empty|(156)Add Sp Func Proto Paren Empty|(156)Remove Sp Func Proto Paren Empty|(156)Force Sp Func Proto Paren Empty" +ValueDefault=ignore -[Sp Brace Typedef] -Category=2 -Description="Add or remove space between '}' and the name of a typedef on the same line" +[Sp Func Type Paren] +Category=1 +Description="(157)Add or remove space between function name and '(' with a typedef specifier." Enabled=false EditorType=multiple -Choices="sp_brace_typedef=ignore|sp_brace_typedef=add|sp_brace_typedef=remove|sp_brace_typedef=force" -ChoicesReadable="Ignore Sp Brace Typedef|Add Sp Brace Typedef|Remove Sp Brace Typedef|Force Sp Brace Typedef" -ValueDefault=0 +Choices=sp_func_type_paren=ignore|sp_func_type_paren=add|sp_func_type_paren=remove|sp_func_type_paren=force|sp_func_type_paren=not_defined +ChoicesReadable="(157)Ignore Sp Func Type Paren|(157)Add Sp Func Type Paren|(157)Remove Sp Func Type Paren|(157)Force Sp Func Type Paren" +ValueDefault=ignore -[Sp Catch Brace] -Category=2 -Description="Add or remove space between 'catch' and '{' if on the same line" +[Sp Func Def Paren] +Category=1 +Description="(158)Add or remove space between alias name and '(' of a non-pointer function type typedef." Enabled=false EditorType=multiple -Choices="sp_catch_brace=ignore|sp_catch_brace=add|sp_catch_brace=remove|sp_catch_brace=force" -ChoicesReadable="Ignore Sp Catch Brace|Add Sp Catch Brace|Remove Sp Catch Brace|Force Sp Catch Brace" -ValueDefault=0 +Choices=sp_func_def_paren=ignore|sp_func_def_paren=add|sp_func_def_paren=remove|sp_func_def_paren=force|sp_func_def_paren=not_defined +ChoicesReadable="(158)Ignore Sp Func Def Paren|(158)Add Sp Func Def Paren|(158)Remove Sp Func Def Paren|(158)Force Sp Func Def Paren" +ValueDefault=ignore -[Sp Brace Catch] -Category=2 -Description="Add or remove space between '}' and 'catch' if on the same line" +[Sp Func Def Paren Empty] +Category=1 +Description="(159)Add or remove space between function name and '()' on function definition
without parameters." Enabled=false EditorType=multiple -Choices="sp_brace_catch=ignore|sp_brace_catch=add|sp_brace_catch=remove|sp_brace_catch=force" -ChoicesReadable="Ignore Sp Brace Catch|Add Sp Brace Catch|Remove Sp Brace Catch|Force Sp Brace Catch" -ValueDefault=0 +Choices=sp_func_def_paren_empty=ignore|sp_func_def_paren_empty=add|sp_func_def_paren_empty=remove|sp_func_def_paren_empty=force|sp_func_def_paren_empty=not_defined +ChoicesReadable="(159)Ignore Sp Func Def Paren Empty|(159)Add Sp Func Def Paren Empty|(159)Remove Sp Func Def Paren Empty|(159)Force Sp Func Def Paren Empty" +ValueDefault=ignore -[Sp Finally Brace] -Category=2 -Description="Add or remove space between 'finally' and '{' if on the same line" +[Sp Inside Fparens] +Category=1 +Description="(160)Add or remove space inside empty function '()'.
Overrides sp_after_angle unless use_sp_after_angle_always is set to true." Enabled=false EditorType=multiple -Choices="sp_finally_brace=ignore|sp_finally_brace=add|sp_finally_brace=remove|sp_finally_brace=force" -ChoicesReadable="Ignore Sp Finally Brace|Add Sp Finally Brace|Remove Sp Finally Brace|Force Sp Finally Brace" -ValueDefault=0 +Choices=sp_inside_fparens=ignore|sp_inside_fparens=add|sp_inside_fparens=remove|sp_inside_fparens=force|sp_inside_fparens=not_defined +ChoicesReadable="(160)Ignore Sp Inside Fparens|(160)Add Sp Inside Fparens|(160)Remove Sp Inside Fparens|(160)Force Sp Inside Fparens" +ValueDefault=ignore -[Sp Brace Finally] -Category=2 -Description="Add or remove space between '}' and 'finally' if on the same line" +[Sp Inside Fparen] +Category=1 +Description="(161)Add or remove space inside function '(' and ')'." Enabled=false EditorType=multiple -Choices="sp_brace_finally=ignore|sp_brace_finally=add|sp_brace_finally=remove|sp_brace_finally=force" -ChoicesReadable="Ignore Sp Brace Finally|Add Sp Brace Finally|Remove Sp Brace Finally|Force Sp Brace Finally" -ValueDefault=0 +Choices=sp_inside_fparen=ignore|sp_inside_fparen=add|sp_inside_fparen=remove|sp_inside_fparen=force|sp_inside_fparen=not_defined +ChoicesReadable="(161)Ignore Sp Inside Fparen|(161)Add Sp Inside Fparen|(161)Remove Sp Inside Fparen|(161)Force Sp Inside Fparen" +ValueDefault=ignore -[Sp Try Brace] -Category=2 -Description="Add or remove space between 'try' and '{' if on the same line" +[Sp Func Call User Inside Rparen] +Category=1 +Description="(162)Add or remove space inside user functor '(' and ')'." Enabled=false EditorType=multiple -Choices="sp_try_brace=ignore|sp_try_brace=add|sp_try_brace=remove|sp_try_brace=force" -ChoicesReadable="Ignore Sp Try Brace|Add Sp Try Brace|Remove Sp Try Brace|Force Sp Try Brace" -ValueDefault=0 +Choices=sp_func_call_user_inside_rparen=ignore|sp_func_call_user_inside_rparen=add|sp_func_call_user_inside_rparen=remove|sp_func_call_user_inside_rparen=force|sp_func_call_user_inside_rparen=not_defined +ChoicesReadable="(162)Ignore Sp Func Call User Inside Rparen|(162)Add Sp Func Call User Inside Rparen|(162)Remove Sp Func Call User Inside Rparen|(162)Force Sp Func Call User Inside Rparen" +ValueDefault=ignore -[Sp Getset Brace] -Category=2 -Description="Add or remove space between get/set and '{' if on the same line" +[Sp Inside Rparens] +Category=1 +Description="(163)Add or remove space inside empty functor '()'.
Overrides sp_after_angle unless use_sp_after_angle_always is set to true." Enabled=false EditorType=multiple -Choices="sp_getset_brace=ignore|sp_getset_brace=add|sp_getset_brace=remove|sp_getset_brace=force" -ChoicesReadable="Ignore Sp Getset Brace|Add Sp Getset Brace|Remove Sp Getset Brace|Force Sp Getset Brace" -ValueDefault=0 +Choices=sp_inside_rparens=ignore|sp_inside_rparens=add|sp_inside_rparens=remove|sp_inside_rparens=force|sp_inside_rparens=not_defined +ChoicesReadable="(163)Ignore Sp Inside Rparens|(163)Add Sp Inside Rparens|(163)Remove Sp Inside Rparens|(163)Force Sp Inside Rparens" +ValueDefault=ignore -[Sp Before Dc] -Category=2 -Description="Add or remove space before the '::' operator" +[Sp Inside Rparen] +Category=1 +Description="(164)Add or remove space inside functor '(' and ')'." Enabled=false EditorType=multiple -Choices="sp_before_dc=ignore|sp_before_dc=add|sp_before_dc=remove|sp_before_dc=force" -ChoicesReadable="Ignore Sp Before Dc|Add Sp Before Dc|Remove Sp Before Dc|Force Sp Before Dc" -ValueDefault=0 +Choices=sp_inside_rparen=ignore|sp_inside_rparen=add|sp_inside_rparen=remove|sp_inside_rparen=force|sp_inside_rparen=not_defined +ChoicesReadable="(164)Ignore Sp Inside Rparen|(164)Add Sp Inside Rparen|(164)Remove Sp Inside Rparen|(164)Force Sp Inside Rparen" +ValueDefault=ignore -[Sp After Dc] -Category=2 -Description="Add or remove space after the '::' operator" +[Sp Inside Tparen] +Category=1 +Description="(165)Add or remove space inside the first parentheses in a function type, as in
'void (*x)(...)'." Enabled=false EditorType=multiple -Choices="sp_after_dc=ignore|sp_after_dc=add|sp_after_dc=remove|sp_after_dc=force" -ChoicesReadable="Ignore Sp After Dc|Add Sp After Dc|Remove Sp After Dc|Force Sp After Dc" -ValueDefault=0 +Choices=sp_inside_tparen=ignore|sp_inside_tparen=add|sp_inside_tparen=remove|sp_inside_tparen=force|sp_inside_tparen=not_defined +ChoicesReadable="(165)Ignore Sp Inside Tparen|(165)Add Sp Inside Tparen|(165)Remove Sp Inside Tparen|(165)Force Sp Inside Tparen" +ValueDefault=ignore -[Sp D Array Colon] -Category=2 -Description="Add or remove around the D named array initializer ':' operator" +[Sp After Tparen Close] +Category=1 +Description="(166)Add or remove space between the ')' and '(' in a function type, as in
'void (*x)(...)'." Enabled=false EditorType=multiple -Choices="sp_d_array_colon=ignore|sp_d_array_colon=add|sp_d_array_colon=remove|sp_d_array_colon=force" -ChoicesReadable="Ignore Sp D Array Colon|Add Sp D Array Colon|Remove Sp D Array Colon|Force Sp D Array Colon" -ValueDefault=0 +Choices=sp_after_tparen_close=ignore|sp_after_tparen_close=add|sp_after_tparen_close=remove|sp_after_tparen_close=force|sp_after_tparen_close=not_defined +ChoicesReadable="(166)Ignore Sp After Tparen Close|(166)Add Sp After Tparen Close|(166)Remove Sp After Tparen Close|(166)Force Sp After Tparen Close" +ValueDefault=ignore -[Sp Not] -Category=2 -Description="Add or remove space after the '!' (not) operator. Default=Remove" +[Sp Square Fparen] +Category=1 +Description="(167)Add or remove space between ']' and '(' when part of a function call." Enabled=false EditorType=multiple -Choices="sp_not=ignore|sp_not=add|sp_not=remove|sp_not=force" -ChoicesReadable="Ignore Sp Not|Add Sp Not|Remove Sp Not|Force Sp Not" -ValueDefault=2 +Choices=sp_square_fparen=ignore|sp_square_fparen=add|sp_square_fparen=remove|sp_square_fparen=force|sp_square_fparen=not_defined +ChoicesReadable="(167)Ignore Sp Square Fparen|(167)Add Sp Square Fparen|(167)Remove Sp Square Fparen|(167)Force Sp Square Fparen" +ValueDefault=ignore -[Sp Inv] -Category=2 -Description="Add or remove space after the '~' (invert) operator. Default=Remove" +[Sp Fparen Brace] +Category=1 +Description="(168)Add or remove space between ')' and '{' of function." Enabled=false EditorType=multiple -Choices="sp_inv=ignore|sp_inv=add|sp_inv=remove|sp_inv=force" -ChoicesReadable="Ignore Sp Inv|Add Sp Inv|Remove Sp Inv|Force Sp Inv" -ValueDefault=2 +Choices=sp_fparen_brace=ignore|sp_fparen_brace=add|sp_fparen_brace=remove|sp_fparen_brace=force|sp_fparen_brace=not_defined +ChoicesReadable="(168)Ignore Sp Fparen Brace|(168)Add Sp Fparen Brace|(168)Remove Sp Fparen Brace|(168)Force Sp Fparen Brace" +ValueDefault=ignore -[Sp Addr] -Category=2 -Description="Add or remove space after the '&' (address-of) operator. Default=Remove
This does not affect the spacing after a '&' that is part of a type." +[Sp Fparen Brace Initializer] +Category=1 +Description="(169)Add or remove space between ')' and '{' of a function call in object
initialization.

Overrides sp_fparen_brace." Enabled=false EditorType=multiple -Choices="sp_addr=ignore|sp_addr=add|sp_addr=remove|sp_addr=force" -ChoicesReadable="Ignore Sp Addr|Add Sp Addr|Remove Sp Addr|Force Sp Addr" -ValueDefault=2 +Choices=sp_fparen_brace_initializer=ignore|sp_fparen_brace_initializer=add|sp_fparen_brace_initializer=remove|sp_fparen_brace_initializer=force|sp_fparen_brace_initializer=not_defined +ChoicesReadable="(169)Ignore Sp Fparen Brace Initializer|(169)Add Sp Fparen Brace Initializer|(169)Remove Sp Fparen Brace Initializer|(169)Force Sp Fparen Brace Initializer" +ValueDefault=ignore -[Sp Member] -Category=2 -Description="Add or remove space around the '.' or '->' operators. Default=Remove" +[Sp Fparen Dbrace] +Category=1 +Description="(170)(Java) Add or remove space between ')' and '{{' of double brace initializer." Enabled=false EditorType=multiple -Choices="sp_member=ignore|sp_member=add|sp_member=remove|sp_member=force" -ChoicesReadable="Ignore Sp Member|Add Sp Member|Remove Sp Member|Force Sp Member" -ValueDefault=2 +Choices=sp_fparen_dbrace=ignore|sp_fparen_dbrace=add|sp_fparen_dbrace=remove|sp_fparen_dbrace=force|sp_fparen_dbrace=not_defined +ChoicesReadable="(170)Ignore Sp Fparen Dbrace|(170)Add Sp Fparen Dbrace|(170)Remove Sp Fparen Dbrace|(170)Force Sp Fparen Dbrace" +ValueDefault=ignore -[Sp Deref] -Category=2 -Description="Add or remove space after the '*' (dereference) operator. Default=Remove
This does not affect the spacing after a '*' that is part of a type." +[Sp Func Call Paren] +Category=1 +Description="(171)Add or remove space between function name and '(' on function calls." Enabled=false EditorType=multiple -Choices="sp_deref=ignore|sp_deref=add|sp_deref=remove|sp_deref=force" -ChoicesReadable="Ignore Sp Deref|Add Sp Deref|Remove Sp Deref|Force Sp Deref" -ValueDefault=2 +Choices=sp_func_call_paren=ignore|sp_func_call_paren=add|sp_func_call_paren=remove|sp_func_call_paren=force|sp_func_call_paren=not_defined +ChoicesReadable="(171)Ignore Sp Func Call Paren|(171)Add Sp Func Call Paren|(171)Remove Sp Func Call Paren|(171)Force Sp Func Call Paren" +ValueDefault=ignore -[Sp Sign] -Category=2 -Description="Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. Default=Remove" +[Sp Func Call Paren Empty] +Category=1 +Description="(172)Add or remove space between function name and '()' on function calls without
parameters. If set to ignore (the default), sp_func_call_paren is used." Enabled=false EditorType=multiple -Choices="sp_sign=ignore|sp_sign=add|sp_sign=remove|sp_sign=force" -ChoicesReadable="Ignore Sp Sign|Add Sp Sign|Remove Sp Sign|Force Sp Sign" -ValueDefault=2 +Choices=sp_func_call_paren_empty=ignore|sp_func_call_paren_empty=add|sp_func_call_paren_empty=remove|sp_func_call_paren_empty=force|sp_func_call_paren_empty=not_defined +ChoicesReadable="(172)Ignore Sp Func Call Paren Empty|(172)Add Sp Func Call Paren Empty|(172)Remove Sp Func Call Paren Empty|(172)Force Sp Func Call Paren Empty" +ValueDefault=ignore -[Sp Incdec] -Category=2 -Description="Add or remove space before or after '++' and '--', as in '(--x)' or 'y++;'. Default=Remove" +[Sp Func Call User Paren] +Category=1 +Description="(173)Add or remove space between the user function name and '(' on function
calls. You need to set a keyword to be a user function in the config file,
like:
set func_call_user tr _ i18n" Enabled=false EditorType=multiple -Choices="sp_incdec=ignore|sp_incdec=add|sp_incdec=remove|sp_incdec=force" -ChoicesReadable="Ignore Sp Incdec|Add Sp Incdec|Remove Sp Incdec|Force Sp Incdec" -ValueDefault=2 +Choices=sp_func_call_user_paren=ignore|sp_func_call_user_paren=add|sp_func_call_user_paren=remove|sp_func_call_user_paren=force|sp_func_call_user_paren=not_defined +ChoicesReadable="(173)Ignore Sp Func Call User Paren|(173)Add Sp Func Call User Paren|(173)Remove Sp Func Call User Paren|(173)Force Sp Func Call User Paren" +ValueDefault=ignore -[Sp Before Nl Cont] -Category=2 -Description="Add or remove space before a backslash-newline at the end of a line. Default=Add" +[Sp Func Call User Inside Fparen] +Category=1 +Description="(174)Add or remove space inside user function '(' and ')'." Enabled=false EditorType=multiple -Choices="sp_before_nl_cont=ignore|sp_before_nl_cont=add|sp_before_nl_cont=remove|sp_before_nl_cont=force" -ChoicesReadable="Ignore Sp Before Nl Cont|Add Sp Before Nl Cont|Remove Sp Before Nl Cont|Force Sp Before Nl Cont" -ValueDefault=1 +Choices=sp_func_call_user_inside_fparen=ignore|sp_func_call_user_inside_fparen=add|sp_func_call_user_inside_fparen=remove|sp_func_call_user_inside_fparen=force|sp_func_call_user_inside_fparen=not_defined +ChoicesReadable="(174)Ignore Sp Func Call User Inside Fparen|(174)Add Sp Func Call User Inside Fparen|(174)Remove Sp Func Call User Inside Fparen|(174)Force Sp Func Call User Inside Fparen" +ValueDefault=ignore -[Sp After Oc Scope] -Category=2 -Description="Add or remove space after the scope '+' or '-', as in '-(void) foo;' or '+(int) bar;'" +[Sp Func Call User Paren Paren] +Category=1 +Description="(175)Add or remove space between nested parentheses with user functions,
i.e. '((' vs. '( ('." Enabled=false EditorType=multiple -Choices="sp_after_oc_scope=ignore|sp_after_oc_scope=add|sp_after_oc_scope=remove|sp_after_oc_scope=force" -ChoicesReadable="Ignore Sp After Oc Scope|Add Sp After Oc Scope|Remove Sp After Oc Scope|Force Sp After Oc Scope" -ValueDefault=0 +Choices=sp_func_call_user_paren_paren=ignore|sp_func_call_user_paren_paren=add|sp_func_call_user_paren_paren=remove|sp_func_call_user_paren_paren=force|sp_func_call_user_paren_paren=not_defined +ChoicesReadable="(175)Ignore Sp Func Call User Paren Paren|(175)Add Sp Func Call User Paren Paren|(175)Remove Sp Func Call User Paren Paren|(175)Force Sp Func Call User Paren Paren" +ValueDefault=ignore -[Sp After Oc Colon] -Category=2 -Description="Add or remove space after the colon in message specs
'-(int) f:(int) x;' vs '-(int) f: (int) x;'" +[Sp Func Class Paren] +Category=1 +Description="(176)Add or remove space between a constructor/destructor and the open
parenthesis." Enabled=false EditorType=multiple -Choices="sp_after_oc_colon=ignore|sp_after_oc_colon=add|sp_after_oc_colon=remove|sp_after_oc_colon=force" -ChoicesReadable="Ignore Sp After Oc Colon|Add Sp After Oc Colon|Remove Sp After Oc Colon|Force Sp After Oc Colon" -ValueDefault=0 +Choices=sp_func_class_paren=ignore|sp_func_class_paren=add|sp_func_class_paren=remove|sp_func_class_paren=force|sp_func_class_paren=not_defined +ChoicesReadable="(176)Ignore Sp Func Class Paren|(176)Add Sp Func Class Paren|(176)Remove Sp Func Class Paren|(176)Force Sp Func Class Paren" +ValueDefault=ignore -[Sp Before Oc Colon] -Category=2 -Description="Add or remove space before the colon in message specs
'-(int) f: (int) x;' vs '-(int) f : (int) x;'" +[Sp Func Class Paren Empty] +Category=1 +Description="(177)Add or remove space between a constructor without parameters or destructor
and '()'." Enabled=false EditorType=multiple -Choices="sp_before_oc_colon=ignore|sp_before_oc_colon=add|sp_before_oc_colon=remove|sp_before_oc_colon=force" -ChoicesReadable="Ignore Sp Before Oc Colon|Add Sp Before Oc Colon|Remove Sp Before Oc Colon|Force Sp Before Oc Colon" -ValueDefault=0 +Choices=sp_func_class_paren_empty=ignore|sp_func_class_paren_empty=add|sp_func_class_paren_empty=remove|sp_func_class_paren_empty=force|sp_func_class_paren_empty=not_defined +ChoicesReadable="(177)Ignore Sp Func Class Paren Empty|(177)Add Sp Func Class Paren Empty|(177)Remove Sp Func Class Paren Empty|(177)Force Sp Func Class Paren Empty" +ValueDefault=ignore -[Sp After Send Oc Colon] -Category=2 -Description="Add or remove space after the colon in message specs
'[object setValue:1];' vs '[object setValue: 1];'" +[Sp Return] +Category=1 +Description="(178)Add or remove space after 'return'.

Default: force" Enabled=false EditorType=multiple -Choices="sp_after_send_oc_colon=ignore|sp_after_send_oc_colon=add|sp_after_send_oc_colon=remove|sp_after_send_oc_colon=force" -ChoicesReadable="Ignore Sp After Send Oc Colon|Add Sp After Send Oc Colon|Remove Sp After Send Oc Colon|Force Sp After Send Oc Colon" -ValueDefault=0 +Choices=sp_return=ignore|sp_return=add|sp_return=remove|sp_return=force|sp_return=not_defined +ChoicesReadable="(178)Ignore Sp Return|(178)Add Sp Return|(178)Remove Sp Return|(178)Force Sp Return" +ValueDefault=force -[Sp Before Send Oc Colon] -Category=2 -Description="Add or remove space before the colon in message specs
'[object setValue:1];' vs '[object setValue :1];'" +[Sp Return Paren] +Category=1 +Description="(179)Add or remove space between 'return' and '('." Enabled=false EditorType=multiple -Choices="sp_before_send_oc_colon=ignore|sp_before_send_oc_colon=add|sp_before_send_oc_colon=remove|sp_before_send_oc_colon=force" -ChoicesReadable="Ignore Sp Before Send Oc Colon|Add Sp Before Send Oc Colon|Remove Sp Before Send Oc Colon|Force Sp Before Send Oc Colon" -ValueDefault=0 +Choices=sp_return_paren=ignore|sp_return_paren=add|sp_return_paren=remove|sp_return_paren=force|sp_return_paren=not_defined +ChoicesReadable="(179)Ignore Sp Return Paren|(179)Add Sp Return Paren|(179)Remove Sp Return Paren|(179)Force Sp Return Paren" +ValueDefault=ignore -[Sp After Oc Type] -Category=2 -Description="Add or remove space after the (type) in message specs
'-(int)f: (int) x;' vs '-(int)f: (int)x;'" +[Sp Return Brace] +Category=1 +Description="(180)Add or remove space between 'return' and '{'." Enabled=false EditorType=multiple -Choices="sp_after_oc_type=ignore|sp_after_oc_type=add|sp_after_oc_type=remove|sp_after_oc_type=force" -ChoicesReadable="Ignore Sp After Oc Type|Add Sp After Oc Type|Remove Sp After Oc Type|Force Sp After Oc Type" -ValueDefault=0 +Choices=sp_return_brace=ignore|sp_return_brace=add|sp_return_brace=remove|sp_return_brace=force|sp_return_brace=not_defined +ChoicesReadable="(180)Ignore Sp Return Brace|(180)Add Sp Return Brace|(180)Remove Sp Return Brace|(180)Force Sp Return Brace" +ValueDefault=ignore -[Sp After Oc Return Type] -Category=2 -Description="Add or remove space after the first (type) in message specs
'-(int) f:(int)x;' vs '-(int)f:(int)x;'" +[Sp Attribute Paren] +Category=1 +Description="(181)Add or remove space between '__attribute__' and '('." Enabled=false EditorType=multiple -Choices="sp_after_oc_return_type=ignore|sp_after_oc_return_type=add|sp_after_oc_return_type=remove|sp_after_oc_return_type=force" -ChoicesReadable="Ignore Sp After Oc Return Type|Add Sp After Oc Return Type|Remove Sp After Oc Return Type|Force Sp After Oc Return Type" -ValueDefault=0 +Choices=sp_attribute_paren=ignore|sp_attribute_paren=add|sp_attribute_paren=remove|sp_attribute_paren=force|sp_attribute_paren=not_defined +ChoicesReadable="(181)Ignore Sp Attribute Paren|(181)Add Sp Attribute Paren|(181)Remove Sp Attribute Paren|(181)Force Sp Attribute Paren" +ValueDefault=ignore -[Sp After Oc At Sel] -Category=2 -Description="Add or remove space between '@selector' and '('
'@selector(msgName)' vs '@selector (msgName)'
Also applies to @protocol() constructs" +[Sp Defined Paren] +Category=1 +Description="(182)Add or remove space between 'defined' and '(' in '#if defined (FOO)'." Enabled=false EditorType=multiple -Choices="sp_after_oc_at_sel=ignore|sp_after_oc_at_sel=add|sp_after_oc_at_sel=remove|sp_after_oc_at_sel=force" -ChoicesReadable="Ignore Sp After Oc At Sel|Add Sp After Oc At Sel|Remove Sp After Oc At Sel|Force Sp After Oc At Sel" -ValueDefault=0 +Choices=sp_defined_paren=ignore|sp_defined_paren=add|sp_defined_paren=remove|sp_defined_paren=force|sp_defined_paren=not_defined +ChoicesReadable="(182)Ignore Sp Defined Paren|(182)Add Sp Defined Paren|(182)Remove Sp Defined Paren|(182)Force Sp Defined Paren" +ValueDefault=ignore -[Sp After Oc At Sel Parens] -Category=2 -Description="Add or remove space between '@selector(x)' and the following word
'@selector(foo) a:' vs '@selector(foo)a:'" +[Sp Throw Paren] +Category=1 +Description="(183)Add or remove space between 'throw' and '(' in 'throw (something)'." Enabled=false EditorType=multiple -Choices="sp_after_oc_at_sel_parens=ignore|sp_after_oc_at_sel_parens=add|sp_after_oc_at_sel_parens=remove|sp_after_oc_at_sel_parens=force" -ChoicesReadable="Ignore Sp After Oc At Sel Parens|Add Sp After Oc At Sel Parens|Remove Sp After Oc At Sel Parens|Force Sp After Oc At Sel Parens" -ValueDefault=0 +Choices=sp_throw_paren=ignore|sp_throw_paren=add|sp_throw_paren=remove|sp_throw_paren=force|sp_throw_paren=not_defined +ChoicesReadable="(183)Ignore Sp Throw Paren|(183)Add Sp Throw Paren|(183)Remove Sp Throw Paren|(183)Force Sp Throw Paren" +ValueDefault=ignore -[Sp Inside Oc At Sel Parens] -Category=2 -Description="Add or remove space inside '@selector' parens
'@selector(foo)' vs '@selector( foo )'
Also applies to @protocol() constructs" +[Sp After Throw] +Category=1 +Description="(184)Add or remove space between 'throw' and anything other than '(' as in
'@throw [...];'." Enabled=false EditorType=multiple -Choices="sp_inside_oc_at_sel_parens=ignore|sp_inside_oc_at_sel_parens=add|sp_inside_oc_at_sel_parens=remove|sp_inside_oc_at_sel_parens=force" -ChoicesReadable="Ignore Sp Inside Oc At Sel Parens|Add Sp Inside Oc At Sel Parens|Remove Sp Inside Oc At Sel Parens|Force Sp Inside Oc At Sel Parens" -ValueDefault=0 +Choices=sp_after_throw=ignore|sp_after_throw=add|sp_after_throw=remove|sp_after_throw=force|sp_after_throw=not_defined +ChoicesReadable="(184)Ignore Sp After Throw|(184)Add Sp After Throw|(184)Remove Sp After Throw|(184)Force Sp After Throw" +ValueDefault=ignore -[Sp Before Oc Block Caret] -Category=2 -Description="Add or remove space before a block pointer caret
'^int (int arg){...}' vs. ' ^int (int arg){...}'" +[Sp Catch Paren] +Category=1 +Description="(185)Add or remove space between 'catch' and '(' in 'catch (something) { }'.
If set to ignore, sp_before_sparen is used." Enabled=false EditorType=multiple -Choices="sp_before_oc_block_caret=ignore|sp_before_oc_block_caret=add|sp_before_oc_block_caret=remove|sp_before_oc_block_caret=force" -ChoicesReadable="Ignore Sp Before Oc Block Caret|Add Sp Before Oc Block Caret|Remove Sp Before Oc Block Caret|Force Sp Before Oc Block Caret" -ValueDefault=0 +Choices=sp_catch_paren=ignore|sp_catch_paren=add|sp_catch_paren=remove|sp_catch_paren=force|sp_catch_paren=not_defined +ChoicesReadable="(185)Ignore Sp Catch Paren|(185)Add Sp Catch Paren|(185)Remove Sp Catch Paren|(185)Force Sp Catch Paren" +ValueDefault=ignore -[Sp After Oc Block Caret] -Category=2 -Description="Add or remove space after a block pointer caret
'^int (int arg){...}' vs. '^ int (int arg){...}'" +[Sp Oc Catch Paren] +Category=1 +Description="(186)(OC) Add or remove space between '@catch' and '('
in '@catch (something) { }'. If set to ignore, sp_catch_paren is used." Enabled=false EditorType=multiple -Choices="sp_after_oc_block_caret=ignore|sp_after_oc_block_caret=add|sp_after_oc_block_caret=remove|sp_after_oc_block_caret=force" -ChoicesReadable="Ignore Sp After Oc Block Caret|Add Sp After Oc Block Caret|Remove Sp After Oc Block Caret|Force Sp After Oc Block Caret" -ValueDefault=0 +Choices=sp_oc_catch_paren=ignore|sp_oc_catch_paren=add|sp_oc_catch_paren=remove|sp_oc_catch_paren=force|sp_oc_catch_paren=not_defined +ChoicesReadable="(186)Ignore Sp Oc Catch Paren|(186)Add Sp Oc Catch Paren|(186)Remove Sp Oc Catch Paren|(186)Force Sp Oc Catch Paren" +ValueDefault=ignore -[Sp Cond Colon] -Category=2 -Description="Add or remove space around the ':' in 'b ? t : f'" +[Sp Before Oc Proto List] +Category=1 +Description="(187)(OC) Add or remove space before Objective-C protocol list
as in '@protocol Protocol<here><Protocol_A>' or '@interface MyClass : NSObject<here><MyProtocol>'." Enabled=false EditorType=multiple -Choices="sp_cond_colon=ignore|sp_cond_colon=add|sp_cond_colon=remove|sp_cond_colon=force" -ChoicesReadable="Ignore Sp Cond Colon|Add Sp Cond Colon|Remove Sp Cond Colon|Force Sp Cond Colon" -ValueDefault=0 +Choices=sp_before_oc_proto_list=ignore|sp_before_oc_proto_list=add|sp_before_oc_proto_list=remove|sp_before_oc_proto_list=force|sp_before_oc_proto_list=not_defined +ChoicesReadable="(187)Ignore Sp Before Oc Proto List|(187)Add Sp Before Oc Proto List|(187)Remove Sp Before Oc Proto List|(187)Force Sp Before Oc Proto List" +ValueDefault=ignore -[Sp Cond Question] -Category=2 -Description="Add or remove space around the '?' in 'b ? t : f'" +[Sp Oc Classname Paren] +Category=1 +Description="(188)(OC) Add or remove space between class name and '('
in '@interface className(categoryName)<ProtocolName>:BaseClass'" Enabled=false EditorType=multiple -Choices="sp_cond_question=ignore|sp_cond_question=add|sp_cond_question=remove|sp_cond_question=force" -ChoicesReadable="Ignore Sp Cond Question|Add Sp Cond Question|Remove Sp Cond Question|Force Sp Cond Question" -ValueDefault=0 +Choices=sp_oc_classname_paren=ignore|sp_oc_classname_paren=add|sp_oc_classname_paren=remove|sp_oc_classname_paren=force|sp_oc_classname_paren=not_defined +ChoicesReadable="(188)Ignore Sp Oc Classname Paren|(188)Add Sp Oc Classname Paren|(188)Remove Sp Oc Classname Paren|(188)Force Sp Oc Classname Paren" +ValueDefault=ignore -[Sp Case Label] -Category=2 -Description="Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make sense here." +[Sp Version Paren] +Category=1 +Description="(189)(D) Add or remove space between 'version' and '('
in 'version (something) { }'. If set to ignore, sp_before_sparen is used." Enabled=false EditorType=multiple -Choices="sp_case_label=ignore|sp_case_label=add|sp_case_label=remove|sp_case_label=force" -ChoicesReadable="Ignore Sp Case Label|Add Sp Case Label|Remove Sp Case Label|Force Sp Case Label" -ValueDefault=0 +Choices=sp_version_paren=ignore|sp_version_paren=add|sp_version_paren=remove|sp_version_paren=force|sp_version_paren=not_defined +ChoicesReadable="(189)Ignore Sp Version Paren|(189)Add Sp Version Paren|(189)Remove Sp Version Paren|(189)Force Sp Version Paren" +ValueDefault=ignore -[Sp Range] -Category=2 -Description="Control the space around the D '..' operator." +[Sp Scope Paren] +Category=1 +Description="(190)(D) Add or remove space between 'scope' and '('
in 'scope (something) { }'. If set to ignore, sp_before_sparen is used." Enabled=false EditorType=multiple -Choices="sp_range=ignore|sp_range=add|sp_range=remove|sp_range=force" -ChoicesReadable="Ignore Sp Range|Add Sp Range|Remove Sp Range|Force Sp Range" -ValueDefault=0 +Choices=sp_scope_paren=ignore|sp_scope_paren=add|sp_scope_paren=remove|sp_scope_paren=force|sp_scope_paren=not_defined +ChoicesReadable="(190)Ignore Sp Scope Paren|(190)Add Sp Scope Paren|(190)Remove Sp Scope Paren|(190)Force Sp Scope Paren" +ValueDefault=ignore -[Sp Cmt Cpp Start] -Category=2 -Description="Control the space after the opening of a C++ comment '// A' vs '//A'" +[Sp Super Paren] +Category=1 +Description="(191)Add or remove space between 'super' and '(' in 'super (something)'.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_cmt_cpp_start=ignore|sp_cmt_cpp_start=add|sp_cmt_cpp_start=remove|sp_cmt_cpp_start=force" -ChoicesReadable="Ignore Sp Cmt Cpp Start|Add Sp Cmt Cpp Start|Remove Sp Cmt Cpp Start|Force Sp Cmt Cpp Start" -ValueDefault=0 +Choices=sp_super_paren=ignore|sp_super_paren=add|sp_super_paren=remove|sp_super_paren=force|sp_super_paren=not_defined +ChoicesReadable="(191)Ignore Sp Super Paren|(191)Add Sp Super Paren|(191)Remove Sp Super Paren|(191)Force Sp Super Paren" +ValueDefault=remove -[Sp Endif Cmt] -Category=2 -Description="Controls the spaces between #else or #endif and a trailing comment" +[Sp This Paren] +Category=1 +Description="(192)Add or remove space between 'this' and '(' in 'this (something)'.

Default: remove" Enabled=false EditorType=multiple -Choices="sp_endif_cmt=ignore|sp_endif_cmt=add|sp_endif_cmt=remove|sp_endif_cmt=force" -ChoicesReadable="Ignore Sp Endif Cmt|Add Sp Endif Cmt|Remove Sp Endif Cmt|Force Sp Endif Cmt" -ValueDefault=0 +Choices=sp_this_paren=ignore|sp_this_paren=add|sp_this_paren=remove|sp_this_paren=force|sp_this_paren=not_defined +ChoicesReadable="(192)Ignore Sp This Paren|(192)Add Sp This Paren|(192)Remove Sp This Paren|(192)Force Sp This Paren" +ValueDefault=remove -[Sp After New] -Category=2 -Description="Controls the spaces after 'new', 'delete', and 'delete[]'" +[Sp Macro] +Category=1 +Description="(193)Add or remove space between a macro name and its definition." Enabled=false EditorType=multiple -Choices="sp_after_new=ignore|sp_after_new=add|sp_after_new=remove|sp_after_new=force" -ChoicesReadable="Ignore Sp After New|Add Sp After New|Remove Sp After New|Force Sp After New" -ValueDefault=0 +Choices=sp_macro=ignore|sp_macro=add|sp_macro=remove|sp_macro=force|sp_macro=not_defined +ChoicesReadable="(193)Ignore Sp Macro|(193)Add Sp Macro|(193)Remove Sp Macro|(193)Force Sp Macro" +ValueDefault=ignore -[Sp Before Tr Emb Cmt] -Category=2 -Description="Controls the spaces before a trailing or embedded comment" +[Sp Macro Func] +Category=1 +Description="(194)Add or remove space between a macro function ')' and its definition." Enabled=false EditorType=multiple -Choices="sp_before_tr_emb_cmt=ignore|sp_before_tr_emb_cmt=add|sp_before_tr_emb_cmt=remove|sp_before_tr_emb_cmt=force" -ChoicesReadable="Ignore Sp Before Tr Emb Cmt|Add Sp Before Tr Emb Cmt|Remove Sp Before Tr Emb Cmt|Force Sp Before Tr Emb Cmt" -ValueDefault=0 +Choices=sp_macro_func=ignore|sp_macro_func=add|sp_macro_func=remove|sp_macro_func=force|sp_macro_func=not_defined +ChoicesReadable="(194)Ignore Sp Macro Func|(194)Add Sp Macro Func|(194)Remove Sp Macro Func|(194)Force Sp Macro Func" +ValueDefault=ignore -[Sp Num Before Tr Emb Cmt] -Category=2 -Description="Number of spaces before a trailing or embedded comment" +[Sp Else Brace] +Category=1 +Description="(195)Add or remove space between 'else' and '{' if on the same line." Enabled=false -EditorType=numeric -CallName="sp_num_before_tr_emb_cmt=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_else_brace=ignore|sp_else_brace=add|sp_else_brace=remove|sp_else_brace=force|sp_else_brace=not_defined +ChoicesReadable="(195)Ignore Sp Else Brace|(195)Add Sp Else Brace|(195)Remove Sp Else Brace|(195)Force Sp Else Brace" +ValueDefault=ignore -[Align Keep Tabs] -Category=3 -Description="Whether to keep non-indenting tabs" +[Sp Brace Else] +Category=1 +Description="(196)Add or remove space between '}' and 'else' if on the same line." Enabled=false -EditorType=boolean -TrueFalse=align_keep_tabs=true|align_keep_tabs=false -ValueDefault=0 +EditorType=multiple +Choices=sp_brace_else=ignore|sp_brace_else=add|sp_brace_else=remove|sp_brace_else=force|sp_brace_else=not_defined +ChoicesReadable="(196)Ignore Sp Brace Else|(196)Add Sp Brace Else|(196)Remove Sp Brace Else|(196)Force Sp Brace Else" +ValueDefault=ignore -[Align With Tabs] -Category=3 -Description="Whether to use tabs for aligning" +[Sp Brace Typedef] +Category=1 +Description="(197)Add or remove space between '}' and the name of a typedef on the same line." Enabled=false -EditorType=boolean -TrueFalse=align_with_tabs=true|align_with_tabs=false -ValueDefault=0 +EditorType=multiple +Choices=sp_brace_typedef=ignore|sp_brace_typedef=add|sp_brace_typedef=remove|sp_brace_typedef=force|sp_brace_typedef=not_defined +ChoicesReadable="(197)Ignore Sp Brace Typedef|(197)Add Sp Brace Typedef|(197)Remove Sp Brace Typedef|(197)Force Sp Brace Typedef" +ValueDefault=ignore -[Align On Tabstop] -Category=3 -Description="Whether to bump out to the next tab when aligning" +[Sp Catch Brace] +Category=1 +Description="(198)Add or remove space before the '{' of a 'catch' statement, if the '{' and
'catch' are on the same line, as in 'catch (decl) <here> {'." Enabled=false -EditorType=boolean -TrueFalse=align_on_tabstop=true|align_on_tabstop=false -ValueDefault=0 +EditorType=multiple +Choices=sp_catch_brace=ignore|sp_catch_brace=add|sp_catch_brace=remove|sp_catch_brace=force|sp_catch_brace=not_defined +ChoicesReadable="(198)Ignore Sp Catch Brace|(198)Add Sp Catch Brace|(198)Remove Sp Catch Brace|(198)Force Sp Catch Brace" +ValueDefault=ignore -[Align Number Left] -Category=3 -Description="Whether to left-align numbers" +[Sp Oc Catch Brace] +Category=1 +Description="(199)(OC) Add or remove space before the '{' of a '@catch' statement, if the '{'
and '@catch' are on the same line, as in '@catch (decl) <here> {'.
If set to ignore, sp_catch_brace is used." Enabled=false -EditorType=boolean -TrueFalse=align_number_left=true|align_number_left=false -ValueDefault=0 +EditorType=multiple +Choices=sp_oc_catch_brace=ignore|sp_oc_catch_brace=add|sp_oc_catch_brace=remove|sp_oc_catch_brace=force|sp_oc_catch_brace=not_defined +ChoicesReadable="(199)Ignore Sp Oc Catch Brace|(199)Add Sp Oc Catch Brace|(199)Remove Sp Oc Catch Brace|(199)Force Sp Oc Catch Brace" +ValueDefault=ignore -[Align Func Params] -Category=3 -Description="Align variable definitions in prototypes and functions" +[Sp Brace Catch] +Category=1 +Description="(200)Add or remove space between '}' and 'catch' if on the same line." Enabled=false -EditorType=boolean -TrueFalse=align_func_params=true|align_func_params=false -ValueDefault=0 +EditorType=multiple +Choices=sp_brace_catch=ignore|sp_brace_catch=add|sp_brace_catch=remove|sp_brace_catch=force|sp_brace_catch=not_defined +ChoicesReadable="(200)Ignore Sp Brace Catch|(200)Add Sp Brace Catch|(200)Remove Sp Brace Catch|(200)Force Sp Brace Catch" +ValueDefault=ignore -[Align Same Func Call Params] -Category=3 -Description="Align parameters in single-line functions that have the same name.
The function names must already be aligned with each other." +[Sp Oc Brace Catch] +Category=1 +Description="(201)(OC) Add or remove space between '}' and '@catch' if on the same line.
If set to ignore, sp_brace_catch is used." Enabled=false -EditorType=boolean -TrueFalse=align_same_func_call_params=true|align_same_func_call_params=false -ValueDefault=0 +EditorType=multiple +Choices=sp_oc_brace_catch=ignore|sp_oc_brace_catch=add|sp_oc_brace_catch=remove|sp_oc_brace_catch=force|sp_oc_brace_catch=not_defined +ChoicesReadable="(201)Ignore Sp Oc Brace Catch|(201)Add Sp Oc Brace Catch|(201)Remove Sp Oc Brace Catch|(201)Force Sp Oc Brace Catch" +ValueDefault=ignore -[Align Var Def Span] -Category=3 -Description="The span for aligning variable definitions (0=don't align)" +[Sp Finally Brace] +Category=1 +Description="(202)Add or remove space between 'finally' and '{' if on the same line." Enabled=false -EditorType=numeric -CallName="align_var_def_span=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=multiple +Choices=sp_finally_brace=ignore|sp_finally_brace=add|sp_finally_brace=remove|sp_finally_brace=force|sp_finally_brace=not_defined +ChoicesReadable="(202)Ignore Sp Finally Brace|(202)Add Sp Finally Brace|(202)Remove Sp Finally Brace|(202)Force Sp Finally Brace" +ValueDefault=ignore -[Align Var Def Star Style] -Category=3 -Description="How to align the star in variable definitions.
0=Part of the type 'void * foo;'
1=Part of the variable 'void *foo;'
2=Dangling 'void *foo;'" +[Sp Brace Finally] +Category=1 +Description="(203)Add or remove space between '}' and 'finally' if on the same line." Enabled=false -EditorType=numeric -CallName="align_var_def_star_style=" -MinVal=0 -MaxVal=2 -ValueDefault=0 +EditorType=multiple +Choices=sp_brace_finally=ignore|sp_brace_finally=add|sp_brace_finally=remove|sp_brace_finally=force|sp_brace_finally=not_defined +ChoicesReadable="(203)Ignore Sp Brace Finally|(203)Add Sp Brace Finally|(203)Remove Sp Brace Finally|(203)Force Sp Brace Finally" +ValueDefault=ignore -[Align Var Def Amp Style] -Category=3 -Description="How to align the '&' in variable definitions.
0=Part of the type
1=Part of the variable
2=Dangling" +[Sp Try Brace] +Category=1 +Description="(204)Add or remove space between 'try' and '{' if on the same line." Enabled=false -EditorType=numeric -CallName="align_var_def_amp_style=" -MinVal=0 -MaxVal=2 -ValueDefault=0 +EditorType=multiple +Choices=sp_try_brace=ignore|sp_try_brace=add|sp_try_brace=remove|sp_try_brace=force|sp_try_brace=not_defined +ChoicesReadable="(204)Ignore Sp Try Brace|(204)Add Sp Try Brace|(204)Remove Sp Try Brace|(204)Force Sp Try Brace" +ValueDefault=ignore -[Align Var Def Thresh] -Category=3 -Description="The threshold for aligning variable definitions (0=no limit)" +[Sp Getset Brace] +Category=1 +Description="(205)Add or remove space between get/set and '{' if on the same line." Enabled=false -EditorType=numeric -CallName="align_var_def_thresh=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=multiple +Choices=sp_getset_brace=ignore|sp_getset_brace=add|sp_getset_brace=remove|sp_getset_brace=force|sp_getset_brace=not_defined +ChoicesReadable="(205)Ignore Sp Getset Brace|(205)Add Sp Getset Brace|(205)Remove Sp Getset Brace|(205)Force Sp Getset Brace" +ValueDefault=ignore -[Align Var Def Gap] -Category=3 -Description="The gap for aligning variable definitions" +[Sp Word Brace Init Lst] +Category=1 +Description="(206)Add or remove space between a variable and '{' for C++ uniform
initialization." Enabled=false -EditorType=numeric -CallName="align_var_def_gap=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=sp_word_brace_init_lst=ignore|sp_word_brace_init_lst=add|sp_word_brace_init_lst=remove|sp_word_brace_init_lst=force|sp_word_brace_init_lst=not_defined +ChoicesReadable="(206)Ignore Sp Word Brace Init Lst|(206)Add Sp Word Brace Init Lst|(206)Remove Sp Word Brace Init Lst|(206)Force Sp Word Brace Init Lst" +ValueDefault=ignore -[Align Var Def Colon] -Category=3 -Description="Whether to align the colon in struct bit fields" +[Sp Word Brace Ns] +Category=1 +Description="(207)Add or remove space between a variable and '{' for a namespace.

Default: add" Enabled=false -EditorType=boolean -TrueFalse=align_var_def_colon=true|align_var_def_colon=false +EditorType=multiple +Choices=sp_word_brace_ns=ignore|sp_word_brace_ns=add|sp_word_brace_ns=remove|sp_word_brace_ns=force|sp_word_brace_ns=not_defined +ChoicesReadable="(207)Ignore Sp Word Brace Ns|(207)Add Sp Word Brace Ns|(207)Remove Sp Word Brace Ns|(207)Force Sp Word Brace Ns" +ValueDefault=add + +[Sp Before Dc] +Category=1 +Description="(208)Add or remove space before the '::' operator." +Enabled=false +EditorType=multiple +Choices=sp_before_dc=ignore|sp_before_dc=add|sp_before_dc=remove|sp_before_dc=force|sp_before_dc=not_defined +ChoicesReadable="(208)Ignore Sp Before Dc|(208)Add Sp Before Dc|(208)Remove Sp Before Dc|(208)Force Sp Before Dc" +ValueDefault=ignore + +[Sp After Dc] +Category=1 +Description="(209)Add or remove space after the '::' operator." +Enabled=false +EditorType=multiple +Choices=sp_after_dc=ignore|sp_after_dc=add|sp_after_dc=remove|sp_after_dc=force|sp_after_dc=not_defined +ChoicesReadable="(209)Ignore Sp After Dc|(209)Add Sp After Dc|(209)Remove Sp After Dc|(209)Force Sp After Dc" +ValueDefault=ignore + +[Sp D Array Colon] +Category=1 +Description="(210)(D) Add or remove around the D named array initializer ':' operator." +Enabled=false +EditorType=multiple +Choices=sp_d_array_colon=ignore|sp_d_array_colon=add|sp_d_array_colon=remove|sp_d_array_colon=force|sp_d_array_colon=not_defined +ChoicesReadable="(210)Ignore Sp D Array Colon|(210)Add Sp D Array Colon|(210)Remove Sp D Array Colon|(210)Force Sp D Array Colon" +ValueDefault=ignore + +[Sp Not] +Category=1 +Description="(211)Add or remove space after the '!' (not) unary operator.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_not=ignore|sp_not=add|sp_not=remove|sp_not=force|sp_not=not_defined +ChoicesReadable="(211)Ignore Sp Not|(211)Add Sp Not|(211)Remove Sp Not|(211)Force Sp Not" +ValueDefault=remove + +[Sp Not Not] +Category=1 +Description="(212)Add or remove space between two '!' (not) unary operators.
If set to ignore, sp_not will be used." +Enabled=false +EditorType=multiple +Choices=sp_not_not=ignore|sp_not_not=add|sp_not_not=remove|sp_not_not=force|sp_not_not=not_defined +ChoicesReadable="(212)Ignore Sp Not Not|(212)Add Sp Not Not|(212)Remove Sp Not Not|(212)Force Sp Not Not" +ValueDefault=ignore + +[Sp Inv] +Category=1 +Description="(213)Add or remove space after the '~' (invert) unary operator.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_inv=ignore|sp_inv=add|sp_inv=remove|sp_inv=force|sp_inv=not_defined +ChoicesReadable="(213)Ignore Sp Inv|(213)Add Sp Inv|(213)Remove Sp Inv|(213)Force Sp Inv" +ValueDefault=remove + +[Sp Addr] +Category=1 +Description="(214)Add or remove space after the '&' (address-of) unary operator. This does not
affect the spacing after a '&' that is part of a type.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_addr=ignore|sp_addr=add|sp_addr=remove|sp_addr=force|sp_addr=not_defined +ChoicesReadable="(214)Ignore Sp Addr|(214)Add Sp Addr|(214)Remove Sp Addr|(214)Force Sp Addr" +ValueDefault=remove + +[Sp Member] +Category=1 +Description="(215)Add or remove space around the '.' or '->' operators.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_member=ignore|sp_member=add|sp_member=remove|sp_member=force|sp_member=not_defined +ChoicesReadable="(215)Ignore Sp Member|(215)Add Sp Member|(215)Remove Sp Member|(215)Force Sp Member" +ValueDefault=remove + +[Sp Deref] +Category=1 +Description="(216)Add or remove space after the '*' (dereference) unary operator. This does
not affect the spacing after a '*' that is part of a type.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_deref=ignore|sp_deref=add|sp_deref=remove|sp_deref=force|sp_deref=not_defined +ChoicesReadable="(216)Ignore Sp Deref|(216)Add Sp Deref|(216)Remove Sp Deref|(216)Force Sp Deref" +ValueDefault=remove + +[Sp Sign] +Category=1 +Description="(217)Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_sign=ignore|sp_sign=add|sp_sign=remove|sp_sign=force|sp_sign=not_defined +ChoicesReadable="(217)Ignore Sp Sign|(217)Add Sp Sign|(217)Remove Sp Sign|(217)Force Sp Sign" +ValueDefault=remove + +[Sp Incdec] +Category=1 +Description="(218)Add or remove space between '++' and '--' the word to which it is being
applied, as in '(--x)' or 'y++;'.

Default: remove" +Enabled=false +EditorType=multiple +Choices=sp_incdec=ignore|sp_incdec=add|sp_incdec=remove|sp_incdec=force|sp_incdec=not_defined +ChoicesReadable="(218)Ignore Sp Incdec|(218)Add Sp Incdec|(218)Remove Sp Incdec|(218)Force Sp Incdec" +ValueDefault=remove + +[Sp Before Nl Cont] +Category=1 +Description="(219)Add or remove space before a backslash-newline at the end of a line.

Default: add" +Enabled=false +EditorType=multiple +Choices=sp_before_nl_cont=ignore|sp_before_nl_cont=add|sp_before_nl_cont=remove|sp_before_nl_cont=force|sp_before_nl_cont=not_defined +ChoicesReadable="(219)Ignore Sp Before Nl Cont|(219)Add Sp Before Nl Cont|(219)Remove Sp Before Nl Cont|(219)Force Sp Before Nl Cont" +ValueDefault=add + +[Sp After Oc Scope] +Category=1 +Description="(220)(OC) Add or remove space after the scope '+' or '-', as in '-(void) foo;'
or '+(int) bar;'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_scope=ignore|sp_after_oc_scope=add|sp_after_oc_scope=remove|sp_after_oc_scope=force|sp_after_oc_scope=not_defined +ChoicesReadable="(220)Ignore Sp After Oc Scope|(220)Add Sp After Oc Scope|(220)Remove Sp After Oc Scope|(220)Force Sp After Oc Scope" +ValueDefault=ignore + +[Sp After Oc Colon] +Category=1 +Description="(221)(OC) Add or remove space after the colon in message specs,
i.e. '-(int) f:(int) x;' vs. '-(int) f: (int) x;'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_colon=ignore|sp_after_oc_colon=add|sp_after_oc_colon=remove|sp_after_oc_colon=force|sp_after_oc_colon=not_defined +ChoicesReadable="(221)Ignore Sp After Oc Colon|(221)Add Sp After Oc Colon|(221)Remove Sp After Oc Colon|(221)Force Sp After Oc Colon" +ValueDefault=ignore + +[Sp Before Oc Colon] +Category=1 +Description="(222)(OC) Add or remove space before the colon in message specs,
i.e. '-(int) f: (int) x;' vs. '-(int) f : (int) x;'." +Enabled=false +EditorType=multiple +Choices=sp_before_oc_colon=ignore|sp_before_oc_colon=add|sp_before_oc_colon=remove|sp_before_oc_colon=force|sp_before_oc_colon=not_defined +ChoicesReadable="(222)Ignore Sp Before Oc Colon|(222)Add Sp Before Oc Colon|(222)Remove Sp Before Oc Colon|(222)Force Sp Before Oc Colon" +ValueDefault=ignore + +[Sp After Oc Dict Colon] +Category=1 +Description="(223)(OC) Add or remove space after the colon in immutable dictionary expression
'NSDictionary *test = @{@"foo" :@"bar"};'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_dict_colon=ignore|sp_after_oc_dict_colon=add|sp_after_oc_dict_colon=remove|sp_after_oc_dict_colon=force|sp_after_oc_dict_colon=not_defined +ChoicesReadable="(223)Ignore Sp After Oc Dict Colon|(223)Add Sp After Oc Dict Colon|(223)Remove Sp After Oc Dict Colon|(223)Force Sp After Oc Dict Colon" +ValueDefault=ignore + +[Sp Before Oc Dict Colon] +Category=1 +Description="(224)(OC) Add or remove space before the colon in immutable dictionary expression
'NSDictionary *test = @{@"foo" :@"bar"};'." +Enabled=false +EditorType=multiple +Choices=sp_before_oc_dict_colon=ignore|sp_before_oc_dict_colon=add|sp_before_oc_dict_colon=remove|sp_before_oc_dict_colon=force|sp_before_oc_dict_colon=not_defined +ChoicesReadable="(224)Ignore Sp Before Oc Dict Colon|(224)Add Sp Before Oc Dict Colon|(224)Remove Sp Before Oc Dict Colon|(224)Force Sp Before Oc Dict Colon" +ValueDefault=ignore + +[Sp After Send Oc Colon] +Category=1 +Description="(225)(OC) Add or remove space after the colon in message specs,
i.e. '[object setValue:1];' vs. '[object setValue: 1];'." +Enabled=false +EditorType=multiple +Choices=sp_after_send_oc_colon=ignore|sp_after_send_oc_colon=add|sp_after_send_oc_colon=remove|sp_after_send_oc_colon=force|sp_after_send_oc_colon=not_defined +ChoicesReadable="(225)Ignore Sp After Send Oc Colon|(225)Add Sp After Send Oc Colon|(225)Remove Sp After Send Oc Colon|(225)Force Sp After Send Oc Colon" +ValueDefault=ignore + +[Sp Before Send Oc Colon] +Category=1 +Description="(226)(OC) Add or remove space before the colon in message specs,
i.e. '[object setValue:1];' vs. '[object setValue :1];'." +Enabled=false +EditorType=multiple +Choices=sp_before_send_oc_colon=ignore|sp_before_send_oc_colon=add|sp_before_send_oc_colon=remove|sp_before_send_oc_colon=force|sp_before_send_oc_colon=not_defined +ChoicesReadable="(226)Ignore Sp Before Send Oc Colon|(226)Add Sp Before Send Oc Colon|(226)Remove Sp Before Send Oc Colon|(226)Force Sp Before Send Oc Colon" +ValueDefault=ignore + +[Sp After Oc Type] +Category=1 +Description="(227)(OC) Add or remove space after the (type) in message specs,
i.e. '-(int)f: (int) x;' vs. '-(int)f: (int)x;'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_type=ignore|sp_after_oc_type=add|sp_after_oc_type=remove|sp_after_oc_type=force|sp_after_oc_type=not_defined +ChoicesReadable="(227)Ignore Sp After Oc Type|(227)Add Sp After Oc Type|(227)Remove Sp After Oc Type|(227)Force Sp After Oc Type" +ValueDefault=ignore + +[Sp After Oc Return Type] +Category=1 +Description="(228)(OC) Add or remove space after the first (type) in message specs,
i.e. '-(int) f:(int)x;' vs. '-(int)f:(int)x;'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_return_type=ignore|sp_after_oc_return_type=add|sp_after_oc_return_type=remove|sp_after_oc_return_type=force|sp_after_oc_return_type=not_defined +ChoicesReadable="(228)Ignore Sp After Oc Return Type|(228)Add Sp After Oc Return Type|(228)Remove Sp After Oc Return Type|(228)Force Sp After Oc Return Type" +ValueDefault=ignore + +[Sp After Oc At Sel] +Category=1 +Description="(229)(OC) Add or remove space between '@selector' and '(',
i.e. '@selector(msgName)' vs. '@selector (msgName)'.
Also applies to '@protocol()' constructs." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_at_sel=ignore|sp_after_oc_at_sel=add|sp_after_oc_at_sel=remove|sp_after_oc_at_sel=force|sp_after_oc_at_sel=not_defined +ChoicesReadable="(229)Ignore Sp After Oc At Sel|(229)Add Sp After Oc At Sel|(229)Remove Sp After Oc At Sel|(229)Force Sp After Oc At Sel" +ValueDefault=ignore + +[Sp After Oc At Sel Parens] +Category=1 +Description="(230)(OC) Add or remove space between '@selector(x)' and the following word,
i.e. '@selector(foo) a:' vs. '@selector(foo)a:'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_at_sel_parens=ignore|sp_after_oc_at_sel_parens=add|sp_after_oc_at_sel_parens=remove|sp_after_oc_at_sel_parens=force|sp_after_oc_at_sel_parens=not_defined +ChoicesReadable="(230)Ignore Sp After Oc At Sel Parens|(230)Add Sp After Oc At Sel Parens|(230)Remove Sp After Oc At Sel Parens|(230)Force Sp After Oc At Sel Parens" +ValueDefault=ignore + +[Sp Inside Oc At Sel Parens] +Category=1 +Description="(231)(OC) Add or remove space inside '@selector' parentheses,
i.e. '@selector(foo)' vs. '@selector( foo )'.
Also applies to '@protocol()' constructs." +Enabled=false +EditorType=multiple +Choices=sp_inside_oc_at_sel_parens=ignore|sp_inside_oc_at_sel_parens=add|sp_inside_oc_at_sel_parens=remove|sp_inside_oc_at_sel_parens=force|sp_inside_oc_at_sel_parens=not_defined +ChoicesReadable="(231)Ignore Sp Inside Oc At Sel Parens|(231)Add Sp Inside Oc At Sel Parens|(231)Remove Sp Inside Oc At Sel Parens|(231)Force Sp Inside Oc At Sel Parens" +ValueDefault=ignore + +[Sp Before Oc Block Caret] +Category=1 +Description="(232)(OC) Add or remove space before a block pointer caret,
i.e. '^int (int arg){...}' vs. ' ^int (int arg){...}'." +Enabled=false +EditorType=multiple +Choices=sp_before_oc_block_caret=ignore|sp_before_oc_block_caret=add|sp_before_oc_block_caret=remove|sp_before_oc_block_caret=force|sp_before_oc_block_caret=not_defined +ChoicesReadable="(232)Ignore Sp Before Oc Block Caret|(232)Add Sp Before Oc Block Caret|(232)Remove Sp Before Oc Block Caret|(232)Force Sp Before Oc Block Caret" +ValueDefault=ignore + +[Sp After Oc Block Caret] +Category=1 +Description="(233)(OC) Add or remove space after a block pointer caret,
i.e. '^int (int arg){...}' vs. '^ int (int arg){...}'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_block_caret=ignore|sp_after_oc_block_caret=add|sp_after_oc_block_caret=remove|sp_after_oc_block_caret=force|sp_after_oc_block_caret=not_defined +ChoicesReadable="(233)Ignore Sp After Oc Block Caret|(233)Add Sp After Oc Block Caret|(233)Remove Sp After Oc Block Caret|(233)Force Sp After Oc Block Caret" +ValueDefault=ignore + +[Sp After Oc Msg Receiver] +Category=1 +Description="(234)(OC) Add or remove space between the receiver and selector in a message,
as in '[receiver selector ...]'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_msg_receiver=ignore|sp_after_oc_msg_receiver=add|sp_after_oc_msg_receiver=remove|sp_after_oc_msg_receiver=force|sp_after_oc_msg_receiver=not_defined +ChoicesReadable="(234)Ignore Sp After Oc Msg Receiver|(234)Add Sp After Oc Msg Receiver|(234)Remove Sp After Oc Msg Receiver|(234)Force Sp After Oc Msg Receiver" +ValueDefault=ignore + +[Sp After Oc Property] +Category=1 +Description="(235)(OC) Add or remove space after '@property'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_property=ignore|sp_after_oc_property=add|sp_after_oc_property=remove|sp_after_oc_property=force|sp_after_oc_property=not_defined +ChoicesReadable="(235)Ignore Sp After Oc Property|(235)Add Sp After Oc Property|(235)Remove Sp After Oc Property|(235)Force Sp After Oc Property" +ValueDefault=ignore + +[Sp After Oc Synchronized] +Category=1 +Description="(236)(OC) Add or remove space between '@synchronized' and the open parenthesis,
i.e. '@synchronized(foo)' vs. '@synchronized (foo)'." +Enabled=false +EditorType=multiple +Choices=sp_after_oc_synchronized=ignore|sp_after_oc_synchronized=add|sp_after_oc_synchronized=remove|sp_after_oc_synchronized=force|sp_after_oc_synchronized=not_defined +ChoicesReadable="(236)Ignore Sp After Oc Synchronized|(236)Add Sp After Oc Synchronized|(236)Remove Sp After Oc Synchronized|(236)Force Sp After Oc Synchronized" +ValueDefault=ignore + +[Sp Cond Colon] +Category=1 +Description="(237)Add or remove space around the ':' in 'b ? t : f'." +Enabled=false +EditorType=multiple +Choices=sp_cond_colon=ignore|sp_cond_colon=add|sp_cond_colon=remove|sp_cond_colon=force|sp_cond_colon=not_defined +ChoicesReadable="(237)Ignore Sp Cond Colon|(237)Add Sp Cond Colon|(237)Remove Sp Cond Colon|(237)Force Sp Cond Colon" +ValueDefault=ignore + +[Sp Cond Colon Before] +Category=1 +Description="(238)Add or remove space before the ':' in 'b ? t : f'.

Overrides sp_cond_colon." +Enabled=false +EditorType=multiple +Choices=sp_cond_colon_before=ignore|sp_cond_colon_before=add|sp_cond_colon_before=remove|sp_cond_colon_before=force|sp_cond_colon_before=not_defined +ChoicesReadable="(238)Ignore Sp Cond Colon Before|(238)Add Sp Cond Colon Before|(238)Remove Sp Cond Colon Before|(238)Force Sp Cond Colon Before" +ValueDefault=ignore + +[Sp Cond Colon After] +Category=1 +Description="(239)Add or remove space after the ':' in 'b ? t : f'.

Overrides sp_cond_colon." +Enabled=false +EditorType=multiple +Choices=sp_cond_colon_after=ignore|sp_cond_colon_after=add|sp_cond_colon_after=remove|sp_cond_colon_after=force|sp_cond_colon_after=not_defined +ChoicesReadable="(239)Ignore Sp Cond Colon After|(239)Add Sp Cond Colon After|(239)Remove Sp Cond Colon After|(239)Force Sp Cond Colon After" +ValueDefault=ignore + +[Sp Cond Question] +Category=1 +Description="(240)Add or remove space around the '?' in 'b ? t : f'." +Enabled=false +EditorType=multiple +Choices=sp_cond_question=ignore|sp_cond_question=add|sp_cond_question=remove|sp_cond_question=force|sp_cond_question=not_defined +ChoicesReadable="(240)Ignore Sp Cond Question|(240)Add Sp Cond Question|(240)Remove Sp Cond Question|(240)Force Sp Cond Question" +ValueDefault=ignore + +[Sp Cond Question Before] +Category=1 +Description="(241)Add or remove space before the '?' in 'b ? t : f'.

Overrides sp_cond_question." +Enabled=false +EditorType=multiple +Choices=sp_cond_question_before=ignore|sp_cond_question_before=add|sp_cond_question_before=remove|sp_cond_question_before=force|sp_cond_question_before=not_defined +ChoicesReadable="(241)Ignore Sp Cond Question Before|(241)Add Sp Cond Question Before|(241)Remove Sp Cond Question Before|(241)Force Sp Cond Question Before" +ValueDefault=ignore + +[Sp Cond Question After] +Category=1 +Description="(242)Add or remove space after the '?' in 'b ? t : f'.

Overrides sp_cond_question." +Enabled=false +EditorType=multiple +Choices=sp_cond_question_after=ignore|sp_cond_question_after=add|sp_cond_question_after=remove|sp_cond_question_after=force|sp_cond_question_after=not_defined +ChoicesReadable="(242)Ignore Sp Cond Question After|(242)Add Sp Cond Question After|(242)Remove Sp Cond Question After|(242)Force Sp Cond Question After" +ValueDefault=ignore + +[Sp Cond Ternary Short] +Category=1 +Description="(243)In the abbreviated ternary form '(a ?: b)', add or remove space between '?'
and ':'.

Overrides all other sp_cond_* options." +Enabled=false +EditorType=multiple +Choices=sp_cond_ternary_short=ignore|sp_cond_ternary_short=add|sp_cond_ternary_short=remove|sp_cond_ternary_short=force|sp_cond_ternary_short=not_defined +ChoicesReadable="(243)Ignore Sp Cond Ternary Short|(243)Add Sp Cond Ternary Short|(243)Remove Sp Cond Ternary Short|(243)Force Sp Cond Ternary Short" +ValueDefault=ignore + +[Sp Case Label] +Category=1 +Description="(244)Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make
sense here." +Enabled=false +EditorType=multiple +Choices=sp_case_label=ignore|sp_case_label=add|sp_case_label=remove|sp_case_label=force|sp_case_label=not_defined +ChoicesReadable="(244)Ignore Sp Case Label|(244)Add Sp Case Label|(244)Remove Sp Case Label|(244)Force Sp Case Label" +ValueDefault=ignore + +[Sp Range] +Category=1 +Description="(245)(D) Add or remove space around the D '..' operator." +Enabled=false +EditorType=multiple +Choices=sp_range=ignore|sp_range=add|sp_range=remove|sp_range=force|sp_range=not_defined +ChoicesReadable="(245)Ignore Sp Range|(245)Add Sp Range|(245)Remove Sp Range|(245)Force Sp Range" +ValueDefault=ignore + +[Sp After For Colon] +Category=1 +Description="(246)Add or remove space after ':' in a Java/C++11 range-based 'for',
as in 'for (Type var : <here> expr)'." +Enabled=false +EditorType=multiple +Choices=sp_after_for_colon=ignore|sp_after_for_colon=add|sp_after_for_colon=remove|sp_after_for_colon=force|sp_after_for_colon=not_defined +ChoicesReadable="(246)Ignore Sp After For Colon|(246)Add Sp After For Colon|(246)Remove Sp After For Colon|(246)Force Sp After For Colon" +ValueDefault=ignore + +[Sp Before For Colon] +Category=1 +Description="(247)Add or remove space before ':' in a Java/C++11 range-based 'for',
as in 'for (Type var <here> : expr)'." +Enabled=false +EditorType=multiple +Choices=sp_before_for_colon=ignore|sp_before_for_colon=add|sp_before_for_colon=remove|sp_before_for_colon=force|sp_before_for_colon=not_defined +ChoicesReadable="(247)Ignore Sp Before For Colon|(247)Add Sp Before For Colon|(247)Remove Sp Before For Colon|(247)Force Sp Before For Colon" +ValueDefault=ignore + +[Sp Extern Paren] +Category=1 +Description="(248)(D) Add or remove space between 'extern' and '(' as in 'extern <here> (C)'." +Enabled=false +EditorType=multiple +Choices=sp_extern_paren=ignore|sp_extern_paren=add|sp_extern_paren=remove|sp_extern_paren=force|sp_extern_paren=not_defined +ChoicesReadable="(248)Ignore Sp Extern Paren|(248)Add Sp Extern Paren|(248)Remove Sp Extern Paren|(248)Force Sp Extern Paren" +ValueDefault=ignore + +[Sp Cmt Cpp Start] +Category=1 +Description="(249)Add or remove space after the opening of a C++ comment, as in '// <here> A'." +Enabled=false +EditorType=multiple +Choices=sp_cmt_cpp_start=ignore|sp_cmt_cpp_start=add|sp_cmt_cpp_start=remove|sp_cmt_cpp_start=force|sp_cmt_cpp_start=not_defined +ChoicesReadable="(249)Ignore Sp Cmt Cpp Start|(249)Add Sp Cmt Cpp Start|(249)Remove Sp Cmt Cpp Start|(249)Force Sp Cmt Cpp Start" +ValueDefault=ignore + +[Sp Cmt Cpp Pvs] +Category=1 +Description="(250)remove space after the '//' and the pvs command '-V1234',
only works with sp_cmt_cpp_start set to add or force." +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_pvs=true|sp_cmt_cpp_pvs=false +ValueDefault=false + +[Sp Cmt Cpp Lint] +Category=1 +Description="(251)remove space after the '//' and the command 'lint',
only works with sp_cmt_cpp_start set to add or force." +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_lint=true|sp_cmt_cpp_lint=false +ValueDefault=false + +[Sp Cmt Cpp Region] +Category=1 +Description="(252)Add or remove space in a C++ region marker comment, as in '// <here> BEGIN'.
A region marker is defined as a comment which is not preceded by other text
(i.e. the comment is the first non-whitespace on the line), and which starts
with either 'BEGIN' or 'END'.

Overrides sp_cmt_cpp_start." +Enabled=false +EditorType=multiple +Choices=sp_cmt_cpp_region=ignore|sp_cmt_cpp_region=add|sp_cmt_cpp_region=remove|sp_cmt_cpp_region=force|sp_cmt_cpp_region=not_defined +ChoicesReadable="(252)Ignore Sp Cmt Cpp Region|(252)Add Sp Cmt Cpp Region|(252)Remove Sp Cmt Cpp Region|(252)Force Sp Cmt Cpp Region" +ValueDefault=ignore + +[Sp Cmt Cpp Doxygen] +Category=1 +Description="(253)If true, space added with sp_cmt_cpp_start will be added after Doxygen
sequences like '///', '///<', '//!' and '//!<'." +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_doxygen=true|sp_cmt_cpp_doxygen=false +ValueDefault=false + +[Sp Cmt Cpp Qttr] +Category=1 +Description="(254)If true, space added with sp_cmt_cpp_start will be added after Qt translator
or meta-data comments like '//:', '//=', and '//~'." +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_qttr=true|sp_cmt_cpp_qttr=false +ValueDefault=false + +[Sp Endif Cmt] +Category=1 +Description="(255)Add or remove space between #else or #endif and a trailing comment." +Enabled=false +EditorType=multiple +Choices=sp_endif_cmt=ignore|sp_endif_cmt=add|sp_endif_cmt=remove|sp_endif_cmt=force|sp_endif_cmt=not_defined +ChoicesReadable="(255)Ignore Sp Endif Cmt|(255)Add Sp Endif Cmt|(255)Remove Sp Endif Cmt|(255)Force Sp Endif Cmt" +ValueDefault=ignore + +[Sp After New] +Category=1 +Description="(256)Add or remove space after 'new', 'delete' and 'delete[]'." +Enabled=false +EditorType=multiple +Choices=sp_after_new=ignore|sp_after_new=add|sp_after_new=remove|sp_after_new=force|sp_after_new=not_defined +ChoicesReadable="(256)Ignore Sp After New|(256)Add Sp After New|(256)Remove Sp After New|(256)Force Sp After New" +ValueDefault=ignore + +[Sp Between New Paren] +Category=1 +Description="(257)Add or remove space between 'new' and '(' in 'new()'." +Enabled=false +EditorType=multiple +Choices=sp_between_new_paren=ignore|sp_between_new_paren=add|sp_between_new_paren=remove|sp_between_new_paren=force|sp_between_new_paren=not_defined +ChoicesReadable="(257)Ignore Sp Between New Paren|(257)Add Sp Between New Paren|(257)Remove Sp Between New Paren|(257)Force Sp Between New Paren" +ValueDefault=ignore + +[Sp After Newop Paren] +Category=1 +Description="(258)Add or remove space between ')' and type in 'new(foo) BAR'." +Enabled=false +EditorType=multiple +Choices=sp_after_newop_paren=ignore|sp_after_newop_paren=add|sp_after_newop_paren=remove|sp_after_newop_paren=force|sp_after_newop_paren=not_defined +ChoicesReadable="(258)Ignore Sp After Newop Paren|(258)Add Sp After Newop Paren|(258)Remove Sp After Newop Paren|(258)Force Sp After Newop Paren" +ValueDefault=ignore + +[Sp Inside Newop Paren] +Category=1 +Description="(259)Add or remove space inside parentheses of the new operator
as in 'new(foo) BAR'." +Enabled=false +EditorType=multiple +Choices=sp_inside_newop_paren=ignore|sp_inside_newop_paren=add|sp_inside_newop_paren=remove|sp_inside_newop_paren=force|sp_inside_newop_paren=not_defined +ChoicesReadable="(259)Ignore Sp Inside Newop Paren|(259)Add Sp Inside Newop Paren|(259)Remove Sp Inside Newop Paren|(259)Force Sp Inside Newop Paren" +ValueDefault=ignore + +[Sp Inside Newop Paren Open] +Category=1 +Description="(260)Add or remove space after the open parenthesis of the new operator,
as in 'new(foo) BAR'.

Overrides sp_inside_newop_paren." +Enabled=false +EditorType=multiple +Choices=sp_inside_newop_paren_open=ignore|sp_inside_newop_paren_open=add|sp_inside_newop_paren_open=remove|sp_inside_newop_paren_open=force|sp_inside_newop_paren_open=not_defined +ChoicesReadable="(260)Ignore Sp Inside Newop Paren Open|(260)Add Sp Inside Newop Paren Open|(260)Remove Sp Inside Newop Paren Open|(260)Force Sp Inside Newop Paren Open" +ValueDefault=ignore + +[Sp Inside Newop Paren Close] +Category=1 +Description="(261)Add or remove space before the close parenthesis of the new operator,
as in 'new(foo) BAR'.

Overrides sp_inside_newop_paren." +Enabled=false +EditorType=multiple +Choices=sp_inside_newop_paren_close=ignore|sp_inside_newop_paren_close=add|sp_inside_newop_paren_close=remove|sp_inside_newop_paren_close=force|sp_inside_newop_paren_close=not_defined +ChoicesReadable="(261)Ignore Sp Inside Newop Paren Close|(261)Add Sp Inside Newop Paren Close|(261)Remove Sp Inside Newop Paren Close|(261)Force Sp Inside Newop Paren Close" +ValueDefault=ignore + +[Sp Before Tr Cmt] +Category=1 +Description="(262)Add or remove space before a trailing comment." +Enabled=false +EditorType=multiple +Choices=sp_before_tr_cmt=ignore|sp_before_tr_cmt=add|sp_before_tr_cmt=remove|sp_before_tr_cmt=force|sp_before_tr_cmt=not_defined +ChoicesReadable="(262)Ignore Sp Before Tr Cmt|(262)Add Sp Before Tr Cmt|(262)Remove Sp Before Tr Cmt|(262)Force Sp Before Tr Cmt" +ValueDefault=ignore + +[Sp Num Before Tr Cmt] +Category=1 +Description="(263)Number of spaces before a trailing comment." +Enabled=false +EditorType=numeric +CallName="sp_num_before_tr_cmt=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Sp Before Emb Cmt] +Category=1 +Description="(264)Add or remove space before an embedded comment.

Default: force" +Enabled=false +EditorType=multiple +Choices=sp_before_emb_cmt=ignore|sp_before_emb_cmt=add|sp_before_emb_cmt=remove|sp_before_emb_cmt=force|sp_before_emb_cmt=not_defined +ChoicesReadable="(264)Ignore Sp Before Emb Cmt|(264)Add Sp Before Emb Cmt|(264)Remove Sp Before Emb Cmt|(264)Force Sp Before Emb Cmt" +ValueDefault=force + +[Sp Num Before Emb Cmt] +Category=1 +Description="(265)Number of spaces before an embedded comment.

Default: 1" +Enabled=false +EditorType=numeric +CallName="sp_num_before_emb_cmt=" +MinVal=0 +MaxVal=16 +ValueDefault=1 + +[Sp After Emb Cmt] +Category=1 +Description="(266)Add or remove space after an embedded comment.

Default: force" +Enabled=false +EditorType=multiple +Choices=sp_after_emb_cmt=ignore|sp_after_emb_cmt=add|sp_after_emb_cmt=remove|sp_after_emb_cmt=force|sp_after_emb_cmt=not_defined +ChoicesReadable="(266)Ignore Sp After Emb Cmt|(266)Add Sp After Emb Cmt|(266)Remove Sp After Emb Cmt|(266)Force Sp After Emb Cmt" +ValueDefault=force + +[Sp Num After Emb Cmt] +Category=1 +Description="(267)Number of spaces after an embedded comment.

Default: 1" +Enabled=false +EditorType=numeric +CallName="sp_num_after_emb_cmt=" +MinVal=0 +MaxVal=16 +ValueDefault=1 + +[Sp Annotation Paren] +Category=1 +Description="(268)(Java) Add or remove space between an annotation and the open parenthesis." +Enabled=false +EditorType=multiple +Choices=sp_annotation_paren=ignore|sp_annotation_paren=add|sp_annotation_paren=remove|sp_annotation_paren=force|sp_annotation_paren=not_defined +ChoicesReadable="(268)Ignore Sp Annotation Paren|(268)Add Sp Annotation Paren|(268)Remove Sp Annotation Paren|(268)Force Sp Annotation Paren" +ValueDefault=ignore + +[Sp Skip Vbrace Tokens] +Category=1 +Description="(269)If true, vbrace tokens are dropped to the previous token and skipped." +Enabled=false +EditorType=boolean +TrueFalse=sp_skip_vbrace_tokens=true|sp_skip_vbrace_tokens=false +ValueDefault=false + +[Sp After Noexcept] +Category=1 +Description="(270)Add or remove space after 'noexcept'." +Enabled=false +EditorType=multiple +Choices=sp_after_noexcept=ignore|sp_after_noexcept=add|sp_after_noexcept=remove|sp_after_noexcept=force|sp_after_noexcept=not_defined +ChoicesReadable="(270)Ignore Sp After Noexcept|(270)Add Sp After Noexcept|(270)Remove Sp After Noexcept|(270)Force Sp After Noexcept" +ValueDefault=ignore + +[Sp Vala After Translation] +Category=1 +Description="(271)Add or remove space after '_'." +Enabled=false +EditorType=multiple +Choices=sp_vala_after_translation=ignore|sp_vala_after_translation=add|sp_vala_after_translation=remove|sp_vala_after_translation=force|sp_vala_after_translation=not_defined +ChoicesReadable="(271)Ignore Sp Vala After Translation|(271)Add Sp Vala After Translation|(271)Remove Sp Vala After Translation|(271)Force Sp Vala After Translation" +ValueDefault=ignore + +[Force Tab After Define] +Category=1 +Description="(272)If true, a <TAB> is inserted after #define." +Enabled=false +EditorType=boolean +TrueFalse=force_tab_after_define=true|force_tab_after_define=false +ValueDefault=false + +[Indent Columns] +Category=2 +Description="(273)The number of columns to indent per level. Usually 2, 3, 4, or 8.

Default: 8" +Enabled=false +EditorType=numeric +CallName="indent_columns=" +MinVal=0 +MaxVal=16 +ValueDefault=8 + +[Indent Ignore First Continue] +Category=2 +Description="(274)Whether to ignore indent for the first continuation line. Subsequent
continuation lines will still be indented to match the first." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_first_continue=true|indent_ignore_first_continue=false +ValueDefault=false + +[Indent Continue] +Category=2 +Description="(275)The continuation indent. If non-zero, this overrides the indent of '(', '['
and '=' continuation indents. Negative values are OK; negative value is
absolute and not increased for each '(' or '[' level.

For FreeBSD, this is set to 4.
Requires indent_ignore_first_continue=false." +Enabled=false +EditorType=numeric +CallName="indent_continue=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Continue Class Head] +Category=2 +Description="(276)The continuation indent, only for class header line(s). If non-zero, this
overrides the indent of 'class' continuation indents.
Requires indent_ignore_first_continue=false." +Enabled=false +EditorType=numeric +CallName="indent_continue_class_head=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Single Newlines] +Category=2 +Description="(277)Whether to indent empty lines (i.e. lines which contain only spaces before
the newline character)." +Enabled=false +EditorType=boolean +TrueFalse=indent_single_newlines=true|indent_single_newlines=false +ValueDefault=false + +[Indent Param] +Category=2 +Description="(278)The continuation indent for func_*_param if they are true. If non-zero, this
overrides the indent." +Enabled=false +EditorType=numeric +CallName="indent_param=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent With Tabs] +Category=2 +Description="(279)How to use tabs when indenting code.

0: Spaces only
1: Indent with tabs to brace level, align with spaces (default)
2: Indent and align with tabs, using spaces when not on a tabstop

Default: 1" +Enabled=true +EditorType=multiple +Choices="indent_with_tabs=0|indent_with_tabs=1|indent_with_tabs=2" +ChoicesReadable="(279)Spaces only|(279)Indent with tabs, align with spaces|(279)Indent and align with tabs" +ValueDefault=1 + +[Indent Cmt With Tabs] +Category=2 +Description="(280)Whether to indent comments that are not at a brace level with tabs on a
tabstop. Requires indent_with_tabs=2. If false, will use spaces." +Enabled=false +EditorType=boolean +TrueFalse=indent_cmt_with_tabs=true|indent_cmt_with_tabs=false +ValueDefault=false + +[Indent Align String] +Category=2 +Description="(281)Whether to indent strings broken by '\' so that they line up." +Enabled=false +EditorType=boolean +TrueFalse=indent_align_string=true|indent_align_string=false +ValueDefault=false + +[Indent Xml String] +Category=2 +Description="(282)The number of spaces to indent multi-line XML strings.
Requires indent_align_string=true." +Enabled=false +EditorType=numeric +CallName="indent_xml_string=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Brace] +Category=2 +Description="(283)Spaces to indent '{' from level." +Enabled=false +EditorType=numeric +CallName="indent_brace=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Braces] +Category=2 +Description="(284)Whether braces are indented to the body level." +Enabled=false +EditorType=boolean +TrueFalse=indent_braces=true|indent_braces=false +ValueDefault=false + +[Indent Braces No Func] +Category=2 +Description="(285)Whether to disable indenting function braces if indent_braces=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_func=true|indent_braces_no_func=false +ValueDefault=false + +[Indent Braces No Class] +Category=2 +Description="(286)Whether to disable indenting class braces if indent_braces=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_class=true|indent_braces_no_class=false +ValueDefault=false + +[Indent Braces No Struct] +Category=2 +Description="(287)Whether to disable indenting struct braces if indent_braces=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_struct=true|indent_braces_no_struct=false +ValueDefault=false + +[Indent Brace Parent] +Category=2 +Description="(288)Whether to indent based on the size of the brace parent,
i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc." +Enabled=false +EditorType=boolean +TrueFalse=indent_brace_parent=true|indent_brace_parent=false +ValueDefault=false + +[Indent Paren Open Brace] +Category=2 +Description="(289)Whether to indent based on the open parenthesis instead of the open brace
in '({\n'." +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_open_brace=true|indent_paren_open_brace=false +ValueDefault=false + +[Indent Cs Delegate Brace] +Category=2 +Description="(290)(C#) Whether to indent the brace of a C# delegate by another level." +Enabled=false +EditorType=boolean +TrueFalse=indent_cs_delegate_brace=true|indent_cs_delegate_brace=false +ValueDefault=false + +[Indent Cs Delegate Body] +Category=2 +Description="(291)(C#) Whether to indent a C# delegate (to handle delegates with no brace) by
another level." +Enabled=false +EditorType=boolean +TrueFalse=indent_cs_delegate_body=true|indent_cs_delegate_body=false +ValueDefault=false + +[Indent Namespace] +Category=2 +Description="(292)Whether to indent the body of a 'namespace'." +Enabled=false +EditorType=boolean +TrueFalse=indent_namespace=true|indent_namespace=false +ValueDefault=false + +[Indent Namespace Single Indent] +Category=2 +Description="(293)Whether to indent only the first namespace, and not any nested namespaces.
Requires indent_namespace=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_namespace_single_indent=true|indent_namespace_single_indent=false +ValueDefault=false + +[Indent Namespace Level] +Category=2 +Description="(294)The number of spaces to indent a namespace block.
If set to zero, use the value indent_columns" +Enabled=false +EditorType=numeric +CallName="indent_namespace_level=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Namespace Limit] +Category=2 +Description="(295)If the body of the namespace is longer than this number, it won't be
indented. Requires indent_namespace=true. 0 means no limit." +Enabled=false +EditorType=numeric +CallName="indent_namespace_limit=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Indent Namespace Inner Only] +Category=2 +Description="(296)Whether to indent only in inner namespaces (nested in other namespaces).
Requires indent_namespace=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_namespace_inner_only=true|indent_namespace_inner_only=false +ValueDefault=false + +[Indent Extern] +Category=2 +Description="(297)Whether the 'extern "C"' body is indented." +Enabled=false +EditorType=boolean +TrueFalse=indent_extern=true|indent_extern=false +ValueDefault=false + +[Indent Class] +Category=2 +Description="(298)Whether the 'class' body is indented." +Enabled=false +EditorType=boolean +TrueFalse=indent_class=true|indent_class=false +ValueDefault=false + +[Indent Ignore Before Class Colon] +Category=2 +Description="(299)Whether to ignore indent for the leading base class colon." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_before_class_colon=true|indent_ignore_before_class_colon=false +ValueDefault=false + +[Indent Before Class Colon] +Category=2 +Description="(300)Additional indent before the leading base class colon.
Negative values decrease indent down to the first column.
Requires indent_ignore_before_class_colon=false and a newline break before
the colon (see pos_class_colon and nl_class_colon)" +Enabled=false +EditorType=numeric +CallName="indent_before_class_colon=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Class Colon] +Category=2 +Description="(301)Whether to indent the stuff after a leading base class colon." +Enabled=false +EditorType=boolean +TrueFalse=indent_class_colon=true|indent_class_colon=false +ValueDefault=false + +[Indent Class On Colon] +Category=2 +Description="(302)Whether to indent based on a class colon instead of the stuff after the
colon. Requires indent_class_colon=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_class_on_colon=true|indent_class_on_colon=false +ValueDefault=false + +[Indent Ignore Before Constr Colon] +Category=2 +Description="(303)Whether to ignore indent for a leading class initializer colon." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_before_constr_colon=true|indent_ignore_before_constr_colon=false +ValueDefault=false + +[Indent Constr Colon] +Category=2 +Description="(304)Whether to indent the stuff after a leading class initializer colon." +Enabled=false +EditorType=boolean +TrueFalse=indent_constr_colon=true|indent_constr_colon=false +ValueDefault=false + +[Indent Ctor Init Leading] +Category=2 +Description="(305)Virtual indent from the ':' for leading member initializers.

Default: 2" +Enabled=false +EditorType=numeric +CallName="indent_ctor_init_leading=" +MinVal=0 +MaxVal=16 +ValueDefault=2 + +[Indent Ctor Init Following] +Category=2 +Description="(306)Virtual indent from the ':' for following member initializers.

Default: 2" +Enabled=false +EditorType=numeric +CallName="indent_ctor_init_following=" +MinVal=0 +MaxVal=16 +ValueDefault=2 + +[Indent Ctor Init] +Category=2 +Description="(307)Additional indent for constructor initializer list.
Negative values decrease indent down to the first column." +Enabled=false +EditorType=numeric +CallName="indent_ctor_init=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Else If] +Category=2 +Description="(308)Whether to indent 'if' following 'else' as a new block under the 'else'.
If false, 'else\nif' is treated as 'else if' for indenting purposes." +Enabled=false +EditorType=boolean +TrueFalse=indent_else_if=true|indent_else_if=false +ValueDefault=false + +[Indent Var Def Blk] +Category=2 +Description="(309)Amount to indent variable declarations after a open brace.

<0: Relative
>=0: Absolute" +Enabled=false +EditorType=numeric +CallName="indent_var_def_blk=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Var Def Cont] +Category=2 +Description="(310)Whether to indent continued variable declarations instead of aligning." +Enabled=false +EditorType=boolean +TrueFalse=indent_var_def_cont=true|indent_var_def_cont=false +ValueDefault=false + +[Indent Shift] +Category=2 +Description="(311)How to indent continued shift expressions ('<<' and '>>').
Set align_left_shift=false when using this.
0: Align shift operators instead of indenting them (default)
1: Indent by one level
-1: Preserve original indentation" +Enabled=false +EditorType=numeric +CallName="indent_shift=" +MinVal=-1 +MaxVal=1 +ValueDefault=0 + +[Indent Func Def Force Col1] +Category=2 +Description="(312)Whether to force indentation of function definitions to start in column 1." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_def_force_col1=true|indent_func_def_force_col1=false +ValueDefault=false + +[Indent Func Call Param] +Category=2 +Description="(313)Whether to indent continued function call parameters one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_call_param=true|indent_func_call_param=false +ValueDefault=false + +[Indent Func Def Param] +Category=2 +Description="(314)Whether to indent continued function definition parameters one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_def_param=true|indent_func_def_param=false +ValueDefault=false + +[Indent Func Def Param Paren Pos Threshold] +Category=2 +Description="(315)for function definitions, only if indent_func_def_param is false
Allows to align params when appropriate and indent them when not
behave as if it was true if paren position is more than this value
if paren position is more than the option value" +Enabled=false +EditorType=numeric +CallName="indent_func_def_param_paren_pos_threshold=" +MinVal=0 +MaxVal=160 +ValueDefault=0 + +[Indent Func Proto Param] +Category=2 +Description="(316)Whether to indent continued function call prototype one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_proto_param=true|indent_func_proto_param=false +ValueDefault=false + +[Indent Func Class Param] +Category=2 +Description="(317)Whether to indent continued function call declaration one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_class_param=true|indent_func_class_param=false +ValueDefault=false + +[Indent Func Ctor Var Param] +Category=2 +Description="(318)Whether to indent continued class variable constructors one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_ctor_var_param=true|indent_func_ctor_var_param=false +ValueDefault=false + +[Indent Template Param] +Category=2 +Description="(319)Whether to indent continued template parameter list one indent level,
rather than aligning parameters under the open parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_template_param=true|indent_template_param=false +ValueDefault=false + +[Indent Func Param Double] +Category=2 +Description="(320)Double the indent for indent_func_xxx_param options.
Use both values of the options indent_columns and indent_param." +Enabled=false +EditorType=boolean +TrueFalse=indent_func_param_double=true|indent_func_param_double=false +ValueDefault=false + +[Indent Func Const] +Category=2 +Description="(321)Indentation column for standalone 'const' qualifier on a function
prototype." +Enabled=false +EditorType=numeric +CallName="indent_func_const=" +MinVal=0 +MaxVal=69 +ValueDefault=0 + +[Indent Func Throw] +Category=2 +Description="(322)Indentation column for standalone 'throw' qualifier on a function
prototype." +Enabled=false +EditorType=numeric +CallName="indent_func_throw=" +MinVal=0 +MaxVal=41 +ValueDefault=0 + +[Indent Macro Brace] +Category=2 +Description="(323)How to indent within a macro followed by a brace on the same line
This allows reducing the indent in macros that have (for example)
`do { ... } while (0)` blocks bracketing them.

true: add an indent for the brace on the same line as the macro
false: do not add an indent for the brace on the same line as the macro

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_macro_brace=true|indent_macro_brace=false +ValueDefault=true + +[Indent Member] +Category=2 +Description="(324)The number of spaces to indent a continued '->' or '.'.
Usually set to 0, 1, or indent_columns." +Enabled=false +EditorType=numeric +CallName="indent_member=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Member Single] +Category=2 +Description="(325)Whether lines broken at '.' or '->' should be indented by a single indent.
The indent_member option will not be effective if this is set to true." +Enabled=false +EditorType=boolean +TrueFalse=indent_member_single=true|indent_member_single=false +ValueDefault=false + +[Indent Single Line Comments Before] +Category=2 +Description="(326)Spaces to indent single line ('//') comments on lines before code." +Enabled=false +EditorType=numeric +CallName="indent_single_line_comments_before=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Single Line Comments After] +Category=2 +Description="(327)Spaces to indent single line ('//') comments on lines after code." +Enabled=false +EditorType=numeric +CallName="indent_single_line_comments_after=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Sparen Extra] +Category=2 +Description="(328)When opening a paren for a control statement (if, for, while, etc), increase
the indent level by this value. Negative values decrease the indent level." +Enabled=false +EditorType=numeric +CallName="indent_sparen_extra=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Relative Single Line Comments] +Category=2 +Description="(329)Whether to indent trailing single line ('//') comments relative to the code
instead of trying to keep the same absolute column." +Enabled=false +EditorType=boolean +TrueFalse=indent_relative_single_line_comments=true|indent_relative_single_line_comments=false +ValueDefault=false + +[Indent Switch Case] +Category=2 +Description="(330)Spaces to indent 'case' from 'switch'. Usually 0 or indent_columns.
It might be wise to choose the same value for the option indent_case_brace." +Enabled=false +EditorType=numeric +CallName="indent_switch_case=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Switch Body] +Category=2 +Description="(331)Spaces to indent the body of a 'switch' before any 'case'.
Usually the same as indent_columns or indent_switch_case." +Enabled=false +EditorType=numeric +CallName="indent_switch_body=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Ignore Case Brace] +Category=2 +Description="(332)Whether to ignore indent for '{' following 'case'." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_case_brace=true|indent_ignore_case_brace=false +ValueDefault=false + +[Indent Case Brace] +Category=2 +Description="(333)Spaces to indent '{' from 'case'. By default, the brace will appear under
the 'c' in case. Usually set to 0 or indent_columns. Negative values are OK.
It might be wise to choose the same value for the option indent_switch_case." +Enabled=false +EditorType=numeric +CallName="indent_case_brace=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Switch Break With Case] +Category=2 +Description="(334)indent 'break' with 'case' from 'switch'." +Enabled=false +EditorType=boolean +TrueFalse=indent_switch_break_with_case=true|indent_switch_break_with_case=false +ValueDefault=false + +[Indent Switch Pp] +Category=2 +Description="(335)Whether to indent preprocessor statements inside of switch statements.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_switch_pp=true|indent_switch_pp=false +ValueDefault=true + +[Indent Case Shift] +Category=2 +Description="(336)Spaces to shift the 'case' line, without affecting any other lines.
Usually 0." +Enabled=false +EditorType=numeric +CallName="indent_case_shift=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Case Comment] +Category=2 +Description="(337)Whether to align comments before 'case' with the 'case'.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_case_comment=true|indent_case_comment=false +ValueDefault=true + +[Indent Comment] +Category=2 +Description="(338)Whether to indent comments not found in first column.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_comment=true|indent_comment=false +ValueDefault=true + +[Indent Col1 Comment] +Category=2 +Description="(339)Whether to indent comments found in first column." +Enabled=false +EditorType=boolean +TrueFalse=indent_col1_comment=true|indent_col1_comment=false +ValueDefault=false + +[Indent Col1 Multi String Literal] +Category=2 +Description="(340)Whether to indent multi string literal in first column." +Enabled=false +EditorType=boolean +TrueFalse=indent_col1_multi_string_literal=true|indent_col1_multi_string_literal=false +ValueDefault=false + +[Indent Comment Align Thresh] +Category=2 +Description="(341)Align comments on adjacent lines that are this many columns apart or less.

Default: 3" +Enabled=false +EditorType=numeric +CallName="indent_comment_align_thresh=" +MinVal=0 +MaxVal=16 +ValueDefault=3 + +[Indent Ignore Label] +Category=2 +Description="(342)Whether to ignore indent for goto labels." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_label=true|indent_ignore_label=false +ValueDefault=false + +[Indent Label] +Category=2 +Description="(343)How to indent goto labels. Requires indent_ignore_label=false.

>0: Absolute column where 1 is the leftmost column
<=0: Subtract from brace indent

Default: 1" +Enabled=false +EditorType=numeric +CallName="indent_label=" +MinVal=-16 +MaxVal=16 +ValueDefault=1 + +[Indent Access Spec] +Category=2 +Description="(344)How to indent access specifiers that are followed by a
colon.

>0: Absolute column where 1 is the leftmost column
<=0: Subtract from brace indent

Default: 1" +Enabled=false +EditorType=numeric +CallName="indent_access_spec=" +MinVal=-16 +MaxVal=16 +ValueDefault=1 + +[Indent Access Spec Body] +Category=2 +Description="(345)Whether to indent the code after an access specifier by one level.
If true, this option forces 'indent_access_spec=0'." +Enabled=false +EditorType=boolean +TrueFalse=indent_access_spec_body=true|indent_access_spec_body=false +ValueDefault=false + +[Indent Paren Nl] +Category=2 +Description="(346)If an open parenthesis is followed by a newline, whether to indent the next
line so that it lines up after the open parenthesis (not recommended)." +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_nl=true|indent_paren_nl=false +ValueDefault=false + +[Indent Paren Close] +Category=2 +Description="(347)How to indent a close parenthesis after a newline.

0: Indent to body level (default)
1: Align under the open parenthesis
2: Indent to the brace level
-1: Preserve original indentation" +Enabled=false +EditorType=numeric +CallName="indent_paren_close=" +MinVal=-1 +MaxVal=2 +ValueDefault=0 + +[Indent Paren After Func Def] +Category=2 +Description="(348)Whether to indent the open parenthesis of a function definition,
if the parenthesis is on its own line." +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_after_func_def=true|indent_paren_after_func_def=false +ValueDefault=false + +[Indent Paren After Func Decl] +Category=2 +Description="(349)Whether to indent the open parenthesis of a function declaration,
if the parenthesis is on its own line." +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_after_func_decl=true|indent_paren_after_func_decl=false +ValueDefault=false + +[Indent Paren After Func Call] +Category=2 +Description="(350)Whether to indent the open parenthesis of a function call,
if the parenthesis is on its own line." +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_after_func_call=true|indent_paren_after_func_call=false +ValueDefault=false + +[Indent Comma Brace] +Category=2 +Description="(351)How to indent a comma when inside braces.
0: Indent by one level (default)
1: Align under the open brace
-1: Preserve original indentation" +Enabled=false +EditorType=numeric +CallName="indent_comma_brace=" +MinVal=-1 +MaxVal=1 +ValueDefault=0 + +[Indent Comma Paren] +Category=2 +Description="(352)How to indent a comma when inside parentheses.
0: Indent by one level (default)
1: Align under the open parenthesis
-1: Preserve original indentation" +Enabled=false +EditorType=numeric +CallName="indent_comma_paren=" +MinVal=-1 +MaxVal=1 +ValueDefault=0 + +[Indent Bool Paren] +Category=2 +Description="(353)How to indent a Boolean operator when inside parentheses.
0: Indent by one level (default)
1: Align under the open parenthesis
-1: Preserve original indentation" +Enabled=false +EditorType=numeric +CallName="indent_bool_paren=" +MinVal=-1 +MaxVal=1 +ValueDefault=0 + +[Indent Ignore Bool] +Category=2 +Description="(354)Whether to ignore the indentation of a Boolean operator when outside
parentheses." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_bool=true|indent_ignore_bool=false +ValueDefault=false + +[Indent Ignore Arith] +Category=2 +Description="(355)Whether to ignore the indentation of an arithmetic operator." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_arith=true|indent_ignore_arith=false +ValueDefault=false + +[Indent Semicolon For Paren] +Category=2 +Description="(356)Whether to indent a semicolon when inside a for parenthesis.
If true, aligns under the open for parenthesis." +Enabled=false +EditorType=boolean +TrueFalse=indent_semicolon_for_paren=true|indent_semicolon_for_paren=false +ValueDefault=false + +[Indent Ignore Semicolon] +Category=2 +Description="(357)Whether to ignore the indentation of a semicolon outside of a 'for'
statement." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_semicolon=true|indent_ignore_semicolon=false +ValueDefault=false + +[Indent First Bool Expr] +Category=2 +Description="(358)Whether to align the first expression to following ones
if indent_bool_paren=1." +Enabled=false +EditorType=boolean +TrueFalse=indent_first_bool_expr=true|indent_first_bool_expr=false +ValueDefault=false + +[Indent First For Expr] +Category=2 +Description="(359)Whether to align the first expression to following ones
if indent_semicolon_for_paren=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_first_for_expr=true|indent_first_for_expr=false +ValueDefault=false + +[Indent Square Nl] +Category=2 +Description="(360)If an open square is followed by a newline, whether to indent the next line
so that it lines up after the open square (not recommended)." +Enabled=false +EditorType=boolean +TrueFalse=indent_square_nl=true|indent_square_nl=false +ValueDefault=false + +[Indent Preserve Sql] +Category=2 +Description="(361)(ESQL/C) Whether to preserve the relative indent of 'EXEC SQL' bodies." +Enabled=false +EditorType=boolean +TrueFalse=indent_preserve_sql=true|indent_preserve_sql=false +ValueDefault=false + +[Indent Ignore Assign] +Category=2 +Description="(362)Whether to ignore the indentation of an assignment operator." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_assign=true|indent_ignore_assign=false +ValueDefault=false + +[Indent Align Assign] +Category=2 +Description="(363)Whether to align continued statements at the '='. If false or if the '=' is
followed by a newline, the next line is indent one tab.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_align_assign=true|indent_align_assign=false +ValueDefault=true + +[Indent Off After Assign] +Category=2 +Description="(364)If true, the indentation of the chunks after a '=' sequence will be set at
LHS token indentation column before '='." +Enabled=false +EditorType=boolean +TrueFalse=indent_off_after_assign=true|indent_off_after_assign=false +ValueDefault=false + +[Indent Align Paren] +Category=2 +Description="(365)Whether to align continued statements at the '('. If false or the '(' is
followed by a newline, the next line indent is one tab.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_align_paren=true|indent_align_paren=false +ValueDefault=true + +[Indent Oc Inside Msg Sel] +Category=2 +Description="(366)(OC) Whether to indent Objective-C code inside message selectors." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_inside_msg_sel=true|indent_oc_inside_msg_sel=false +ValueDefault=false + +[Indent Oc Block] +Category=2 +Description="(367)(OC) Whether to indent Objective-C blocks at brace level instead of usual
rules." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block=true|indent_oc_block=false +ValueDefault=false + +[Indent Oc Block Msg] +Category=2 +Description="(368)(OC) Indent for Objective-C blocks in a message relative to the parameter
name.

=0: Use indent_oc_block rules
>0: Use specified number of spaces to indent" +Enabled=false +EditorType=numeric +CallName="indent_oc_block_msg=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Oc Msg Colon] +Category=2 +Description="(369)(OC) Minimum indent for subsequent parameters" +Enabled=false +EditorType=numeric +CallName="indent_oc_msg_colon=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Indent Oc Msg Prioritize First Colon] +Category=2 +Description="(370)(OC) Whether to prioritize aligning with initial colon (and stripping spaces
from lines, if necessary).

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_msg_prioritize_first_colon=true|indent_oc_msg_prioritize_first_colon=false +ValueDefault=true + +[Indent Oc Block Msg Xcode Style] +Category=2 +Description="(371)(OC) Whether to indent blocks the way that Xcode does by default
(from the keyword if the parameter is on its own line; otherwise, from the
previous indentation level). Requires indent_oc_block_msg=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block_msg_xcode_style=true|indent_oc_block_msg_xcode_style=false +ValueDefault=false + +[Indent Oc Block Msg From Keyword] +Category=2 +Description="(372)(OC) Whether to indent blocks from where the brace is, relative to a
message keyword. Requires indent_oc_block_msg=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block_msg_from_keyword=true|indent_oc_block_msg_from_keyword=false +ValueDefault=false + +[Indent Oc Block Msg From Colon] +Category=2 +Description="(373)(OC) Whether to indent blocks from where the brace is, relative to a message
colon. Requires indent_oc_block_msg=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block_msg_from_colon=true|indent_oc_block_msg_from_colon=false +ValueDefault=false + +[Indent Oc Block Msg From Caret] +Category=2 +Description="(374)(OC) Whether to indent blocks from where the block caret is.
Requires indent_oc_block_msg=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block_msg_from_caret=true|indent_oc_block_msg_from_caret=false +ValueDefault=false + +[Indent Oc Block Msg From Brace] +Category=2 +Description="(375)(OC) Whether to indent blocks from where the brace caret is.
Requires indent_oc_block_msg=true." +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block_msg_from_brace=true|indent_oc_block_msg_from_brace=false +ValueDefault=false + +[Indent Min Vbrace Open] +Category=2 +Description="(376)When indenting after virtual brace open and newline add further spaces to
reach this minimum indent." +Enabled=false +EditorType=numeric +CallName="indent_min_vbrace_open=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Vbrace Open On Tabstop] +Category=2 +Description="(377)Whether to add further spaces after regular indent to reach next tabstop
when indenting after virtual brace open and newline." +Enabled=false +EditorType=boolean +TrueFalse=indent_vbrace_open_on_tabstop=true|indent_vbrace_open_on_tabstop=false +ValueDefault=false + +[Indent Token After Brace] +Category=2 +Description="(378)How to indent after a brace followed by another token (not a newline).
true: indent all contained lines to match the token
false: indent all contained lines to match the brace

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_token_after_brace=true|indent_token_after_brace=false +ValueDefault=true + +[Indent Cpp Lambda Body] +Category=2 +Description="(379)Whether to indent the body of a C++11 lambda." +Enabled=false +EditorType=boolean +TrueFalse=indent_cpp_lambda_body=true|indent_cpp_lambda_body=false +ValueDefault=false + +[Indent Compound Literal Return] +Category=2 +Description="(380)How to indent compound literals that are being returned.
true: add both the indent from return & the compound literal open brace
(i.e. 2 indent levels)
false: only indent 1 level, don't add the indent for the open brace, only
add the indent for the return.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_compound_literal_return=true|indent_compound_literal_return=false +ValueDefault=true + +[Indent Using Block] +Category=2 +Description="(381)(C#) Whether to indent a 'using' block if no braces are used.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=indent_using_block=true|indent_using_block=false +ValueDefault=true + +[Indent Ternary Operator] +Category=2 +Description="(382)How to indent the continuation of ternary operator.

0: Off (default)
1: When the `if_false` is a continuation, indent it under the `if_true` branch
2: When the `:` is a continuation, indent it under `?`" +Enabled=false +EditorType=numeric +CallName="indent_ternary_operator=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Indent Inside Ternary Operator] +Category=2 +Description="(383)Whether to indent the statements inside ternary operator." +Enabled=false +EditorType=boolean +TrueFalse=indent_inside_ternary_operator=true|indent_inside_ternary_operator=false +ValueDefault=false + +[Indent Off After Return] +Category=2 +Description="(384)If true, the indentation of the chunks after a `return` sequence will be set at return indentation column." +Enabled=false +EditorType=boolean +TrueFalse=indent_off_after_return=true|indent_off_after_return=false +ValueDefault=false + +[Indent Off After Return New] +Category=2 +Description="(385)If true, the indentation of the chunks after a `return new` sequence will be set at return indentation column." +Enabled=false +EditorType=boolean +TrueFalse=indent_off_after_return_new=true|indent_off_after_return_new=false +ValueDefault=false + +[Indent Single After Return] +Category=2 +Description="(386)If true, the tokens after return are indented with regular single indentation. By default (false) the indentation is after the return token." +Enabled=false +EditorType=boolean +TrueFalse=indent_single_after_return=true|indent_single_after_return=false +ValueDefault=false + +[Indent Ignore Asm Block] +Category=2 +Description="(387)Whether to ignore indent and alignment for 'asm' blocks (i.e. assume they
have their own indentation)." +Enabled=false +EditorType=boolean +TrueFalse=indent_ignore_asm_block=true|indent_ignore_asm_block=false +ValueDefault=false + +[Donot Indent Func Def Close Paren] +Category=2 +Description="(388)Don't indent the close parenthesis of a function definition,
if the parenthesis is on its own line." +Enabled=false +EditorType=boolean +TrueFalse=donot_indent_func_def_close_paren=true|donot_indent_func_def_close_paren=false +ValueDefault=false + +[Nl Collapse Empty Body] +Category=3 +Description="(389)Whether to collapse empty blocks between '{' and '}' except for functions.
Use nl_collapse_empty_body_functions to specify how empty function braces
should be formatted." +Enabled=false +EditorType=boolean +TrueFalse=nl_collapse_empty_body=true|nl_collapse_empty_body=false +ValueDefault=false + +[Nl Collapse Empty Body Functions] +Category=3 +Description="(390)Whether to collapse empty blocks between '{' and '}' for functions only.
If true, overrides nl_inside_empty_func." +Enabled=false +EditorType=boolean +TrueFalse=nl_collapse_empty_body_functions=true|nl_collapse_empty_body_functions=false +ValueDefault=false + +[Nl Assign Leave One Liners] +Category=3 +Description="(391)Don't split one-line braced assignments, as in 'foo_t f = { 1, 2 };'." +Enabled=false +EditorType=boolean +TrueFalse=nl_assign_leave_one_liners=true|nl_assign_leave_one_liners=false +ValueDefault=false + +[Nl Class Leave One Liners] +Category=3 +Description="(392)Don't split one-line braced statements inside a 'class xx { }' body." +Enabled=false +EditorType=boolean +TrueFalse=nl_class_leave_one_liners=true|nl_class_leave_one_liners=false +ValueDefault=false + +[Nl Enum Leave One Liners] +Category=3 +Description="(393)Don't split one-line enums, as in 'enum foo { BAR = 15 };'" +Enabled=false +EditorType=boolean +TrueFalse=nl_enum_leave_one_liners=true|nl_enum_leave_one_liners=false +ValueDefault=false + +[Nl Getset Leave One Liners] +Category=3 +Description="(394)Don't split one-line get or set functions." +Enabled=false +EditorType=boolean +TrueFalse=nl_getset_leave_one_liners=true|nl_getset_leave_one_liners=false +ValueDefault=false + +[Nl Cs Property Leave One Liners] +Category=3 +Description="(395)(C#) Don't split one-line property get or set functions." +Enabled=false +EditorType=boolean +TrueFalse=nl_cs_property_leave_one_liners=true|nl_cs_property_leave_one_liners=false +ValueDefault=false + +[Nl Func Leave One Liners] +Category=3 +Description="(396)Don't split one-line function definitions, as in 'int foo() { return 0; }'.
might modify nl_func_type_name" +Enabled=false +EditorType=boolean +TrueFalse=nl_func_leave_one_liners=true|nl_func_leave_one_liners=false +ValueDefault=false + +[Nl Cpp Lambda Leave One Liners] +Category=3 +Description="(397)Don't split one-line C++11 lambdas, as in '[]() { return 0; }'." +Enabled=false +EditorType=boolean +TrueFalse=nl_cpp_lambda_leave_one_liners=true|nl_cpp_lambda_leave_one_liners=false +ValueDefault=false + +[Nl If Leave One Liners] +Category=3 +Description="(398)Don't split one-line if/else statements, as in 'if(...) b++;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_if_leave_one_liners=true|nl_if_leave_one_liners=false +ValueDefault=false + +[Nl While Leave One Liners] +Category=3 +Description="(399)Don't split one-line while statements, as in 'while(...) b++;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_while_leave_one_liners=true|nl_while_leave_one_liners=false +ValueDefault=false + +[Nl Do Leave One Liners] +Category=3 +Description="(400)Don't split one-line do statements, as in 'do { b++; } while(...);'." +Enabled=false +EditorType=boolean +TrueFalse=nl_do_leave_one_liners=true|nl_do_leave_one_liners=false +ValueDefault=false + +[Nl For Leave One Liners] +Category=3 +Description="(401)Don't split one-line for statements, as in 'for(...) b++;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_for_leave_one_liners=true|nl_for_leave_one_liners=false +ValueDefault=false + +[Nl Oc Msg Leave One Liner] +Category=3 +Description="(402)(OC) Don't split one-line Objective-C messages." +Enabled=false +EditorType=boolean +TrueFalse=nl_oc_msg_leave_one_liner=true|nl_oc_msg_leave_one_liner=false +ValueDefault=false + +[Nl Oc Mdef Brace] +Category=3 +Description="(403)(OC) Add or remove newline between method declaration and '{'." +Enabled=false +EditorType=multiple +Choices=nl_oc_mdef_brace=ignore|nl_oc_mdef_brace=add|nl_oc_mdef_brace=remove|nl_oc_mdef_brace=force|nl_oc_mdef_brace=not_defined +ChoicesReadable="(403)Ignore Nl Oc Mdef Brace|(403)Add Nl Oc Mdef Brace|(403)Remove Nl Oc Mdef Brace|(403)Force Nl Oc Mdef Brace" +ValueDefault=ignore + +[Nl Oc Block Brace] +Category=3 +Description="(404)(OC) Add or remove newline between Objective-C block signature and '{'." +Enabled=false +EditorType=multiple +Choices=nl_oc_block_brace=ignore|nl_oc_block_brace=add|nl_oc_block_brace=remove|nl_oc_block_brace=force|nl_oc_block_brace=not_defined +ChoicesReadable="(404)Ignore Nl Oc Block Brace|(404)Add Nl Oc Block Brace|(404)Remove Nl Oc Block Brace|(404)Force Nl Oc Block Brace" +ValueDefault=ignore + +[Nl Oc Before Interface] +Category=3 +Description="(405)(OC) Add or remove blank line before '@interface' statement." +Enabled=false +EditorType=multiple +Choices=nl_oc_before_interface=ignore|nl_oc_before_interface=add|nl_oc_before_interface=remove|nl_oc_before_interface=force|nl_oc_before_interface=not_defined +ChoicesReadable="(405)Ignore Nl Oc Before Interface|(405)Add Nl Oc Before Interface|(405)Remove Nl Oc Before Interface|(405)Force Nl Oc Before Interface" +ValueDefault=ignore + +[Nl Oc Before Implementation] +Category=3 +Description="(406)(OC) Add or remove blank line before '@implementation' statement." +Enabled=false +EditorType=multiple +Choices=nl_oc_before_implementation=ignore|nl_oc_before_implementation=add|nl_oc_before_implementation=remove|nl_oc_before_implementation=force|nl_oc_before_implementation=not_defined +ChoicesReadable="(406)Ignore Nl Oc Before Implementation|(406)Add Nl Oc Before Implementation|(406)Remove Nl Oc Before Implementation|(406)Force Nl Oc Before Implementation" +ValueDefault=ignore + +[Nl Oc Before End] +Category=3 +Description="(407)(OC) Add or remove blank line before '@end' statement." +Enabled=false +EditorType=multiple +Choices=nl_oc_before_end=ignore|nl_oc_before_end=add|nl_oc_before_end=remove|nl_oc_before_end=force|nl_oc_before_end=not_defined +ChoicesReadable="(407)Ignore Nl Oc Before End|(407)Add Nl Oc Before End|(407)Remove Nl Oc Before End|(407)Force Nl Oc Before End" +ValueDefault=ignore + +[Nl Oc Interface Brace] +Category=3 +Description="(408)(OC) Add or remove newline between '@interface' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_oc_interface_brace=ignore|nl_oc_interface_brace=add|nl_oc_interface_brace=remove|nl_oc_interface_brace=force|nl_oc_interface_brace=not_defined +ChoicesReadable="(408)Ignore Nl Oc Interface Brace|(408)Add Nl Oc Interface Brace|(408)Remove Nl Oc Interface Brace|(408)Force Nl Oc Interface Brace" +ValueDefault=ignore + +[Nl Oc Implementation Brace] +Category=3 +Description="(409)(OC) Add or remove newline between '@implementation' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_oc_implementation_brace=ignore|nl_oc_implementation_brace=add|nl_oc_implementation_brace=remove|nl_oc_implementation_brace=force|nl_oc_implementation_brace=not_defined +ChoicesReadable="(409)Ignore Nl Oc Implementation Brace|(409)Add Nl Oc Implementation Brace|(409)Remove Nl Oc Implementation Brace|(409)Force Nl Oc Implementation Brace" +ValueDefault=ignore + +[Nl Start Of File] +Category=3 +Description="(410)Add or remove newlines at the start of the file." +Enabled=false +EditorType=multiple +Choices=nl_start_of_file=ignore|nl_start_of_file=add|nl_start_of_file=remove|nl_start_of_file=force|nl_start_of_file=not_defined +ChoicesReadable="(410)Ignore Nl Start Of File|(410)Add Nl Start Of File|(410)Remove Nl Start Of File|(410)Force Nl Start Of File" +ValueDefault=ignore + +[Nl Start Of File Min] +Category=3 +Description="(411)The minimum number of newlines at the start of the file (only used if
nl_start_of_file is 'add' or 'force')." +Enabled=false +EditorType=numeric +CallName="nl_start_of_file_min=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl End Of File] +Category=3 +Description="(412)Add or remove newline at the end of the file." +Enabled=false +EditorType=multiple +Choices=nl_end_of_file=ignore|nl_end_of_file=add|nl_end_of_file=remove|nl_end_of_file=force|nl_end_of_file=not_defined +ChoicesReadable="(412)Ignore Nl End Of File|(412)Add Nl End Of File|(412)Remove Nl End Of File|(412)Force Nl End Of File" +ValueDefault=ignore + +[Nl End Of File Min] +Category=3 +Description="(413)The minimum number of newlines at the end of the file (only used if
nl_end_of_file is 'add' or 'force')." +Enabled=false +EditorType=numeric +CallName="nl_end_of_file_min=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Assign Brace] +Category=3 +Description="(414)Add or remove newline between '=' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_assign_brace=ignore|nl_assign_brace=add|nl_assign_brace=remove|nl_assign_brace=force|nl_assign_brace=not_defined +ChoicesReadable="(414)Ignore Nl Assign Brace|(414)Add Nl Assign Brace|(414)Remove Nl Assign Brace|(414)Force Nl Assign Brace" +ValueDefault=ignore + +[Nl Assign Square] +Category=3 +Description="(415)(D) Add or remove newline between '=' and '['." +Enabled=false +EditorType=multiple +Choices=nl_assign_square=ignore|nl_assign_square=add|nl_assign_square=remove|nl_assign_square=force|nl_assign_square=not_defined +ChoicesReadable="(415)Ignore Nl Assign Square|(415)Add Nl Assign Square|(415)Remove Nl Assign Square|(415)Force Nl Assign Square" +ValueDefault=ignore + +[Nl Tsquare Brace] +Category=3 +Description="(416)Add or remove newline between '[]' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_tsquare_brace=ignore|nl_tsquare_brace=add|nl_tsquare_brace=remove|nl_tsquare_brace=force|nl_tsquare_brace=not_defined +ChoicesReadable="(416)Ignore Nl Tsquare Brace|(416)Add Nl Tsquare Brace|(416)Remove Nl Tsquare Brace|(416)Force Nl Tsquare Brace" +ValueDefault=ignore + +[Nl After Square Assign] +Category=3 +Description="(417)(D) Add or remove newline after '= ['. Will also affect the newline before
the ']'." +Enabled=false +EditorType=multiple +Choices=nl_after_square_assign=ignore|nl_after_square_assign=add|nl_after_square_assign=remove|nl_after_square_assign=force|nl_after_square_assign=not_defined +ChoicesReadable="(417)Ignore Nl After Square Assign|(417)Add Nl After Square Assign|(417)Remove Nl After Square Assign|(417)Force Nl After Square Assign" +ValueDefault=ignore + +[Nl Fcall Brace] +Category=3 +Description="(418)Add or remove newline between a function call's ')' and '{', as in
'list_for_each(item, &list) { }'." +Enabled=false +EditorType=multiple +Choices=nl_fcall_brace=ignore|nl_fcall_brace=add|nl_fcall_brace=remove|nl_fcall_brace=force|nl_fcall_brace=not_defined +ChoicesReadable="(418)Ignore Nl Fcall Brace|(418)Add Nl Fcall Brace|(418)Remove Nl Fcall Brace|(418)Force Nl Fcall Brace" +ValueDefault=ignore + +[Nl Enum Brace] +Category=3 +Description="(419)Add or remove newline between 'enum' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_enum_brace=ignore|nl_enum_brace=add|nl_enum_brace=remove|nl_enum_brace=force|nl_enum_brace=not_defined +ChoicesReadable="(419)Ignore Nl Enum Brace|(419)Add Nl Enum Brace|(419)Remove Nl Enum Brace|(419)Force Nl Enum Brace" +ValueDefault=ignore + +[Nl Enum Class] +Category=3 +Description="(420)Add or remove newline between 'enum' and 'class'." +Enabled=false +EditorType=multiple +Choices=nl_enum_class=ignore|nl_enum_class=add|nl_enum_class=remove|nl_enum_class=force|nl_enum_class=not_defined +ChoicesReadable="(420)Ignore Nl Enum Class|(420)Add Nl Enum Class|(420)Remove Nl Enum Class|(420)Force Nl Enum Class" +ValueDefault=ignore + +[Nl Enum Class Identifier] +Category=3 +Description="(421)Add or remove newline between 'enum class' and the identifier." +Enabled=false +EditorType=multiple +Choices=nl_enum_class_identifier=ignore|nl_enum_class_identifier=add|nl_enum_class_identifier=remove|nl_enum_class_identifier=force|nl_enum_class_identifier=not_defined +ChoicesReadable="(421)Ignore Nl Enum Class Identifier|(421)Add Nl Enum Class Identifier|(421)Remove Nl Enum Class Identifier|(421)Force Nl Enum Class Identifier" +ValueDefault=ignore + +[Nl Enum Identifier Colon] +Category=3 +Description="(422)Add or remove newline between 'enum class' type and ':'." +Enabled=false +EditorType=multiple +Choices=nl_enum_identifier_colon=ignore|nl_enum_identifier_colon=add|nl_enum_identifier_colon=remove|nl_enum_identifier_colon=force|nl_enum_identifier_colon=not_defined +ChoicesReadable="(422)Ignore Nl Enum Identifier Colon|(422)Add Nl Enum Identifier Colon|(422)Remove Nl Enum Identifier Colon|(422)Force Nl Enum Identifier Colon" +ValueDefault=ignore + +[Nl Enum Colon Type] +Category=3 +Description="(423)Add or remove newline between 'enum class identifier :' and type." +Enabled=false +EditorType=multiple +Choices=nl_enum_colon_type=ignore|nl_enum_colon_type=add|nl_enum_colon_type=remove|nl_enum_colon_type=force|nl_enum_colon_type=not_defined +ChoicesReadable="(423)Ignore Nl Enum Colon Type|(423)Add Nl Enum Colon Type|(423)Remove Nl Enum Colon Type|(423)Force Nl Enum Colon Type" +ValueDefault=ignore + +[Nl Struct Brace] +Category=3 +Description="(424)Add or remove newline between 'struct and '{'." +Enabled=false +EditorType=multiple +Choices=nl_struct_brace=ignore|nl_struct_brace=add|nl_struct_brace=remove|nl_struct_brace=force|nl_struct_brace=not_defined +ChoicesReadable="(424)Ignore Nl Struct Brace|(424)Add Nl Struct Brace|(424)Remove Nl Struct Brace|(424)Force Nl Struct Brace" +ValueDefault=ignore + +[Nl Union Brace] +Category=3 +Description="(425)Add or remove newline between 'union' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_union_brace=ignore|nl_union_brace=add|nl_union_brace=remove|nl_union_brace=force|nl_union_brace=not_defined +ChoicesReadable="(425)Ignore Nl Union Brace|(425)Add Nl Union Brace|(425)Remove Nl Union Brace|(425)Force Nl Union Brace" +ValueDefault=ignore + +[Nl If Brace] +Category=3 +Description="(426)Add or remove newline between 'if' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_if_brace=ignore|nl_if_brace=add|nl_if_brace=remove|nl_if_brace=force|nl_if_brace=not_defined +ChoicesReadable="(426)Ignore Nl If Brace|(426)Add Nl If Brace|(426)Remove Nl If Brace|(426)Force Nl If Brace" +ValueDefault=ignore + +[Nl Brace Else] +Category=3 +Description="(427)Add or remove newline between '}' and 'else'." +Enabled=false +EditorType=multiple +Choices=nl_brace_else=ignore|nl_brace_else=add|nl_brace_else=remove|nl_brace_else=force|nl_brace_else=not_defined +ChoicesReadable="(427)Ignore Nl Brace Else|(427)Add Nl Brace Else|(427)Remove Nl Brace Else|(427)Force Nl Brace Else" +ValueDefault=ignore + +[Nl Elseif Brace] +Category=3 +Description="(428)Add or remove newline between 'else if' and '{'. If set to ignore,
nl_if_brace is used instead." +Enabled=false +EditorType=multiple +Choices=nl_elseif_brace=ignore|nl_elseif_brace=add|nl_elseif_brace=remove|nl_elseif_brace=force|nl_elseif_brace=not_defined +ChoicesReadable="(428)Ignore Nl Elseif Brace|(428)Add Nl Elseif Brace|(428)Remove Nl Elseif Brace|(428)Force Nl Elseif Brace" +ValueDefault=ignore + +[Nl Else Brace] +Category=3 +Description="(429)Add or remove newline between 'else' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_else_brace=ignore|nl_else_brace=add|nl_else_brace=remove|nl_else_brace=force|nl_else_brace=not_defined +ChoicesReadable="(429)Ignore Nl Else Brace|(429)Add Nl Else Brace|(429)Remove Nl Else Brace|(429)Force Nl Else Brace" +ValueDefault=ignore + +[Nl Else If] +Category=3 +Description="(430)Add or remove newline between 'else' and 'if'." +Enabled=false +EditorType=multiple +Choices=nl_else_if=ignore|nl_else_if=add|nl_else_if=remove|nl_else_if=force|nl_else_if=not_defined +ChoicesReadable="(430)Ignore Nl Else If|(430)Add Nl Else If|(430)Remove Nl Else If|(430)Force Nl Else If" +ValueDefault=ignore + +[Nl Before Opening Brace Func Class Def] +Category=3 +Description="(431)Add or remove newline before '{' opening brace" +Enabled=false +EditorType=multiple +Choices=nl_before_opening_brace_func_class_def=ignore|nl_before_opening_brace_func_class_def=add|nl_before_opening_brace_func_class_def=remove|nl_before_opening_brace_func_class_def=force|nl_before_opening_brace_func_class_def=not_defined +ChoicesReadable="(431)Ignore Nl Before Opening Brace Func Class Def|(431)Add Nl Before Opening Brace Func Class Def|(431)Remove Nl Before Opening Brace Func Class Def|(431)Force Nl Before Opening Brace Func Class Def" +ValueDefault=ignore + +[Nl Before If Closing Paren] +Category=3 +Description="(432)Add or remove newline before 'if'/'else if' closing parenthesis." +Enabled=false +EditorType=multiple +Choices=nl_before_if_closing_paren=ignore|nl_before_if_closing_paren=add|nl_before_if_closing_paren=remove|nl_before_if_closing_paren=force|nl_before_if_closing_paren=not_defined +ChoicesReadable="(432)Ignore Nl Before If Closing Paren|(432)Add Nl Before If Closing Paren|(432)Remove Nl Before If Closing Paren|(432)Force Nl Before If Closing Paren" +ValueDefault=ignore + +[Nl Brace Finally] +Category=3 +Description="(433)Add or remove newline between '}' and 'finally'." +Enabled=false +EditorType=multiple +Choices=nl_brace_finally=ignore|nl_brace_finally=add|nl_brace_finally=remove|nl_brace_finally=force|nl_brace_finally=not_defined +ChoicesReadable="(433)Ignore Nl Brace Finally|(433)Add Nl Brace Finally|(433)Remove Nl Brace Finally|(433)Force Nl Brace Finally" +ValueDefault=ignore + +[Nl Finally Brace] +Category=3 +Description="(434)Add or remove newline between 'finally' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_finally_brace=ignore|nl_finally_brace=add|nl_finally_brace=remove|nl_finally_brace=force|nl_finally_brace=not_defined +ChoicesReadable="(434)Ignore Nl Finally Brace|(434)Add Nl Finally Brace|(434)Remove Nl Finally Brace|(434)Force Nl Finally Brace" +ValueDefault=ignore + +[Nl Try Brace] +Category=3 +Description="(435)Add or remove newline between 'try' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_try_brace=ignore|nl_try_brace=add|nl_try_brace=remove|nl_try_brace=force|nl_try_brace=not_defined +ChoicesReadable="(435)Ignore Nl Try Brace|(435)Add Nl Try Brace|(435)Remove Nl Try Brace|(435)Force Nl Try Brace" +ValueDefault=ignore + +[Nl Getset Brace] +Category=3 +Description="(436)Add or remove newline between get/set and '{'." +Enabled=false +EditorType=multiple +Choices=nl_getset_brace=ignore|nl_getset_brace=add|nl_getset_brace=remove|nl_getset_brace=force|nl_getset_brace=not_defined +ChoicesReadable="(436)Ignore Nl Getset Brace|(436)Add Nl Getset Brace|(436)Remove Nl Getset Brace|(436)Force Nl Getset Brace" +ValueDefault=ignore + +[Nl For Brace] +Category=3 +Description="(437)Add or remove newline between 'for' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_for_brace=ignore|nl_for_brace=add|nl_for_brace=remove|nl_for_brace=force|nl_for_brace=not_defined +ChoicesReadable="(437)Ignore Nl For Brace|(437)Add Nl For Brace|(437)Remove Nl For Brace|(437)Force Nl For Brace" +ValueDefault=ignore + +[Nl Catch Brace] +Category=3 +Description="(438)Add or remove newline before the '{' of a 'catch' statement, as in
'catch (decl) <here> {'." +Enabled=false +EditorType=multiple +Choices=nl_catch_brace=ignore|nl_catch_brace=add|nl_catch_brace=remove|nl_catch_brace=force|nl_catch_brace=not_defined +ChoicesReadable="(438)Ignore Nl Catch Brace|(438)Add Nl Catch Brace|(438)Remove Nl Catch Brace|(438)Force Nl Catch Brace" +ValueDefault=ignore + +[Nl Oc Catch Brace] +Category=3 +Description="(439)(OC) Add or remove newline before the '{' of a '@catch' statement, as in
'@catch (decl) <here> {'. If set to ignore, nl_catch_brace is used." +Enabled=false +EditorType=multiple +Choices=nl_oc_catch_brace=ignore|nl_oc_catch_brace=add|nl_oc_catch_brace=remove|nl_oc_catch_brace=force|nl_oc_catch_brace=not_defined +ChoicesReadable="(439)Ignore Nl Oc Catch Brace|(439)Add Nl Oc Catch Brace|(439)Remove Nl Oc Catch Brace|(439)Force Nl Oc Catch Brace" +ValueDefault=ignore + +[Nl Brace Catch] +Category=3 +Description="(440)Add or remove newline between '}' and 'catch'." +Enabled=false +EditorType=multiple +Choices=nl_brace_catch=ignore|nl_brace_catch=add|nl_brace_catch=remove|nl_brace_catch=force|nl_brace_catch=not_defined +ChoicesReadable="(440)Ignore Nl Brace Catch|(440)Add Nl Brace Catch|(440)Remove Nl Brace Catch|(440)Force Nl Brace Catch" +ValueDefault=ignore + +[Nl Oc Brace Catch] +Category=3 +Description="(441)(OC) Add or remove newline between '}' and '@catch'. If set to ignore,
nl_brace_catch is used." +Enabled=false +EditorType=multiple +Choices=nl_oc_brace_catch=ignore|nl_oc_brace_catch=add|nl_oc_brace_catch=remove|nl_oc_brace_catch=force|nl_oc_brace_catch=not_defined +ChoicesReadable="(441)Ignore Nl Oc Brace Catch|(441)Add Nl Oc Brace Catch|(441)Remove Nl Oc Brace Catch|(441)Force Nl Oc Brace Catch" +ValueDefault=ignore + +[Nl Brace Square] +Category=3 +Description="(442)Add or remove newline between '}' and ']'." +Enabled=false +EditorType=multiple +Choices=nl_brace_square=ignore|nl_brace_square=add|nl_brace_square=remove|nl_brace_square=force|nl_brace_square=not_defined +ChoicesReadable="(442)Ignore Nl Brace Square|(442)Add Nl Brace Square|(442)Remove Nl Brace Square|(442)Force Nl Brace Square" +ValueDefault=ignore + +[Nl Brace Fparen] +Category=3 +Description="(443)Add or remove newline between '}' and ')' in a function invocation." +Enabled=false +EditorType=multiple +Choices=nl_brace_fparen=ignore|nl_brace_fparen=add|nl_brace_fparen=remove|nl_brace_fparen=force|nl_brace_fparen=not_defined +ChoicesReadable="(443)Ignore Nl Brace Fparen|(443)Add Nl Brace Fparen|(443)Remove Nl Brace Fparen|(443)Force Nl Brace Fparen" +ValueDefault=ignore + +[Nl While Brace] +Category=3 +Description="(444)Add or remove newline between 'while' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_while_brace=ignore|nl_while_brace=add|nl_while_brace=remove|nl_while_brace=force|nl_while_brace=not_defined +ChoicesReadable="(444)Ignore Nl While Brace|(444)Add Nl While Brace|(444)Remove Nl While Brace|(444)Force Nl While Brace" +ValueDefault=ignore + +[Nl Scope Brace] +Category=3 +Description="(445)(D) Add or remove newline between 'scope (x)' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_scope_brace=ignore|nl_scope_brace=add|nl_scope_brace=remove|nl_scope_brace=force|nl_scope_brace=not_defined +ChoicesReadable="(445)Ignore Nl Scope Brace|(445)Add Nl Scope Brace|(445)Remove Nl Scope Brace|(445)Force Nl Scope Brace" +ValueDefault=ignore + +[Nl Unittest Brace] +Category=3 +Description="(446)(D) Add or remove newline between 'unittest' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_unittest_brace=ignore|nl_unittest_brace=add|nl_unittest_brace=remove|nl_unittest_brace=force|nl_unittest_brace=not_defined +ChoicesReadable="(446)Ignore Nl Unittest Brace|(446)Add Nl Unittest Brace|(446)Remove Nl Unittest Brace|(446)Force Nl Unittest Brace" +ValueDefault=ignore + +[Nl Version Brace] +Category=3 +Description="(447)(D) Add or remove newline between 'version (x)' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_version_brace=ignore|nl_version_brace=add|nl_version_brace=remove|nl_version_brace=force|nl_version_brace=not_defined +ChoicesReadable="(447)Ignore Nl Version Brace|(447)Add Nl Version Brace|(447)Remove Nl Version Brace|(447)Force Nl Version Brace" +ValueDefault=ignore + +[Nl Using Brace] +Category=3 +Description="(448)(C#) Add or remove newline between 'using' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_using_brace=ignore|nl_using_brace=add|nl_using_brace=remove|nl_using_brace=force|nl_using_brace=not_defined +ChoicesReadable="(448)Ignore Nl Using Brace|(448)Add Nl Using Brace|(448)Remove Nl Using Brace|(448)Force Nl Using Brace" +ValueDefault=ignore + +[Nl Brace Brace] +Category=3 +Description="(449)Add or remove newline between two open or close braces. Due to general
newline/brace handling, REMOVE may not work." +Enabled=false +EditorType=multiple +Choices=nl_brace_brace=ignore|nl_brace_brace=add|nl_brace_brace=remove|nl_brace_brace=force|nl_brace_brace=not_defined +ChoicesReadable="(449)Ignore Nl Brace Brace|(449)Add Nl Brace Brace|(449)Remove Nl Brace Brace|(449)Force Nl Brace Brace" +ValueDefault=ignore + +[Nl Do Brace] +Category=3 +Description="(450)Add or remove newline between 'do' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_do_brace=ignore|nl_do_brace=add|nl_do_brace=remove|nl_do_brace=force|nl_do_brace=not_defined +ChoicesReadable="(450)Ignore Nl Do Brace|(450)Add Nl Do Brace|(450)Remove Nl Do Brace|(450)Force Nl Do Brace" +ValueDefault=ignore + +[Nl Brace While] +Category=3 +Description="(451)Add or remove newline between '}' and 'while' of 'do' statement." +Enabled=false +EditorType=multiple +Choices=nl_brace_while=ignore|nl_brace_while=add|nl_brace_while=remove|nl_brace_while=force|nl_brace_while=not_defined +ChoicesReadable="(451)Ignore Nl Brace While|(451)Add Nl Brace While|(451)Remove Nl Brace While|(451)Force Nl Brace While" +ValueDefault=ignore + +[Nl Switch Brace] +Category=3 +Description="(452)Add or remove newline between 'switch' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_switch_brace=ignore|nl_switch_brace=add|nl_switch_brace=remove|nl_switch_brace=force|nl_switch_brace=not_defined +ChoicesReadable="(452)Ignore Nl Switch Brace|(452)Add Nl Switch Brace|(452)Remove Nl Switch Brace|(452)Force Nl Switch Brace" +ValueDefault=ignore + +[Nl Synchronized Brace] +Category=3 +Description="(453)Add or remove newline between 'synchronized' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_synchronized_brace=ignore|nl_synchronized_brace=add|nl_synchronized_brace=remove|nl_synchronized_brace=force|nl_synchronized_brace=not_defined +ChoicesReadable="(453)Ignore Nl Synchronized Brace|(453)Add Nl Synchronized Brace|(453)Remove Nl Synchronized Brace|(453)Force Nl Synchronized Brace" +ValueDefault=ignore + +[Nl Multi Line Cond] +Category=3 +Description="(454)Add a newline between ')' and '{' if the ')' is on a different line than the
if/for/etc.

Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch and
nl_catch_brace." +Enabled=false +EditorType=boolean +TrueFalse=nl_multi_line_cond=true|nl_multi_line_cond=false +ValueDefault=false + +[Nl Multi Line Sparen Open] +Category=3 +Description="(455)Add a newline after '(' if an if/for/while/switch condition spans multiple
lines" +Enabled=false +EditorType=multiple +Choices=nl_multi_line_sparen_open=ignore|nl_multi_line_sparen_open=add|nl_multi_line_sparen_open=remove|nl_multi_line_sparen_open=force|nl_multi_line_sparen_open=not_defined +ChoicesReadable="(455)Ignore Nl Multi Line Sparen Open|(455)Add Nl Multi Line Sparen Open|(455)Remove Nl Multi Line Sparen Open|(455)Force Nl Multi Line Sparen Open" +ValueDefault=ignore + +[Nl Multi Line Sparen Close] +Category=3 +Description="(456)Add a newline before ')' if an if/for/while/switch condition spans multiple
lines. Overrides nl_before_if_closing_paren if both are specified." +Enabled=false +EditorType=multiple +Choices=nl_multi_line_sparen_close=ignore|nl_multi_line_sparen_close=add|nl_multi_line_sparen_close=remove|nl_multi_line_sparen_close=force|nl_multi_line_sparen_close=not_defined +ChoicesReadable="(456)Ignore Nl Multi Line Sparen Close|(456)Add Nl Multi Line Sparen Close|(456)Remove Nl Multi Line Sparen Close|(456)Force Nl Multi Line Sparen Close" +ValueDefault=ignore + +[Nl Multi Line Define] +Category=3 +Description="(457)Force a newline in a define after the macro name for multi-line defines." +Enabled=false +EditorType=boolean +TrueFalse=nl_multi_line_define=true|nl_multi_line_define=false +ValueDefault=false + +[Nl Before Case] +Category=3 +Description="(458)Whether to add a newline before 'case', and a blank line before a 'case'
statement that follows a ';' or '}'." +Enabled=false +EditorType=boolean +TrueFalse=nl_before_case=true|nl_before_case=false +ValueDefault=false + +[Nl After Case] +Category=3 +Description="(459)Whether to add a newline after a 'case' statement." +Enabled=false +EditorType=boolean +TrueFalse=nl_after_case=true|nl_after_case=false +ValueDefault=false + +[Nl Case Colon Brace] +Category=3 +Description="(460)Add or remove newline between a case ':' and '{'.

Overrides nl_after_case." +Enabled=false +EditorType=multiple +Choices=nl_case_colon_brace=ignore|nl_case_colon_brace=add|nl_case_colon_brace=remove|nl_case_colon_brace=force|nl_case_colon_brace=not_defined +ChoicesReadable="(460)Ignore Nl Case Colon Brace|(460)Add Nl Case Colon Brace|(460)Remove Nl Case Colon Brace|(460)Force Nl Case Colon Brace" +ValueDefault=ignore + +[Nl Before Throw] +Category=3 +Description="(461)Add or remove newline between ')' and 'throw'." +Enabled=false +EditorType=multiple +Choices=nl_before_throw=ignore|nl_before_throw=add|nl_before_throw=remove|nl_before_throw=force|nl_before_throw=not_defined +ChoicesReadable="(461)Ignore Nl Before Throw|(461)Add Nl Before Throw|(461)Remove Nl Before Throw|(461)Force Nl Before Throw" +ValueDefault=ignore + +[Nl Namespace Brace] +Category=3 +Description="(462)Add or remove newline between 'namespace' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_namespace_brace=ignore|nl_namespace_brace=add|nl_namespace_brace=remove|nl_namespace_brace=force|nl_namespace_brace=not_defined +ChoicesReadable="(462)Ignore Nl Namespace Brace|(462)Add Nl Namespace Brace|(462)Remove Nl Namespace Brace|(462)Force Nl Namespace Brace" +ValueDefault=ignore + +[Nl Template Class] +Category=3 +Description="(463)Add or remove newline after 'template<...>' of a template class." +Enabled=false +EditorType=multiple +Choices=nl_template_class=ignore|nl_template_class=add|nl_template_class=remove|nl_template_class=force|nl_template_class=not_defined +ChoicesReadable="(463)Ignore Nl Template Class|(463)Add Nl Template Class|(463)Remove Nl Template Class|(463)Force Nl Template Class" +ValueDefault=ignore + +[Nl Template Class Decl] +Category=3 +Description="(464)Add or remove newline after 'template<...>' of a template class declaration.

Overrides nl_template_class." +Enabled=false +EditorType=multiple +Choices=nl_template_class_decl=ignore|nl_template_class_decl=add|nl_template_class_decl=remove|nl_template_class_decl=force|nl_template_class_decl=not_defined +ChoicesReadable="(464)Ignore Nl Template Class Decl|(464)Add Nl Template Class Decl|(464)Remove Nl Template Class Decl|(464)Force Nl Template Class Decl" +ValueDefault=ignore + +[Nl Template Class Decl Special] +Category=3 +Description="(465)Add or remove newline after 'template<>' of a specialized class declaration.

Overrides nl_template_class_decl." +Enabled=false +EditorType=multiple +Choices=nl_template_class_decl_special=ignore|nl_template_class_decl_special=add|nl_template_class_decl_special=remove|nl_template_class_decl_special=force|nl_template_class_decl_special=not_defined +ChoicesReadable="(465)Ignore Nl Template Class Decl Special|(465)Add Nl Template Class Decl Special|(465)Remove Nl Template Class Decl Special|(465)Force Nl Template Class Decl Special" +ValueDefault=ignore + +[Nl Template Class Def] +Category=3 +Description="(466)Add or remove newline after 'template<...>' of a template class definition.

Overrides nl_template_class." +Enabled=false +EditorType=multiple +Choices=nl_template_class_def=ignore|nl_template_class_def=add|nl_template_class_def=remove|nl_template_class_def=force|nl_template_class_def=not_defined +ChoicesReadable="(466)Ignore Nl Template Class Def|(466)Add Nl Template Class Def|(466)Remove Nl Template Class Def|(466)Force Nl Template Class Def" +ValueDefault=ignore + +[Nl Template Class Def Special] +Category=3 +Description="(467)Add or remove newline after 'template<>' of a specialized class definition.

Overrides nl_template_class_def." +Enabled=false +EditorType=multiple +Choices=nl_template_class_def_special=ignore|nl_template_class_def_special=add|nl_template_class_def_special=remove|nl_template_class_def_special=force|nl_template_class_def_special=not_defined +ChoicesReadable="(467)Ignore Nl Template Class Def Special|(467)Add Nl Template Class Def Special|(467)Remove Nl Template Class Def Special|(467)Force Nl Template Class Def Special" +ValueDefault=ignore + +[Nl Template Func] +Category=3 +Description="(468)Add or remove newline after 'template<...>' of a template function." +Enabled=false +EditorType=multiple +Choices=nl_template_func=ignore|nl_template_func=add|nl_template_func=remove|nl_template_func=force|nl_template_func=not_defined +ChoicesReadable="(468)Ignore Nl Template Func|(468)Add Nl Template Func|(468)Remove Nl Template Func|(468)Force Nl Template Func" +ValueDefault=ignore + +[Nl Template Func Decl] +Category=3 +Description="(469)Add or remove newline after 'template<...>' of a template function
declaration.

Overrides nl_template_func." +Enabled=false +EditorType=multiple +Choices=nl_template_func_decl=ignore|nl_template_func_decl=add|nl_template_func_decl=remove|nl_template_func_decl=force|nl_template_func_decl=not_defined +ChoicesReadable="(469)Ignore Nl Template Func Decl|(469)Add Nl Template Func Decl|(469)Remove Nl Template Func Decl|(469)Force Nl Template Func Decl" +ValueDefault=ignore + +[Nl Template Func Decl Special] +Category=3 +Description="(470)Add or remove newline after 'template<>' of a specialized function
declaration.

Overrides nl_template_func_decl." +Enabled=false +EditorType=multiple +Choices=nl_template_func_decl_special=ignore|nl_template_func_decl_special=add|nl_template_func_decl_special=remove|nl_template_func_decl_special=force|nl_template_func_decl_special=not_defined +ChoicesReadable="(470)Ignore Nl Template Func Decl Special|(470)Add Nl Template Func Decl Special|(470)Remove Nl Template Func Decl Special|(470)Force Nl Template Func Decl Special" +ValueDefault=ignore + +[Nl Template Func Def] +Category=3 +Description="(471)Add or remove newline after 'template<...>' of a template function
definition.

Overrides nl_template_func." +Enabled=false +EditorType=multiple +Choices=nl_template_func_def=ignore|nl_template_func_def=add|nl_template_func_def=remove|nl_template_func_def=force|nl_template_func_def=not_defined +ChoicesReadable="(471)Ignore Nl Template Func Def|(471)Add Nl Template Func Def|(471)Remove Nl Template Func Def|(471)Force Nl Template Func Def" +ValueDefault=ignore + +[Nl Template Func Def Special] +Category=3 +Description="(472)Add or remove newline after 'template<>' of a specialized function
definition.

Overrides nl_template_func_def." +Enabled=false +EditorType=multiple +Choices=nl_template_func_def_special=ignore|nl_template_func_def_special=add|nl_template_func_def_special=remove|nl_template_func_def_special=force|nl_template_func_def_special=not_defined +ChoicesReadable="(472)Ignore Nl Template Func Def Special|(472)Add Nl Template Func Def Special|(472)Remove Nl Template Func Def Special|(472)Force Nl Template Func Def Special" +ValueDefault=ignore + +[Nl Template Var] +Category=3 +Description="(473)Add or remove newline after 'template<...>' of a template variable." +Enabled=false +EditorType=multiple +Choices=nl_template_var=ignore|nl_template_var=add|nl_template_var=remove|nl_template_var=force|nl_template_var=not_defined +ChoicesReadable="(473)Ignore Nl Template Var|(473)Add Nl Template Var|(473)Remove Nl Template Var|(473)Force Nl Template Var" +ValueDefault=ignore + +[Nl Template Using] +Category=3 +Description="(474)Add or remove newline between 'template<...>' and 'using' of a templated
type alias." +Enabled=false +EditorType=multiple +Choices=nl_template_using=ignore|nl_template_using=add|nl_template_using=remove|nl_template_using=force|nl_template_using=not_defined +ChoicesReadable="(474)Ignore Nl Template Using|(474)Add Nl Template Using|(474)Remove Nl Template Using|(474)Force Nl Template Using" +ValueDefault=ignore + +[Nl Class Brace] +Category=3 +Description="(475)Add or remove newline between 'class' and '{'." +Enabled=false +EditorType=multiple +Choices=nl_class_brace=ignore|nl_class_brace=add|nl_class_brace=remove|nl_class_brace=force|nl_class_brace=not_defined +ChoicesReadable="(475)Ignore Nl Class Brace|(475)Add Nl Class Brace|(475)Remove Nl Class Brace|(475)Force Nl Class Brace" +ValueDefault=ignore + +[Nl Class Init Args] +Category=3 +Description="(476)Add or remove newline before or after (depending on pos_class_comma,
may not be IGNORE) each',' in the base class list." +Enabled=false +EditorType=multiple +Choices=nl_class_init_args=ignore|nl_class_init_args=add|nl_class_init_args=remove|nl_class_init_args=force|nl_class_init_args=not_defined +ChoicesReadable="(476)Ignore Nl Class Init Args|(476)Add Nl Class Init Args|(476)Remove Nl Class Init Args|(476)Force Nl Class Init Args" +ValueDefault=ignore + +[Nl Constr Init Args] +Category=3 +Description="(477)Add or remove newline after each ',' in the constructor member
initialization. Related to nl_constr_colon, pos_constr_colon and
pos_constr_comma." +Enabled=false +EditorType=multiple +Choices=nl_constr_init_args=ignore|nl_constr_init_args=add|nl_constr_init_args=remove|nl_constr_init_args=force|nl_constr_init_args=not_defined +ChoicesReadable="(477)Ignore Nl Constr Init Args|(477)Add Nl Constr Init Args|(477)Remove Nl Constr Init Args|(477)Force Nl Constr Init Args" +ValueDefault=ignore + +[Nl Enum Own Lines] +Category=3 +Description="(478)Add or remove newline before first element, after comma, and after last
element, in 'enum'." +Enabled=false +EditorType=multiple +Choices=nl_enum_own_lines=ignore|nl_enum_own_lines=add|nl_enum_own_lines=remove|nl_enum_own_lines=force|nl_enum_own_lines=not_defined +ChoicesReadable="(478)Ignore Nl Enum Own Lines|(478)Add Nl Enum Own Lines|(478)Remove Nl Enum Own Lines|(478)Force Nl Enum Own Lines" +ValueDefault=ignore + +[Nl Func Type Name] +Category=3 +Description="(479)Add or remove newline between return type and function name in a function
definition.
might be modified by nl_func_leave_one_liners" +Enabled=false +EditorType=multiple +Choices=nl_func_type_name=ignore|nl_func_type_name=add|nl_func_type_name=remove|nl_func_type_name=force|nl_func_type_name=not_defined +ChoicesReadable="(479)Ignore Nl Func Type Name|(479)Add Nl Func Type Name|(479)Remove Nl Func Type Name|(479)Force Nl Func Type Name" +ValueDefault=ignore + +[Nl Func Type Name Class] +Category=3 +Description="(480)Add or remove newline between return type and function name inside a class
definition. If set to ignore, nl_func_type_name or nl_func_proto_type_name
is used instead." +Enabled=false +EditorType=multiple +Choices=nl_func_type_name_class=ignore|nl_func_type_name_class=add|nl_func_type_name_class=remove|nl_func_type_name_class=force|nl_func_type_name_class=not_defined +ChoicesReadable="(480)Ignore Nl Func Type Name Class|(480)Add Nl Func Type Name Class|(480)Remove Nl Func Type Name Class|(480)Force Nl Func Type Name Class" +ValueDefault=ignore + +[Nl Func Class Scope] +Category=3 +Description="(481)Add or remove newline between class specification and '::'
in 'void A::f() { }'. Only appears in separate member implementation (does
not appear with in-line implementation)." +Enabled=false +EditorType=multiple +Choices=nl_func_class_scope=ignore|nl_func_class_scope=add|nl_func_class_scope=remove|nl_func_class_scope=force|nl_func_class_scope=not_defined +ChoicesReadable="(481)Ignore Nl Func Class Scope|(481)Add Nl Func Class Scope|(481)Remove Nl Func Class Scope|(481)Force Nl Func Class Scope" +ValueDefault=ignore + +[Nl Func Scope Name] +Category=3 +Description="(482)Add or remove newline between function scope and name, as in
'void A :: <here> f() { }'." +Enabled=false +EditorType=multiple +Choices=nl_func_scope_name=ignore|nl_func_scope_name=add|nl_func_scope_name=remove|nl_func_scope_name=force|nl_func_scope_name=not_defined +ChoicesReadable="(482)Ignore Nl Func Scope Name|(482)Add Nl Func Scope Name|(482)Remove Nl Func Scope Name|(482)Force Nl Func Scope Name" +ValueDefault=ignore + +[Nl Func Proto Type Name] +Category=3 +Description="(483)Add or remove newline between return type and function name in a prototype." +Enabled=false +EditorType=multiple +Choices=nl_func_proto_type_name=ignore|nl_func_proto_type_name=add|nl_func_proto_type_name=remove|nl_func_proto_type_name=force|nl_func_proto_type_name=not_defined +ChoicesReadable="(483)Ignore Nl Func Proto Type Name|(483)Add Nl Func Proto Type Name|(483)Remove Nl Func Proto Type Name|(483)Force Nl Func Proto Type Name" +ValueDefault=ignore + +[Nl Func Paren] +Category=3 +Description="(484)Add or remove newline between a function name and the opening '(' in the
declaration." +Enabled=false +EditorType=multiple +Choices=nl_func_paren=ignore|nl_func_paren=add|nl_func_paren=remove|nl_func_paren=force|nl_func_paren=not_defined +ChoicesReadable="(484)Ignore Nl Func Paren|(484)Add Nl Func Paren|(484)Remove Nl Func Paren|(484)Force Nl Func Paren" +ValueDefault=ignore + +[Nl Func Paren Empty] +Category=3 +Description="(485)Overrides nl_func_paren for functions with no parameters." +Enabled=false +EditorType=multiple +Choices=nl_func_paren_empty=ignore|nl_func_paren_empty=add|nl_func_paren_empty=remove|nl_func_paren_empty=force|nl_func_paren_empty=not_defined +ChoicesReadable="(485)Ignore Nl Func Paren Empty|(485)Add Nl Func Paren Empty|(485)Remove Nl Func Paren Empty|(485)Force Nl Func Paren Empty" +ValueDefault=ignore + +[Nl Func Def Paren] +Category=3 +Description="(486)Add or remove newline between a function name and the opening '(' in the
definition." +Enabled=false +EditorType=multiple +Choices=nl_func_def_paren=ignore|nl_func_def_paren=add|nl_func_def_paren=remove|nl_func_def_paren=force|nl_func_def_paren=not_defined +ChoicesReadable="(486)Ignore Nl Func Def Paren|(486)Add Nl Func Def Paren|(486)Remove Nl Func Def Paren|(486)Force Nl Func Def Paren" +ValueDefault=ignore + +[Nl Func Def Paren Empty] +Category=3 +Description="(487)Overrides nl_func_def_paren for functions with no parameters." +Enabled=false +EditorType=multiple +Choices=nl_func_def_paren_empty=ignore|nl_func_def_paren_empty=add|nl_func_def_paren_empty=remove|nl_func_def_paren_empty=force|nl_func_def_paren_empty=not_defined +ChoicesReadable="(487)Ignore Nl Func Def Paren Empty|(487)Add Nl Func Def Paren Empty|(487)Remove Nl Func Def Paren Empty|(487)Force Nl Func Def Paren Empty" +ValueDefault=ignore + +[Nl Func Call Paren] +Category=3 +Description="(488)Add or remove newline between a function name and the opening '(' in the
call." +Enabled=false +EditorType=multiple +Choices=nl_func_call_paren=ignore|nl_func_call_paren=add|nl_func_call_paren=remove|nl_func_call_paren=force|nl_func_call_paren=not_defined +ChoicesReadable="(488)Ignore Nl Func Call Paren|(488)Add Nl Func Call Paren|(488)Remove Nl Func Call Paren|(488)Force Nl Func Call Paren" +ValueDefault=ignore + +[Nl Func Call Paren Empty] +Category=3 +Description="(489)Overrides nl_func_call_paren for functions with no parameters." +Enabled=false +EditorType=multiple +Choices=nl_func_call_paren_empty=ignore|nl_func_call_paren_empty=add|nl_func_call_paren_empty=remove|nl_func_call_paren_empty=force|nl_func_call_paren_empty=not_defined +ChoicesReadable="(489)Ignore Nl Func Call Paren Empty|(489)Add Nl Func Call Paren Empty|(489)Remove Nl Func Call Paren Empty|(489)Force Nl Func Call Paren Empty" +ValueDefault=ignore + +[Nl Func Decl Start] +Category=3 +Description="(490)Add or remove newline after '(' in a function declaration." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_start=ignore|nl_func_decl_start=add|nl_func_decl_start=remove|nl_func_decl_start=force|nl_func_decl_start=not_defined +ChoicesReadable="(490)Ignore Nl Func Decl Start|(490)Add Nl Func Decl Start|(490)Remove Nl Func Decl Start|(490)Force Nl Func Decl Start" +ValueDefault=ignore + +[Nl Func Def Start] +Category=3 +Description="(491)Add or remove newline after '(' in a function definition." +Enabled=false +EditorType=multiple +Choices=nl_func_def_start=ignore|nl_func_def_start=add|nl_func_def_start=remove|nl_func_def_start=force|nl_func_def_start=not_defined +ChoicesReadable="(491)Ignore Nl Func Def Start|(491)Add Nl Func Def Start|(491)Remove Nl Func Def Start|(491)Force Nl Func Def Start" +ValueDefault=ignore + +[Nl Func Decl Start Single] +Category=3 +Description="(492)Overrides nl_func_decl_start when there is only one parameter." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_start_single=ignore|nl_func_decl_start_single=add|nl_func_decl_start_single=remove|nl_func_decl_start_single=force|nl_func_decl_start_single=not_defined +ChoicesReadable="(492)Ignore Nl Func Decl Start Single|(492)Add Nl Func Decl Start Single|(492)Remove Nl Func Decl Start Single|(492)Force Nl Func Decl Start Single" +ValueDefault=ignore + +[Nl Func Def Start Single] +Category=3 +Description="(493)Overrides nl_func_def_start when there is only one parameter." +Enabled=false +EditorType=multiple +Choices=nl_func_def_start_single=ignore|nl_func_def_start_single=add|nl_func_def_start_single=remove|nl_func_def_start_single=force|nl_func_def_start_single=not_defined +ChoicesReadable="(493)Ignore Nl Func Def Start Single|(493)Add Nl Func Def Start Single|(493)Remove Nl Func Def Start Single|(493)Force Nl Func Def Start Single" +ValueDefault=ignore + +[Nl Func Decl Start Multi Line] +Category=3 +Description="(494)Whether to add a newline after '(' in a function declaration if '(' and ')'
are in different lines. If false, nl_func_decl_start is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_decl_start_multi_line=true|nl_func_decl_start_multi_line=false +ValueDefault=false + +[Nl Func Def Start Multi Line] +Category=3 +Description="(495)Whether to add a newline after '(' in a function definition if '(' and ')'
are in different lines. If false, nl_func_def_start is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_def_start_multi_line=true|nl_func_def_start_multi_line=false +ValueDefault=false + +[Nl Func Decl Args] +Category=3 +Description="(496)Add or remove newline after each ',' in a function declaration." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_args=ignore|nl_func_decl_args=add|nl_func_decl_args=remove|nl_func_decl_args=force|nl_func_decl_args=not_defined +ChoicesReadable="(496)Ignore Nl Func Decl Args|(496)Add Nl Func Decl Args|(496)Remove Nl Func Decl Args|(496)Force Nl Func Decl Args" +ValueDefault=ignore + +[Nl Func Def Args] +Category=3 +Description="(497)Add or remove newline after each ',' in a function definition." +Enabled=false +EditorType=multiple +Choices=nl_func_def_args=ignore|nl_func_def_args=add|nl_func_def_args=remove|nl_func_def_args=force|nl_func_def_args=not_defined +ChoicesReadable="(497)Ignore Nl Func Def Args|(497)Add Nl Func Def Args|(497)Remove Nl Func Def Args|(497)Force Nl Func Def Args" +ValueDefault=ignore + +[Nl Func Call Args] +Category=3 +Description="(498)Add or remove newline after each ',' in a function call." +Enabled=false +EditorType=multiple +Choices=nl_func_call_args=ignore|nl_func_call_args=add|nl_func_call_args=remove|nl_func_call_args=force|nl_func_call_args=not_defined +ChoicesReadable="(498)Ignore Nl Func Call Args|(498)Add Nl Func Call Args|(498)Remove Nl Func Call Args|(498)Force Nl Func Call Args" +ValueDefault=ignore + +[Nl Func Decl Args Multi Line] +Category=3 +Description="(499)Whether to add a newline after each ',' in a function declaration if '('
and ')' are in different lines. If false, nl_func_decl_args is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_decl_args_multi_line=true|nl_func_decl_args_multi_line=false +ValueDefault=false + +[Nl Func Def Args Multi Line] +Category=3 +Description="(500)Whether to add a newline after each ',' in a function definition if '('
and ')' are in different lines. If false, nl_func_def_args is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_def_args_multi_line=true|nl_func_def_args_multi_line=false +ValueDefault=false + +[Nl Func Decl End] +Category=3 +Description="(501)Add or remove newline before the ')' in a function declaration." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_end=ignore|nl_func_decl_end=add|nl_func_decl_end=remove|nl_func_decl_end=force|nl_func_decl_end=not_defined +ChoicesReadable="(501)Ignore Nl Func Decl End|(501)Add Nl Func Decl End|(501)Remove Nl Func Decl End|(501)Force Nl Func Decl End" +ValueDefault=ignore + +[Nl Func Def End] +Category=3 +Description="(502)Add or remove newline before the ')' in a function definition." +Enabled=false +EditorType=multiple +Choices=nl_func_def_end=ignore|nl_func_def_end=add|nl_func_def_end=remove|nl_func_def_end=force|nl_func_def_end=not_defined +ChoicesReadable="(502)Ignore Nl Func Def End|(502)Add Nl Func Def End|(502)Remove Nl Func Def End|(502)Force Nl Func Def End" +ValueDefault=ignore + +[Nl Func Decl End Single] +Category=3 +Description="(503)Overrides nl_func_decl_end when there is only one parameter." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_end_single=ignore|nl_func_decl_end_single=add|nl_func_decl_end_single=remove|nl_func_decl_end_single=force|nl_func_decl_end_single=not_defined +ChoicesReadable="(503)Ignore Nl Func Decl End Single|(503)Add Nl Func Decl End Single|(503)Remove Nl Func Decl End Single|(503)Force Nl Func Decl End Single" +ValueDefault=ignore + +[Nl Func Def End Single] +Category=3 +Description="(504)Overrides nl_func_def_end when there is only one parameter." +Enabled=false +EditorType=multiple +Choices=nl_func_def_end_single=ignore|nl_func_def_end_single=add|nl_func_def_end_single=remove|nl_func_def_end_single=force|nl_func_def_end_single=not_defined +ChoicesReadable="(504)Ignore Nl Func Def End Single|(504)Add Nl Func Def End Single|(504)Remove Nl Func Def End Single|(504)Force Nl Func Def End Single" +ValueDefault=ignore + +[Nl Func Decl End Multi Line] +Category=3 +Description="(505)Whether to add a newline before ')' in a function declaration if '(' and ')'
are in different lines. If false, nl_func_decl_end is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_decl_end_multi_line=true|nl_func_decl_end_multi_line=false +ValueDefault=false + +[Nl Func Def End Multi Line] +Category=3 +Description="(506)Whether to add a newline before ')' in a function definition if '(' and ')'
are in different lines. If false, nl_func_def_end is used instead." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_def_end_multi_line=true|nl_func_def_end_multi_line=false +ValueDefault=false + +[Nl Func Decl Empty] +Category=3 +Description="(507)Add or remove newline between '()' in a function declaration." +Enabled=false +EditorType=multiple +Choices=nl_func_decl_empty=ignore|nl_func_decl_empty=add|nl_func_decl_empty=remove|nl_func_decl_empty=force|nl_func_decl_empty=not_defined +ChoicesReadable="(507)Ignore Nl Func Decl Empty|(507)Add Nl Func Decl Empty|(507)Remove Nl Func Decl Empty|(507)Force Nl Func Decl Empty" +ValueDefault=ignore + +[Nl Func Def Empty] +Category=3 +Description="(508)Add or remove newline between '()' in a function definition." +Enabled=false +EditorType=multiple +Choices=nl_func_def_empty=ignore|nl_func_def_empty=add|nl_func_def_empty=remove|nl_func_def_empty=force|nl_func_def_empty=not_defined +ChoicesReadable="(508)Ignore Nl Func Def Empty|(508)Add Nl Func Def Empty|(508)Remove Nl Func Def Empty|(508)Force Nl Func Def Empty" +ValueDefault=ignore + +[Nl Func Call Empty] +Category=3 +Description="(509)Add or remove newline between '()' in a function call." +Enabled=false +EditorType=multiple +Choices=nl_func_call_empty=ignore|nl_func_call_empty=add|nl_func_call_empty=remove|nl_func_call_empty=force|nl_func_call_empty=not_defined +ChoicesReadable="(509)Ignore Nl Func Call Empty|(509)Add Nl Func Call Empty|(509)Remove Nl Func Call Empty|(509)Force Nl Func Call Empty" +ValueDefault=ignore + +[Nl Func Call Start] +Category=3 +Description="(510)Whether to add a newline after '(' in a function call,
has preference over nl_func_call_start_multi_line." +Enabled=false +EditorType=multiple +Choices=nl_func_call_start=ignore|nl_func_call_start=add|nl_func_call_start=remove|nl_func_call_start=force|nl_func_call_start=not_defined +ChoicesReadable="(510)Ignore Nl Func Call Start|(510)Add Nl Func Call Start|(510)Remove Nl Func Call Start|(510)Force Nl Func Call Start" +ValueDefault=ignore + +[Nl Func Call End] +Category=3 +Description="(511)Whether to add a newline before ')' in a function call." +Enabled=false +EditorType=multiple +Choices=nl_func_call_end=ignore|nl_func_call_end=add|nl_func_call_end=remove|nl_func_call_end=force|nl_func_call_end=not_defined +ChoicesReadable="(511)Ignore Nl Func Call End|(511)Add Nl Func Call End|(511)Remove Nl Func Call End|(511)Force Nl Func Call End" +ValueDefault=ignore + +[Nl Func Call Start Multi Line] +Category=3 +Description="(512)Whether to add a newline after '(' in a function call if '(' and ')' are in
different lines." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_call_start_multi_line=true|nl_func_call_start_multi_line=false +ValueDefault=false + +[Nl Func Call Args Multi Line] +Category=3 +Description="(513)Whether to add a newline after each ',' in a function call if '(' and ')'
are in different lines." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_call_args_multi_line=true|nl_func_call_args_multi_line=false +ValueDefault=false + +[Nl Func Call End Multi Line] +Category=3 +Description="(514)Whether to add a newline before ')' in a function call if '(' and ')' are in
different lines." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_call_end_multi_line=true|nl_func_call_end_multi_line=false +ValueDefault=false + +[Nl Func Call Args Multi Line Ignore Closures] +Category=3 +Description="(515)Whether to respect nl_func_call_XXX option in case of closure args." +Enabled=false +EditorType=boolean +TrueFalse=nl_func_call_args_multi_line_ignore_closures=true|nl_func_call_args_multi_line_ignore_closures=false +ValueDefault=false + +[Nl Template Start] +Category=3 +Description="(516)Whether to add a newline after '<' of a template parameter list." +Enabled=false +EditorType=boolean +TrueFalse=nl_template_start=true|nl_template_start=false +ValueDefault=false + +[Nl Template Args] +Category=3 +Description="(517)Whether to add a newline after each ',' in a template parameter list." +Enabled=false +EditorType=boolean +TrueFalse=nl_template_args=true|nl_template_args=false +ValueDefault=false + +[Nl Template End] +Category=3 +Description="(518)Whether to add a newline before '>' of a template parameter list." +Enabled=false +EditorType=boolean +TrueFalse=nl_template_end=true|nl_template_end=false +ValueDefault=false + +[Nl Oc Msg Args] +Category=3 +Description="(519)(OC) Whether to put each Objective-C message parameter on a separate line.
See nl_oc_msg_leave_one_liner." +Enabled=false +EditorType=boolean +TrueFalse=nl_oc_msg_args=true|nl_oc_msg_args=false +ValueDefault=false + +[Nl Oc Msg Args Min Params] +Category=3 +Description="(520)(OC) Minimum number of Objective-C message parameters before applying nl_oc_msg_args." +Enabled=false +EditorType=numeric +CallName="nl_oc_msg_args_min_params=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Oc Msg Args Max Code Width] +Category=3 +Description="(521)(OC) Max code width of Objective-C message before applying nl_oc_msg_args." +Enabled=false +EditorType=numeric +CallName="nl_oc_msg_args_max_code_width=" +MinVal=0 +MaxVal=10000 ValueDefault=0 -[Align Var Def Attribute] +[Nl Fdef Brace] +Category=3 +Description="(522)Add or remove newline between function signature and '{'." +Enabled=false +EditorType=multiple +Choices=nl_fdef_brace=ignore|nl_fdef_brace=add|nl_fdef_brace=remove|nl_fdef_brace=force|nl_fdef_brace=not_defined +ChoicesReadable="(522)Ignore Nl Fdef Brace|(522)Add Nl Fdef Brace|(522)Remove Nl Fdef Brace|(522)Force Nl Fdef Brace" +ValueDefault=ignore + +[Nl Fdef Brace Cond] +Category=3 +Description="(523)Add or remove newline between function signature and '{',
if signature ends with ')'. Overrides nl_fdef_brace." +Enabled=false +EditorType=multiple +Choices=nl_fdef_brace_cond=ignore|nl_fdef_brace_cond=add|nl_fdef_brace_cond=remove|nl_fdef_brace_cond=force|nl_fdef_brace_cond=not_defined +ChoicesReadable="(523)Ignore Nl Fdef Brace Cond|(523)Add Nl Fdef Brace Cond|(523)Remove Nl Fdef Brace Cond|(523)Force Nl Fdef Brace Cond" +ValueDefault=ignore + +[Nl Cpp Ldef Brace] +Category=3 +Description="(524)Add or remove newline between C++11 lambda signature and '{'." +Enabled=false +EditorType=multiple +Choices=nl_cpp_ldef_brace=ignore|nl_cpp_ldef_brace=add|nl_cpp_ldef_brace=remove|nl_cpp_ldef_brace=force|nl_cpp_ldef_brace=not_defined +ChoicesReadable="(524)Ignore Nl Cpp Ldef Brace|(524)Add Nl Cpp Ldef Brace|(524)Remove Nl Cpp Ldef Brace|(524)Force Nl Cpp Ldef Brace" +ValueDefault=ignore + +[Nl Return Expr] +Category=3 +Description="(525)Add or remove newline between 'return' and the return expression." +Enabled=false +EditorType=multiple +Choices=nl_return_expr=ignore|nl_return_expr=add|nl_return_expr=remove|nl_return_expr=force|nl_return_expr=not_defined +ChoicesReadable="(525)Ignore Nl Return Expr|(525)Add Nl Return Expr|(525)Remove Nl Return Expr|(525)Force Nl Return Expr" +ValueDefault=ignore + +[Nl Throw Expr] +Category=3 +Description="(526)Add or remove newline between 'throw' and the throw expression." +Enabled=false +EditorType=multiple +Choices=nl_throw_expr=ignore|nl_throw_expr=add|nl_throw_expr=remove|nl_throw_expr=force|nl_throw_expr=not_defined +ChoicesReadable="(526)Ignore Nl Throw Expr|(526)Add Nl Throw Expr|(526)Remove Nl Throw Expr|(526)Force Nl Throw Expr" +ValueDefault=ignore + +[Nl After Semicolon] Category=3 -Description="Whether to align any attribute after the variable name" +Description="(527)Whether to add a newline after semicolons, except in 'for' statements." Enabled=false EditorType=boolean -TrueFalse=align_var_def_attribute=true|align_var_def_attribute=false -ValueDefault=0 +TrueFalse=nl_after_semicolon=true|nl_after_semicolon=false +ValueDefault=false -[Align Var Def Inline] +[Nl Paren Dbrace Open] +Category=3 +Description="(528)(Java) Add or remove newline between the ')' and '{{' of the double brace
initializer." +Enabled=false +EditorType=multiple +Choices=nl_paren_dbrace_open=ignore|nl_paren_dbrace_open=add|nl_paren_dbrace_open=remove|nl_paren_dbrace_open=force|nl_paren_dbrace_open=not_defined +ChoicesReadable="(528)Ignore Nl Paren Dbrace Open|(528)Add Nl Paren Dbrace Open|(528)Remove Nl Paren Dbrace Open|(528)Force Nl Paren Dbrace Open" +ValueDefault=ignore + +[Nl Type Brace Init Lst] +Category=3 +Description="(529)Whether to add a newline after the type in an unnamed temporary
direct-list-initialization, better:
before a direct-list-initialization." +Enabled=false +EditorType=multiple +Choices=nl_type_brace_init_lst=ignore|nl_type_brace_init_lst=add|nl_type_brace_init_lst=remove|nl_type_brace_init_lst=force|nl_type_brace_init_lst=not_defined +ChoicesReadable="(529)Ignore Nl Type Brace Init Lst|(529)Add Nl Type Brace Init Lst|(529)Remove Nl Type Brace Init Lst|(529)Force Nl Type Brace Init Lst" +ValueDefault=ignore + +[Nl Type Brace Init Lst Open] +Category=3 +Description="(530)Whether to add a newline after the open brace in an unnamed temporary
direct-list-initialization." +Enabled=false +EditorType=multiple +Choices=nl_type_brace_init_lst_open=ignore|nl_type_brace_init_lst_open=add|nl_type_brace_init_lst_open=remove|nl_type_brace_init_lst_open=force|nl_type_brace_init_lst_open=not_defined +ChoicesReadable="(530)Ignore Nl Type Brace Init Lst Open|(530)Add Nl Type Brace Init Lst Open|(530)Remove Nl Type Brace Init Lst Open|(530)Force Nl Type Brace Init Lst Open" +ValueDefault=ignore + +[Nl Type Brace Init Lst Close] +Category=3 +Description="(531)Whether to add a newline before the close brace in an unnamed temporary
direct-list-initialization." +Enabled=false +EditorType=multiple +Choices=nl_type_brace_init_lst_close=ignore|nl_type_brace_init_lst_close=add|nl_type_brace_init_lst_close=remove|nl_type_brace_init_lst_close=force|nl_type_brace_init_lst_close=not_defined +ChoicesReadable="(531)Ignore Nl Type Brace Init Lst Close|(531)Add Nl Type Brace Init Lst Close|(531)Remove Nl Type Brace Init Lst Close|(531)Force Nl Type Brace Init Lst Close" +ValueDefault=ignore + +[Nl Before Brace Open] Category=3 -Description="Whether to align inline struct/enum/union variable definitions" +Description="(532)Whether to add a newline before '{'." Enabled=false EditorType=boolean -TrueFalse=align_var_def_inline=true|align_var_def_inline=false -ValueDefault=0 +TrueFalse=nl_before_brace_open=true|nl_before_brace_open=false +ValueDefault=false -[Align Assign Span] +[Nl After Brace Open] Category=3 -Description="The span for aligning on '=' in assignments (0=don't align)" +Description="(533)Whether to add a newline after '{'." Enabled=false -EditorType=numeric -CallName="align_assign_span=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_brace_open=true|nl_after_brace_open=false +ValueDefault=false -[Align Assign Thresh] +[Nl After Brace Open Cmt] Category=3 -Description="The threshold for aligning on '=' in assignments (0=no limit)" +Description="(534)Whether to add a newline between the open brace and a trailing single-line
comment. Requires nl_after_brace_open=true." Enabled=false -EditorType=numeric -CallName="align_assign_thresh=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_brace_open_cmt=true|nl_after_brace_open_cmt=false +ValueDefault=false -[Align Enum Equ Span] +[Nl After Vbrace Open] Category=3 -Description="The span for aligning on '=' in enums (0=don't align)" +Description="(535)Whether to add a newline after a virtual brace open with a non-empty body.
These occur in un-braced if/while/do/for statement bodies." Enabled=false -EditorType=numeric -CallName="align_enum_equ_span=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_vbrace_open=true|nl_after_vbrace_open=false +ValueDefault=false -[Align Enum Equ Thresh] +[Nl After Vbrace Open Empty] Category=3 -Description="The threshold for aligning on '=' in enums (0=no limit)" +Description="(536)Whether to add a newline after a virtual brace open with an empty body.
These occur in un-braced if/while/do/for statement bodies." Enabled=false -EditorType=numeric -CallName="align_enum_equ_thresh=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_vbrace_open_empty=true|nl_after_vbrace_open_empty=false +ValueDefault=false -[Align Var Struct Span] +[Nl After Brace Close] Category=3 -Description="The span for aligning struct/union (0=don't align)" +Description="(537)Whether to add a newline after '}'. Does not apply if followed by a
necessary ';'." Enabled=false -EditorType=numeric -CallName="align_var_struct_span=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_brace_close=true|nl_after_brace_close=false +ValueDefault=false -[Align Var Struct Thresh] +[Nl After Vbrace Close] Category=3 -Description="The threshold for aligning struct/union member definitions (0=no limit)" +Description="(538)Whether to add a newline after a virtual brace close,
as in 'if (foo) a++; <here> return;'." Enabled=false -EditorType=numeric -CallName="align_var_struct_thresh=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_vbrace_close=true|nl_after_vbrace_close=false +ValueDefault=false -[Align Var Struct Gap] +[Nl Brace Struct Var] Category=3 -Description="The gap for aligning struct/union member definitions" +Description="(539)Add or remove newline between the close brace and identifier,
as in 'struct { int a; } <here> b;'. Affects enumerations, unions and
structures. If set to ignore, uses nl_after_brace_close." Enabled=false -EditorType=numeric -CallName="align_var_struct_gap=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=multiple +Choices=nl_brace_struct_var=ignore|nl_brace_struct_var=add|nl_brace_struct_var=remove|nl_brace_struct_var=force|nl_brace_struct_var=not_defined +ChoicesReadable="(539)Ignore Nl Brace Struct Var|(539)Add Nl Brace Struct Var|(539)Remove Nl Brace Struct Var|(539)Force Nl Brace Struct Var" +ValueDefault=ignore -[Align Struct Init Span] +[Nl Define Macro] +Category=3 +Description="(540)Whether to alter newlines in '#define' macros." +Enabled=false +EditorType=boolean +TrueFalse=nl_define_macro=true|nl_define_macro=false +ValueDefault=false + +[Nl Squeeze Paren Close] +Category=3 +Description="(541)Whether to alter newlines between consecutive parenthesis closes. The number
of closing parentheses in a line will depend on respective open parenthesis
lines." +Enabled=false +EditorType=boolean +TrueFalse=nl_squeeze_paren_close=true|nl_squeeze_paren_close=false +ValueDefault=false + +[Nl Squeeze Ifdef] +Category=3 +Description="(542)Whether to remove blanks after '#ifxx' and '#elxx', or before '#elxx' and
'#endif'. Does not affect top-level #ifdefs." +Enabled=false +EditorType=boolean +TrueFalse=nl_squeeze_ifdef=true|nl_squeeze_ifdef=false +ValueDefault=false + +[Nl Squeeze Ifdef Top Level] +Category=3 +Description="(543)Makes the nl_squeeze_ifdef option affect the top-level #ifdefs as well." +Enabled=false +EditorType=boolean +TrueFalse=nl_squeeze_ifdef_top_level=true|nl_squeeze_ifdef_top_level=false +ValueDefault=false + +[Nl Before If] +Category=3 +Description="(544)Add or remove blank line before 'if'." +Enabled=false +EditorType=multiple +Choices=nl_before_if=ignore|nl_before_if=add|nl_before_if=remove|nl_before_if=force|nl_before_if=not_defined +ChoicesReadable="(544)Ignore Nl Before If|(544)Add Nl Before If|(544)Remove Nl Before If|(544)Force Nl Before If" +ValueDefault=ignore + +[Nl After If] +Category=3 +Description="(545)Add or remove blank line after 'if' statement. Add/Force work only if the
next token is not a closing brace." +Enabled=false +EditorType=multiple +Choices=nl_after_if=ignore|nl_after_if=add|nl_after_if=remove|nl_after_if=force|nl_after_if=not_defined +ChoicesReadable="(545)Ignore Nl After If|(545)Add Nl After If|(545)Remove Nl After If|(545)Force Nl After If" +ValueDefault=ignore + +[Nl Before For] +Category=3 +Description="(546)Add or remove blank line before 'for'." +Enabled=false +EditorType=multiple +Choices=nl_before_for=ignore|nl_before_for=add|nl_before_for=remove|nl_before_for=force|nl_before_for=not_defined +ChoicesReadable="(546)Ignore Nl Before For|(546)Add Nl Before For|(546)Remove Nl Before For|(546)Force Nl Before For" +ValueDefault=ignore + +[Nl After For] +Category=3 +Description="(547)Add or remove blank line after 'for' statement." +Enabled=false +EditorType=multiple +Choices=nl_after_for=ignore|nl_after_for=add|nl_after_for=remove|nl_after_for=force|nl_after_for=not_defined +ChoicesReadable="(547)Ignore Nl After For|(547)Add Nl After For|(547)Remove Nl After For|(547)Force Nl After For" +ValueDefault=ignore + +[Nl Before While] +Category=3 +Description="(548)Add or remove blank line before 'while'." +Enabled=false +EditorType=multiple +Choices=nl_before_while=ignore|nl_before_while=add|nl_before_while=remove|nl_before_while=force|nl_before_while=not_defined +ChoicesReadable="(548)Ignore Nl Before While|(548)Add Nl Before While|(548)Remove Nl Before While|(548)Force Nl Before While" +ValueDefault=ignore + +[Nl After While] +Category=3 +Description="(549)Add or remove blank line after 'while' statement." +Enabled=false +EditorType=multiple +Choices=nl_after_while=ignore|nl_after_while=add|nl_after_while=remove|nl_after_while=force|nl_after_while=not_defined +ChoicesReadable="(549)Ignore Nl After While|(549)Add Nl After While|(549)Remove Nl After While|(549)Force Nl After While" +ValueDefault=ignore + +[Nl Before Switch] +Category=3 +Description="(550)Add or remove blank line before 'switch'." +Enabled=false +EditorType=multiple +Choices=nl_before_switch=ignore|nl_before_switch=add|nl_before_switch=remove|nl_before_switch=force|nl_before_switch=not_defined +ChoicesReadable="(550)Ignore Nl Before Switch|(550)Add Nl Before Switch|(550)Remove Nl Before Switch|(550)Force Nl Before Switch" +ValueDefault=ignore + +[Nl After Switch] +Category=3 +Description="(551)Add or remove blank line after 'switch' statement." +Enabled=false +EditorType=multiple +Choices=nl_after_switch=ignore|nl_after_switch=add|nl_after_switch=remove|nl_after_switch=force|nl_after_switch=not_defined +ChoicesReadable="(551)Ignore Nl After Switch|(551)Add Nl After Switch|(551)Remove Nl After Switch|(551)Force Nl After Switch" +ValueDefault=ignore + +[Nl Before Synchronized] +Category=3 +Description="(552)Add or remove blank line before 'synchronized'." +Enabled=false +EditorType=multiple +Choices=nl_before_synchronized=ignore|nl_before_synchronized=add|nl_before_synchronized=remove|nl_before_synchronized=force|nl_before_synchronized=not_defined +ChoicesReadable="(552)Ignore Nl Before Synchronized|(552)Add Nl Before Synchronized|(552)Remove Nl Before Synchronized|(552)Force Nl Before Synchronized" +ValueDefault=ignore + +[Nl After Synchronized] +Category=3 +Description="(553)Add or remove blank line after 'synchronized' statement." +Enabled=false +EditorType=multiple +Choices=nl_after_synchronized=ignore|nl_after_synchronized=add|nl_after_synchronized=remove|nl_after_synchronized=force|nl_after_synchronized=not_defined +ChoicesReadable="(553)Ignore Nl After Synchronized|(553)Add Nl After Synchronized|(553)Remove Nl After Synchronized|(553)Force Nl After Synchronized" +ValueDefault=ignore + +[Nl Before Do] +Category=3 +Description="(554)Add or remove blank line before 'do'." +Enabled=false +EditorType=multiple +Choices=nl_before_do=ignore|nl_before_do=add|nl_before_do=remove|nl_before_do=force|nl_before_do=not_defined +ChoicesReadable="(554)Ignore Nl Before Do|(554)Add Nl Before Do|(554)Remove Nl Before Do|(554)Force Nl Before Do" +ValueDefault=ignore + +[Nl After Do] +Category=3 +Description="(555)Add or remove blank line after 'do/while' statement." +Enabled=false +EditorType=multiple +Choices=nl_after_do=ignore|nl_after_do=add|nl_after_do=remove|nl_after_do=force|nl_after_do=not_defined +ChoicesReadable="(555)Ignore Nl After Do|(555)Add Nl After Do|(555)Remove Nl After Do|(555)Force Nl After Do" +ValueDefault=ignore + +[Nl Before Ignore After Case] +Category=3 +Description="(556)Ignore nl_before_{if,for,switch,do,synchronized} if the control
statement is immediately after a case statement.
if nl_before_{if,for,switch,do} is set to remove, this option
does nothing." +Enabled=false +EditorType=boolean +TrueFalse=nl_before_ignore_after_case=true|nl_before_ignore_after_case=false +ValueDefault=false + +[Nl Before Return] +Category=3 +Description="(557)Whether to put a blank line before 'return' statements, unless after an open
brace." +Enabled=false +EditorType=boolean +TrueFalse=nl_before_return=true|nl_before_return=false +ValueDefault=false + +[Nl After Return] +Category=3 +Description="(558)Whether to put a blank line after 'return' statements, unless followed by a
close brace." +Enabled=false +EditorType=boolean +TrueFalse=nl_after_return=true|nl_after_return=false +ValueDefault=false + +[Nl Before Member] +Category=3 +Description="(559)Whether to put a blank line before a member '.' or '->' operators." +Enabled=false +EditorType=multiple +Choices=nl_before_member=ignore|nl_before_member=add|nl_before_member=remove|nl_before_member=force|nl_before_member=not_defined +ChoicesReadable="(559)Ignore Nl Before Member|(559)Add Nl Before Member|(559)Remove Nl Before Member|(559)Force Nl Before Member" +ValueDefault=ignore + +[Nl After Member] +Category=3 +Description="(560)(Java) Whether to put a blank line after a member '.' or '->' operators." +Enabled=false +EditorType=multiple +Choices=nl_after_member=ignore|nl_after_member=add|nl_after_member=remove|nl_after_member=force|nl_after_member=not_defined +ChoicesReadable="(560)Ignore Nl After Member|(560)Add Nl After Member|(560)Remove Nl After Member|(560)Force Nl After Member" +ValueDefault=ignore + +[Nl Ds Struct Enum Cmt] +Category=3 +Description="(561)Whether to double-space commented-entries in 'struct'/'union'/'enum'." +Enabled=false +EditorType=boolean +TrueFalse=nl_ds_struct_enum_cmt=true|nl_ds_struct_enum_cmt=false +ValueDefault=false + +[Nl Ds Struct Enum Close Brace] +Category=3 +Description="(562)Whether to force a newline before '}' of a 'struct'/'union'/'enum'.
(Lower priority than eat_blanks_before_close_brace.)" +Enabled=false +EditorType=boolean +TrueFalse=nl_ds_struct_enum_close_brace=true|nl_ds_struct_enum_close_brace=false +ValueDefault=false + +[Nl Class Colon] +Category=3 +Description="(563)Add or remove newline before or after (depending on pos_class_colon) a class
colon, as in 'class Foo <here> : <or here> public Bar'." +Enabled=false +EditorType=multiple +Choices=nl_class_colon=ignore|nl_class_colon=add|nl_class_colon=remove|nl_class_colon=force|nl_class_colon=not_defined +ChoicesReadable="(563)Ignore Nl Class Colon|(563)Add Nl Class Colon|(563)Remove Nl Class Colon|(563)Force Nl Class Colon" +ValueDefault=ignore + +[Nl Constr Colon] +Category=3 +Description="(564)Add or remove newline around a class constructor colon. The exact position
depends on nl_constr_init_args, pos_constr_colon and pos_constr_comma." +Enabled=false +EditorType=multiple +Choices=nl_constr_colon=ignore|nl_constr_colon=add|nl_constr_colon=remove|nl_constr_colon=force|nl_constr_colon=not_defined +ChoicesReadable="(564)Ignore Nl Constr Colon|(564)Add Nl Constr Colon|(564)Remove Nl Constr Colon|(564)Force Nl Constr Colon" +ValueDefault=ignore + +[Nl Namespace Two To One Liner] +Category=3 +Description="(565)Whether to collapse a two-line namespace, like 'namespace foo\n{ decl; }'
into a single line. If true, prevents other brace newline rules from turning
such code into four lines. If true, it also preserves one-liner namespaces." +Enabled=false +EditorType=boolean +TrueFalse=nl_namespace_two_to_one_liner=true|nl_namespace_two_to_one_liner=false +ValueDefault=false + +[Nl Create If One Liner] +Category=3 +Description="(566)Whether to remove a newline in simple unbraced if statements, turning them
into one-liners, as in 'if(b)\n i++;' => 'if(b) i++;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_create_if_one_liner=true|nl_create_if_one_liner=false +ValueDefault=false + +[Nl Create For One Liner] +Category=3 +Description="(567)Whether to remove a newline in simple unbraced for statements, turning them
into one-liners, as in 'for (...)\n stmt;' => 'for (...) stmt;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_create_for_one_liner=true|nl_create_for_one_liner=false +ValueDefault=false + +[Nl Create While One Liner] +Category=3 +Description="(568)Whether to remove a newline in simple unbraced while statements, turning
them into one-liners, as in 'while (expr)\n stmt;' => 'while (expr) stmt;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_create_while_one_liner=true|nl_create_while_one_liner=false +ValueDefault=false + +[Nl Create Func Def One Liner] +Category=3 +Description="(569)Whether to collapse a function definition whose body (not counting braces)
is only one line so that the entire definition (prototype, braces, body) is
a single line." +Enabled=false +EditorType=boolean +TrueFalse=nl_create_func_def_one_liner=true|nl_create_func_def_one_liner=false +ValueDefault=false + +[Nl Create List One Liner] +Category=3 +Description="(570)Whether to split one-line simple list definitions into three lines by
adding newlines, as in 'int a[12] = { <here> 0 <here> };'." +Enabled=false +EditorType=boolean +TrueFalse=nl_create_list_one_liner=true|nl_create_list_one_liner=false +ValueDefault=false + +[Nl Split If One Liner] +Category=3 +Description="(571)Whether to split one-line simple unbraced if statements into two lines by
adding a newline, as in 'if(b) <here> i++;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_split_if_one_liner=true|nl_split_if_one_liner=false +ValueDefault=false + +[Nl Split For One Liner] +Category=3 +Description="(572)Whether to split one-line simple unbraced for statements into two lines by
adding a newline, as in 'for (...) <here> stmt;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_split_for_one_liner=true|nl_split_for_one_liner=false +ValueDefault=false + +[Nl Split While One Liner] +Category=3 +Description="(573)Whether to split one-line simple unbraced while statements into two lines by
adding a newline, as in 'while (expr) <here> stmt;'." +Enabled=false +EditorType=boolean +TrueFalse=nl_split_while_one_liner=true|nl_split_while_one_liner=false +ValueDefault=false + +[Donot Add Nl Before Cpp Comment] Category=3 -Description="The span for aligning struct initializer values (0=don't align)" +Description="(574)Don't add a newline before a cpp-comment in a parameter list of a function
call." Enabled=false -EditorType=numeric -CallName="align_struct_init_span=" -MinVal=0 -MaxVal=5000 -ValueDefault=0 +EditorType=boolean +TrueFalse=donot_add_nl_before_cpp_comment=true|donot_add_nl_before_cpp_comment=false +ValueDefault=false -[Align Typedef Gap] -Category=3 -Description="The minimum space between the type and the synonym of a typedef" +[Nl Max] +Category=4 +Description="(575)The maximum number of consecutive newlines (3 = 2 blank lines)." Enabled=false EditorType=numeric -CallName="align_typedef_gap=" +CallName="nl_max=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Typedef Span] -Category=3 -Description="The span for aligning single-line typedefs (0=don't align)" +[Nl Max Blank In Func] +Category=4 +Description="(576)The maximum number of consecutive newlines in a function." Enabled=false EditorType=numeric -CallName="align_typedef_span=" +CallName="nl_max_blank_in_func=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Typedef Func] -Category=3 -Description="How to align typedef'd functions with other typedefs
0: Don't mix them at all
1: align the open paren with the types
2: align the function type name with the other type names" +[Nl Inside Empty Func] +Category=4 +Description="(577)The number of newlines inside an empty function body.
This option overrides eat_blanks_after_open_brace and
eat_blanks_before_close_brace, but is ignored when
nl_collapse_empty_body_functions=true" Enabled=false EditorType=numeric -CallName="align_typedef_func=" +CallName="nl_inside_empty_func=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Typedef Star Style] -Category=3 -Description="Controls the positioning of the '*' in typedefs. Just try it.
0: Align on typedef type, ignore '*'
1: The '*' is part of type name: typedef int *pint;
2: The '*' is part of the type, but dangling: typedef int *pint;" +[Nl Before Func Body Proto] +Category=4 +Description="(578)The number of newlines before a function prototype." Enabled=false EditorType=numeric -CallName="align_typedef_star_style=" +CallName="nl_before_func_body_proto=" MinVal=0 -MaxVal=2 +MaxVal=16 ValueDefault=0 -[Align Typedef Amp Style] -Category=3 -Description="Controls the positioning of the '&' in typedefs. Just try it.
0: Align on typedef type, ignore '&'
1: The '&' is part of type name: typedef int &pint;
2: The '&' is part of the type, but dangling: typedef int &pint;" +[Nl Before Func Body Def] +Category=4 +Description="(579)The number of newlines before a multi-line function definition. Where
applicable, this option is overridden with eat_blanks_after_open_brace=true" Enabled=false EditorType=numeric -CallName="align_typedef_amp_style=" +CallName="nl_before_func_body_def=" MinVal=0 -MaxVal=2 +MaxVal=16 ValueDefault=0 -[Align Right Cmt Span] -Category=3 -Description="The span for aligning comments that end lines (0=don't align)" +[Nl Before Func Class Proto] +Category=4 +Description="(580)The number of newlines before a class constructor/destructor prototype." Enabled=false EditorType=numeric -CallName="align_right_cmt_span=" +CallName="nl_before_func_class_proto=" MinVal=0 -MaxVal=5000 -ValueDefault=0 - -[Align Right Cmt Mix] -Category=3 -Description="If aligning comments, mix with comments after '}' and #endif with less than 3 spaces before the comment" -Enabled=false -EditorType=boolean -TrueFalse=align_right_cmt_mix=true|align_right_cmt_mix=false +MaxVal=16 ValueDefault=0 -[Align Right Cmt Gap] -Category=3 -Description="If a trailing comment is more than this number of columns away from the text it follows,
it will qualify for being aligned. This has to be > 0 to do anything." +[Nl Before Func Class Def] +Category=4 +Description="(581)The number of newlines before a class constructor/destructor definition." Enabled=false EditorType=numeric -CallName="align_right_cmt_gap=" +CallName="nl_before_func_class_def=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Right Cmt At Col] -Category=3 -Description="Align trailing comment at or beyond column N; 'pulls in' comments as a bonus side effect (0=ignore)" +[Nl After Func Proto] +Category=4 +Description="(582)The number of newlines after a function prototype." Enabled=false EditorType=numeric -CallName="align_right_cmt_at_col=" +CallName="nl_after_func_proto=" MinVal=0 -MaxVal=200 +MaxVal=16 ValueDefault=0 -[Align Func Proto Span] -Category=3 -Description="The span for aligning function prototypes (0=don't align)" +[Nl After Func Proto Group] +Category=4 +Description="(583)The number of newlines after a function prototype, if not followed by
another function prototype." Enabled=false EditorType=numeric -CallName="align_func_proto_span=" +CallName="nl_after_func_proto_group=" MinVal=0 -MaxVal=5000 +MaxVal=16 ValueDefault=0 -[Align Func Proto Gap] -Category=3 -Description="Minimum gap between the return type and the function name." +[Nl After Func Class Proto] +Category=4 +Description="(584)The number of newlines after a class constructor/destructor prototype." Enabled=false EditorType=numeric -CallName="align_func_proto_gap=" +CallName="nl_after_func_class_proto=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align On Operator] -Category=3 -Description="Align function protos on the 'operator' keyword instead of what follows" -Enabled=false -EditorType=boolean -TrueFalse=align_on_operator=true|align_on_operator=false -ValueDefault=0 - -[Align Mix Var Proto] -Category=3 -Description="Whether to mix aligning prototype and variable declarations.
If true, align_var_def_XXX options are used instead of align_func_proto_XXX options." -Enabled=false -EditorType=boolean -TrueFalse=align_mix_var_proto=true|align_mix_var_proto=false -ValueDefault=0 - -[Align Single Line Func] -Category=3 -Description="Align single-line functions with function prototypes, uses align_func_proto_span" +[Nl After Func Class Proto Group] +Category=4 +Description="(585)The number of newlines after a class constructor/destructor prototype,
if not followed by another constructor/destructor prototype." Enabled=false -EditorType=boolean -TrueFalse=align_single_line_func=true|align_single_line_func=false +EditorType=numeric +CallName="nl_after_func_class_proto_group=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Align Single Line Brace] -Category=3 -Description="Aligning the open brace of single-line functions.
Requires align_single_line_func=true, uses align_func_proto_span" +[Nl Class Leave One Liner Groups] +Category=4 +Description="(586)Whether one-line method definitions inside a class body should be treated
as if they were prototypes for the purposes of adding newlines.

Requires nl_class_leave_one_liners=true. Overrides nl_before_func_body_def
and nl_before_func_class_def for one-liners." Enabled=false EditorType=boolean -TrueFalse=align_single_line_brace=true|align_single_line_brace=false -ValueDefault=0 +TrueFalse=nl_class_leave_one_liner_groups=true|nl_class_leave_one_liner_groups=false +ValueDefault=false -[Align Single Line Brace Gap] -Category=3 -Description="Gap for align_single_line_brace.
" +[Nl After Func Body] +Category=4 +Description="(587)The number of newlines after '}' of a multi-line function body." Enabled=false EditorType=numeric -CallName="align_single_line_brace_gap=" +CallName="nl_after_func_body=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Oc Msg Spec Span] -Category=3 -Description="The span for aligning ObjC msg spec (0=don't align)" +[Nl After Func Body Class] +Category=4 +Description="(588)The number of newlines after '}' of a multi-line function body in a class
declaration. Also affects class constructors/destructors.

Overrides nl_after_func_body." Enabled=false EditorType=numeric -CallName="align_oc_msg_spec_span=" +CallName="nl_after_func_body_class=" MinVal=0 -MaxVal=5000 +MaxVal=16 ValueDefault=0 -[Align Nl Cont] -Category=3 -Description="Whether to align macros wrapped with a backslash and a newline.
This will not work right if the macro contains a multi-line comment." +[Nl After Func Body One Liner] +Category=4 +Description="(589)The number of newlines after '}' of a single line function body. Also
affects class constructors/destructors.

Overrides nl_after_func_body and nl_after_func_body_class." Enabled=false -EditorType=boolean -TrueFalse=align_nl_cont=true|align_nl_cont=false +EditorType=numeric +CallName="nl_after_func_body_one_liner=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Align Pp Define Gap] -Category=3 -Description="The minimum space between label and value of a preprocessor define" +[Nl Typedef Blk Start] +Category=4 +Description="(590)The number of newlines before a block of typedefs. If nl_after_access_spec
is non-zero, that option takes precedence.

0: No change (default)." Enabled=false EditorType=numeric -CallName="align_pp_define_gap=" +CallName="nl_typedef_blk_start=" MinVal=0 MaxVal=16 ValueDefault=0 -[Align Pp Define Span] -Category=3 -Description="The span for aligning on '#define' bodies (0=don't align)" +[Nl Typedef Blk End] +Category=4 +Description="(591)The number of newlines after a block of typedefs.

0: No change (default)." Enabled=false EditorType=numeric -CallName="align_pp_define_span=" +CallName="nl_typedef_blk_end=" MinVal=0 -MaxVal=5000 +MaxVal=16 ValueDefault=0 -[Align Left Shift] -Category=3 -Description="Align lines that start with '<<' with previous '<<'. Default=true" -Enabled=false -EditorType=boolean -TrueFalse=align_left_shift=true|align_left_shift=false -ValueDefault=1 - -[Align Oc Msg Colon Span] -Category=3 -Description="Span for aligning parameters in an Obj-C message call on the ':' (0=don't align)" +[Nl Typedef Blk In] +Category=4 +Description="(592)The maximum number of consecutive newlines within a block of typedefs.

0: No change (default)." Enabled=false EditorType=numeric -CallName="align_oc_msg_colon_span=" -MinVal=5000 +CallName="nl_typedef_blk_in=" +MinVal=0 MaxVal=16 ValueDefault=0 -[Align Oc Decl Colon] -Category=3 -Description="Aligning parameters in an Obj-C '+' or '-' declaration on the ':'" +[Nl Var Def Blk End Func Top] +Category=4 +Description="(593)The minimum number of blank lines after a block of variable definitions
at the top of a function body. If any preprocessor directives appear
between the opening brace of the function and the variable block, then
it is considered as not at the top of the function.Newlines are added
before trailing preprocessor directives, if any exist.

0: No change (default)." Enabled=false -EditorType=boolean -TrueFalse=align_oc_decl_colon=true|align_oc_decl_colon=false +EditorType=numeric +CallName="nl_var_def_blk_end_func_top=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Collapse Empty Body] +[Nl Var Def Blk Start] Category=4 -Description="Whether to collapse empty blocks between '{' and '}'" +Description="(594)The minimum number of empty newlines before a block of variable definitions
not at the top of a function body. If nl_after_access_spec is non-zero,
that option takes precedence. Newlines are not added at the top of the
file or just after an opening brace. Newlines are added above any
preprocessor directives before the block.

0: No change (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_collapse_empty_body=true|nl_collapse_empty_body=false +EditorType=numeric +CallName="nl_var_def_blk_start=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Assign Leave One Liners] +[Nl Var Def Blk End] Category=4 -Description="Don't split one-line braced assignments - 'foo_t f = { 1, 2 };'" +Description="(595)The minimum number of empty newlines after a block of variable definitions
not at the top of a function body. Newlines are not added if the block
is at the bottom of the file or just before a preprocessor directive.

0: No change (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_assign_leave_one_liners=true|nl_assign_leave_one_liners=false +EditorType=numeric +CallName="nl_var_def_blk_end=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Class Leave One Liners] +[Nl Var Def Blk In] Category=4 -Description="Don't split one-line braced statements inside a class xx { } body" +Description="(596)The maximum number of consecutive newlines within a block of variable
definitions.

0: No change (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_class_leave_one_liners=true|nl_class_leave_one_liners=false +EditorType=numeric +CallName="nl_var_def_blk_in=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Enum Leave One Liners] +[Nl Before Block Comment] Category=4 -Description="Don't split one-line enums: 'enum foo { BAR = 15 };'" +Description="(597)The minimum number of newlines before a multi-line comment.
Doesn't apply if after a brace open or another multi-line comment." Enabled=false -EditorType=boolean -TrueFalse=nl_enum_leave_one_liners=true|nl_enum_leave_one_liners=false +EditorType=numeric +CallName="nl_before_block_comment=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Getset Leave One Liners] +[Nl Before C Comment] Category=4 -Description="Don't split one-line get or set functions" +Description="(598)The minimum number of newlines before a single-line C comment.
Doesn't apply if after a brace open or other single-line C comments." Enabled=false -EditorType=boolean -TrueFalse=nl_getset_leave_one_liners=true|nl_getset_leave_one_liners=false +EditorType=numeric +CallName="nl_before_c_comment=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Leave One Liners] +[Nl Before Cpp Comment] Category=4 -Description="Don't split one-line function definitions - 'int foo() { return 0; }'" +Description="(599)The minimum number of newlines before a CPP comment.
Doesn't apply if after a brace open or other CPP comments." Enabled=false -EditorType=boolean -TrueFalse=nl_func_leave_one_liners=true|nl_func_leave_one_liners=false +EditorType=numeric +CallName="nl_before_cpp_comment=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl If Leave One Liners] +[Nl After Multiline Comment] Category=4 -Description="Don't split one-line if/else statements - 'if(a) b++;'" +Description="(600)Whether to force a newline after a multi-line comment." Enabled=false EditorType=boolean -TrueFalse=nl_if_leave_one_liners=true|nl_if_leave_one_liners=false -ValueDefault=0 +TrueFalse=nl_after_multiline_comment=true|nl_after_multiline_comment=false +ValueDefault=false -[Nl Start Of File] +[Nl After Label Colon] Category=4 -Description="Add or remove newlines at the start of the file" +Description="(601)Whether to force a newline after a label's colon." Enabled=false -EditorType=multiple -Choices="nl_start_of_file=ignore|nl_start_of_file=add|nl_start_of_file=remove|nl_start_of_file=force" -ChoicesReadable="Ignore Nl Start Of File|Add Nl Start Of File|Remove Nl Start Of File|Force Nl Start Of File" -ValueDefault=0 +EditorType=boolean +TrueFalse=nl_after_label_colon=true|nl_after_label_colon=false +ValueDefault=false -[Nl Start Of File Min] +[Nl Before Struct] Category=4 -Description="The number of newlines at the start of the file (only used if nl_start_of_file is 'add' or 'force'" +Description="(602)The number of newlines before a struct definition." Enabled=false EditorType=numeric -CallName="nl_start_of_file_min=" +CallName="nl_before_struct=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl End Of File] +[Nl After Struct] Category=4 -Description="Add or remove newline at the end of the file" +Description="(603)The number of newlines after '}' or ';' of a struct/enum/union definition." Enabled=false -EditorType=multiple -Choices="nl_end_of_file=ignore|nl_end_of_file=add|nl_end_of_file=remove|nl_end_of_file=force" -ChoicesReadable="Ignore Nl End Of File|Add Nl End Of File|Remove Nl End Of File|Force Nl End Of File" +EditorType=numeric +CallName="nl_after_struct=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl End Of File Min] +[Nl Before Class] Category=4 -Description="The number of newlines at the end of the file (only used if nl_end_of_file is 'add' or 'force')" +Description="(604)The number of newlines before a class definition." Enabled=false EditorType=numeric -CallName="nl_end_of_file_min=" +CallName="nl_before_class=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl Assign Brace] +[Nl After Class] Category=4 -Description="Add or remove newline between '=' and '{'" +Description="(605)The number of newlines after '}' or ';' of a class definition." Enabled=false -EditorType=multiple -Choices="nl_assign_brace=ignore|nl_assign_brace=add|nl_assign_brace=remove|nl_assign_brace=force" -ChoicesReadable="Ignore Nl Assign Brace|Add Nl Assign Brace|Remove Nl Assign Brace|Force Nl Assign Brace" +EditorType=numeric +CallName="nl_after_class=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Assign Square] +[Nl Before Namespace] Category=4 -Description="Add or remove newline between '=' and '[' (D only)" +Description="(606)The number of newlines before a namespace." Enabled=false -EditorType=multiple -Choices="nl_assign_square=ignore|nl_assign_square=add|nl_assign_square=remove|nl_assign_square=force" -ChoicesReadable="Ignore Nl Assign Square|Add Nl Assign Square|Remove Nl Assign Square|Force Nl Assign Square" +EditorType=numeric +CallName="nl_before_namespace=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl After Square Assign] +[Nl Inside Namespace] Category=4 -Description="Add or remove newline after '= [' (D only). Will also affect the newline before the ']'" +Description="(607)The number of newlines after '{' of a namespace. This also adds newlines
before the matching '}'.

0: Apply eat_blanks_after_open_brace or eat_blanks_before_close_brace if
applicable, otherwise no change.

Overrides eat_blanks_after_open_brace and eat_blanks_before_close_brace." Enabled=false -EditorType=multiple -Choices="nl_after_square_assign=ignore|nl_after_square_assign=add|nl_after_square_assign=remove|nl_after_square_assign=force" -ChoicesReadable="Ignore Nl After Square Assign|Add Nl After Square Assign|Remove Nl After Square Assign|Force Nl After Square Assign" +EditorType=numeric +CallName="nl_inside_namespace=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Var Def Blk] +[Nl After Namespace] Category=4 -Description="The number of blank lines after a block of variable definitions at the top of a function body.
0=no change (default)" +Description="(608)The number of newlines after '}' of a namespace." Enabled=false EditorType=numeric -CallName="nl_func_var_def_blk=" +CallName="nl_after_namespace=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl Fcall Brace] +[Nl Before Access Spec] Category=4 -Description="Add or remove newline between a function call's ')' and '{', as in:
list_for_each(item, &list) { }" +Description="(609)The number of newlines before an access specifier label. This also includes
the Qt-specific 'signals:' and 'slots:'. Will not change the newline count
if after a brace open.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_fcall_brace=ignore|nl_fcall_brace=add|nl_fcall_brace=remove|nl_fcall_brace=force" -ChoicesReadable="Ignore Nl Fcall Brace|Add Nl Fcall Brace|Remove Nl Fcall Brace|Force Nl Fcall Brace" +EditorType=numeric +CallName="nl_before_access_spec=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Enum Brace] +[Nl After Access Spec] Category=4 -Description="Add or remove newline between 'enum' and '{'" +Description="(610)The number of newlines after an access specifier label. This also includes
the Qt-specific 'signals:' and 'slots:'. Will not change the newline count
if after a brace open.

0: No change (default).

Overrides nl_typedef_blk_start and nl_var_def_blk_start." Enabled=false -EditorType=multiple -Choices="nl_enum_brace=ignore|nl_enum_brace=add|nl_enum_brace=remove|nl_enum_brace=force" -ChoicesReadable="Ignore Nl Enum Brace|Add Nl Enum Brace|Remove Nl Enum Brace|Force Nl Enum Brace" +EditorType=numeric +CallName="nl_after_access_spec=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Struct Brace] +[Nl Comment Func Def] Category=4 -Description="Add or remove newline between 'struct and '{'" +Description="(611)The number of newlines between a function definition and the function
comment, as in '// comment\n <here> void foo() {...}'.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_struct_brace=ignore|nl_struct_brace=add|nl_struct_brace=remove|nl_struct_brace=force" -ChoicesReadable="Ignore Nl Struct Brace|Add Nl Struct Brace|Remove Nl Struct Brace|Force Nl Struct Brace" +EditorType=numeric +CallName="nl_comment_func_def=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Union Brace] +[Nl After Try Catch Finally] Category=4 -Description="Add or remove newline between 'union' and '{'" +Description="(612)The number of newlines after a try-catch-finally block that isn't followed
by a brace close.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_union_brace=ignore|nl_union_brace=add|nl_union_brace=remove|nl_union_brace=force" -ChoicesReadable="Ignore Nl Union Brace|Add Nl Union Brace|Remove Nl Union Brace|Force Nl Union Brace" +EditorType=numeric +CallName="nl_after_try_catch_finally=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl If Brace] +[Nl Around Cs Property] Category=4 -Description="Add or remove newline between 'if' and '{'" +Description="(613)(C#) The number of newlines before and after a property, indexer or event
declaration.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_if_brace=ignore|nl_if_brace=add|nl_if_brace=remove|nl_if_brace=force" -ChoicesReadable="Ignore Nl If Brace|Add Nl If Brace|Remove Nl If Brace|Force Nl If Brace" +EditorType=numeric +CallName="nl_around_cs_property=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Brace Else] +[Nl Between Get Set] Category=4 -Description="Add or remove newline between '}' and 'else'" +Description="(614)(C#) The number of newlines between the get/set/add/remove handlers.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_brace_else=ignore|nl_brace_else=add|nl_brace_else=remove|nl_brace_else=force" -ChoicesReadable="Ignore Nl Brace Else|Add Nl Brace Else|Remove Nl Brace Else|Force Nl Brace Else" +EditorType=numeric +CallName="nl_between_get_set=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Elseif Brace] +[Nl Property Brace] Category=4 -Description="Add or remove newline between 'else if' and '{'
If set to ignore, nl_if_brace is used instead" +Description="(615)(C#) Add or remove newline between property and the '{'." Enabled=false EditorType=multiple -Choices="nl_elseif_brace=ignore|nl_elseif_brace=add|nl_elseif_brace=remove|nl_elseif_brace=force" -ChoicesReadable="Ignore Nl Elseif Brace|Add Nl Elseif Brace|Remove Nl Elseif Brace|Force Nl Elseif Brace" -ValueDefault=0 +Choices=nl_property_brace=ignore|nl_property_brace=add|nl_property_brace=remove|nl_property_brace=force|nl_property_brace=not_defined +ChoicesReadable="(615)Ignore Nl Property Brace|(615)Add Nl Property Brace|(615)Remove Nl Property Brace|(615)Force Nl Property Brace" +ValueDefault=ignore -[Nl Else Brace] +[Eat Blanks After Open Brace] Category=4 -Description="Add or remove newline between 'else' and '{'" +Description="(616)Whether to remove blank lines after '{'." Enabled=false -EditorType=multiple -Choices="nl_else_brace=ignore|nl_else_brace=add|nl_else_brace=remove|nl_else_brace=force" -ChoicesReadable="Ignore Nl Else Brace|Add Nl Else Brace|Remove Nl Else Brace|Force Nl Else Brace" -ValueDefault=0 +EditorType=boolean +TrueFalse=eat_blanks_after_open_brace=true|eat_blanks_after_open_brace=false +ValueDefault=false -[Nl Else If] +[Eat Blanks Before Close Brace] Category=4 -Description="Add or remove newline between 'else' and 'if'" +Description="(617)Whether to remove blank lines before '}'." Enabled=false -EditorType=multiple -Choices="nl_else_if=ignore|nl_else_if=add|nl_else_if=remove|nl_else_if=force" -ChoicesReadable="Ignore Nl Else If|Add Nl Else If|Remove Nl Else If|Force Nl Else If" -ValueDefault=0 +EditorType=boolean +TrueFalse=eat_blanks_before_close_brace=true|eat_blanks_before_close_brace=false +ValueDefault=false -[Nl Brace Finally] +[Nl Remove Extra Newlines] Category=4 -Description="Add or remove newline between '}' and 'finally'" +Description="(618)How aggressively to remove extra newlines not in preprocessor.

0: No change (default)
1: Remove most newlines not handled by other config
2: Remove all newlines and reformat completely by config" Enabled=false -EditorType=multiple -Choices="nl_brace_finally=ignore|nl_brace_finally=add|nl_brace_finally=remove|nl_brace_finally=force" -ChoicesReadable="Ignore Nl Brace Finally|Add Nl Brace Finally|Remove Nl Brace Finally|Force Nl Brace Finally" +EditorType=numeric +CallName="nl_remove_extra_newlines=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Finally Brace] +[Nl After Annotation] Category=4 -Description="Add or remove newline between 'finally' and '{'" +Description="(619)(Java) Add or remove newline after an annotation statement. Only affects
annotations that are after a newline." Enabled=false EditorType=multiple -Choices="nl_finally_brace=ignore|nl_finally_brace=add|nl_finally_brace=remove|nl_finally_brace=force" -ChoicesReadable="Ignore Nl Finally Brace|Add Nl Finally Brace|Remove Nl Finally Brace|Force Nl Finally Brace" -ValueDefault=0 +Choices=nl_after_annotation=ignore|nl_after_annotation=add|nl_after_annotation=remove|nl_after_annotation=force|nl_after_annotation=not_defined +ChoicesReadable="(619)Ignore Nl After Annotation|(619)Add Nl After Annotation|(619)Remove Nl After Annotation|(619)Force Nl After Annotation" +ValueDefault=ignore -[Nl Try Brace] +[Nl Between Annotation] Category=4 -Description="Add or remove newline between 'try' and '{'" +Description="(620)(Java) Add or remove newline between two annotations." Enabled=false EditorType=multiple -Choices="nl_try_brace=ignore|nl_try_brace=add|nl_try_brace=remove|nl_try_brace=force" -ChoicesReadable="Ignore Nl Try Brace|Add Nl Try Brace|Remove Nl Try Brace|Force Nl Try Brace" -ValueDefault=0 +Choices=nl_between_annotation=ignore|nl_between_annotation=add|nl_between_annotation=remove|nl_between_annotation=force|nl_between_annotation=not_defined +ChoicesReadable="(620)Ignore Nl Between Annotation|(620)Add Nl Between Annotation|(620)Remove Nl Between Annotation|(620)Force Nl Between Annotation" +ValueDefault=ignore -[Nl Getset Brace] +[Nl Before Whole File Ifdef] Category=4 -Description="Add or remove newline between get/set and '{'" +Description="(621)The number of newlines before a whole-file #ifdef.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_getset_brace=ignore|nl_getset_brace=add|nl_getset_brace=remove|nl_getset_brace=force" -ChoicesReadable="Ignore Nl Getset Brace|Add Nl Getset Brace|Remove Nl Getset Brace|Force Nl Getset Brace" +EditorType=numeric +CallName="nl_before_whole_file_ifdef=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl For Brace] +[Nl After Whole File Ifdef] Category=4 -Description="Add or remove newline between 'for' and '{'" +Description="(622)The number of newlines after a whole-file #ifdef.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_for_brace=ignore|nl_for_brace=add|nl_for_brace=remove|nl_for_brace=force" -ChoicesReadable="Ignore Nl For Brace|Add Nl For Brace|Remove Nl For Brace|Force Nl For Brace" +EditorType=numeric +CallName="nl_after_whole_file_ifdef=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Catch Brace] +[Nl Before Whole File Endif] Category=4 -Description="Add or remove newline between 'catch' and '{'" +Description="(623)The number of newlines before a whole-file #endif.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_catch_brace=ignore|nl_catch_brace=add|nl_catch_brace=remove|nl_catch_brace=force" -ChoicesReadable="Ignore Nl Catch Brace|Add Nl Catch Brace|Remove Nl Catch Brace|Force Nl Catch Brace" +EditorType=numeric +CallName="nl_before_whole_file_endif=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Brace Catch] +[Nl After Whole File Endif] Category=4 -Description="Add or remove newline between '}' and 'catch'" +Description="(624)The number of newlines after a whole-file #endif.

0: No change (default)." Enabled=false -EditorType=multiple -Choices="nl_brace_catch=ignore|nl_brace_catch=add|nl_brace_catch=remove|nl_brace_catch=force" -ChoicesReadable="Ignore Nl Brace Catch|Add Nl Brace Catch|Remove Nl Brace Catch|Force Nl Brace Catch" +EditorType=numeric +CallName="nl_after_whole_file_endif=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl While Brace] -Category=4 -Description="Add or remove newline between 'while' and '{'" +[Pos Arith] +Category=5 +Description="(625)The position of arithmetic operators in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_while_brace=ignore|nl_while_brace=add|nl_while_brace=remove|nl_while_brace=force" -ChoicesReadable="Ignore Nl While Brace|Add Nl While Brace|Remove Nl While Brace|Force Nl While Brace" -ValueDefault=0 +Choices=pos_arith=ignore|pos_arith=break|pos_arith=force|pos_arith=lead|pos_arith=trail|pos_arith=join|pos_arith=lead_break|pos_arith=lead_force|pos_arith=trail_break|pos_arith=trail_force +ChoicesReadable="(625)Ignore Pos Arith|(625)Break Pos Arith|(625)Force Pos Arith|(625)Lead Pos Arith|(625)Trail Pos Arith|(625)Join Pos Arith|(625)Lead Break Pos Arith|(625)Lead Force Pos Arith|(625)Trail Break Pos Arith|(625)Trail Force Pos Arith" +ValueDefault=ignore -[Nl Using Brace] -Category=4 -Description="Add or remove newline between 'using' and '{'" +[Pos Assign] +Category=5 +Description="(626)The position of assignment in wrapped expressions. Do not affect '='
followed by '{'." Enabled=false EditorType=multiple -Choices="nl_using_brace=ignore|nl_using_brace=add|nl_using_brace=remove|nl_using_brace=force" -ChoicesReadable="Ignore Nl Using Brace|Add Nl Using Brace|Remove Nl Using Brace|Force Nl Using Brace" -ValueDefault=0 +Choices=pos_assign=ignore|pos_assign=break|pos_assign=force|pos_assign=lead|pos_assign=trail|pos_assign=join|pos_assign=lead_break|pos_assign=lead_force|pos_assign=trail_break|pos_assign=trail_force +ChoicesReadable="(626)Ignore Pos Assign|(626)Break Pos Assign|(626)Force Pos Assign|(626)Lead Pos Assign|(626)Trail Pos Assign|(626)Join Pos Assign|(626)Lead Break Pos Assign|(626)Lead Force Pos Assign|(626)Trail Break Pos Assign|(626)Trail Force Pos Assign" +ValueDefault=ignore -[Nl Brace Brace] -Category=4 -Description="Add or remove newline between two open or close braces.
Due to general newline/brace handling, REMOVE may not work." +[Pos Bool] +Category=5 +Description="(627)The position of Boolean operators in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_brace_brace=ignore|nl_brace_brace=add|nl_brace_brace=remove|nl_brace_brace=force" -ChoicesReadable="Ignore Nl Brace Brace|Add Nl Brace Brace|Remove Nl Brace Brace|Force Nl Brace Brace" -ValueDefault=0 +Choices=pos_bool=ignore|pos_bool=break|pos_bool=force|pos_bool=lead|pos_bool=trail|pos_bool=join|pos_bool=lead_break|pos_bool=lead_force|pos_bool=trail_break|pos_bool=trail_force +ChoicesReadable="(627)Ignore Pos Bool|(627)Break Pos Bool|(627)Force Pos Bool|(627)Lead Pos Bool|(627)Trail Pos Bool|(627)Join Pos Bool|(627)Lead Break Pos Bool|(627)Lead Force Pos Bool|(627)Trail Break Pos Bool|(627)Trail Force Pos Bool" +ValueDefault=ignore -[Nl Do Brace] -Category=4 -Description="Add or remove newline between 'do' and '{'" +[Pos Compare] +Category=5 +Description="(628)The position of comparison operators in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_do_brace=ignore|nl_do_brace=add|nl_do_brace=remove|nl_do_brace=force" -ChoicesReadable="Ignore Nl Do Brace|Add Nl Do Brace|Remove Nl Do Brace|Force Nl Do Brace" -ValueDefault=0 +Choices=pos_compare=ignore|pos_compare=break|pos_compare=force|pos_compare=lead|pos_compare=trail|pos_compare=join|pos_compare=lead_break|pos_compare=lead_force|pos_compare=trail_break|pos_compare=trail_force +ChoicesReadable="(628)Ignore Pos Compare|(628)Break Pos Compare|(628)Force Pos Compare|(628)Lead Pos Compare|(628)Trail Pos Compare|(628)Join Pos Compare|(628)Lead Break Pos Compare|(628)Lead Force Pos Compare|(628)Trail Break Pos Compare|(628)Trail Force Pos Compare" +ValueDefault=ignore -[Nl Brace While] -Category=4 -Description="Add or remove newline between '}' and 'while' of 'do' statement" +[Pos Conditional] +Category=5 +Description="(629)The position of conditional operators, as in the '?' and ':' of
'expr ? stmt : stmt', in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_brace_while=ignore|nl_brace_while=add|nl_brace_while=remove|nl_brace_while=force" -ChoicesReadable="Ignore Nl Brace While|Add Nl Brace While|Remove Nl Brace While|Force Nl Brace While" -ValueDefault=0 +Choices=pos_conditional=ignore|pos_conditional=break|pos_conditional=force|pos_conditional=lead|pos_conditional=trail|pos_conditional=join|pos_conditional=lead_break|pos_conditional=lead_force|pos_conditional=trail_break|pos_conditional=trail_force +ChoicesReadable="(629)Ignore Pos Conditional|(629)Break Pos Conditional|(629)Force Pos Conditional|(629)Lead Pos Conditional|(629)Trail Pos Conditional|(629)Join Pos Conditional|(629)Lead Break Pos Conditional|(629)Lead Force Pos Conditional|(629)Trail Break Pos Conditional|(629)Trail Force Pos Conditional" +ValueDefault=ignore -[Nl Switch Brace] -Category=4 -Description="Add or remove newline between 'switch' and '{'" +[Pos Comma] +Category=5 +Description="(630)The position of the comma in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_switch_brace=ignore|nl_switch_brace=add|nl_switch_brace=remove|nl_switch_brace=force" -ChoicesReadable="Ignore Nl Switch Brace|Add Nl Switch Brace|Remove Nl Switch Brace|Force Nl Switch Brace" -ValueDefault=0 +Choices=pos_comma=ignore|pos_comma=break|pos_comma=force|pos_comma=lead|pos_comma=trail|pos_comma=join|pos_comma=lead_break|pos_comma=lead_force|pos_comma=trail_break|pos_comma=trail_force +ChoicesReadable="(630)Ignore Pos Comma|(630)Break Pos Comma|(630)Force Pos Comma|(630)Lead Pos Comma|(630)Trail Pos Comma|(630)Join Pos Comma|(630)Lead Break Pos Comma|(630)Lead Force Pos Comma|(630)Trail Break Pos Comma|(630)Trail Force Pos Comma" +ValueDefault=ignore -[Nl Multi Line Cond] -Category=4 -Description="Add a newline between ')' and '{' if the ')' is on a different line than the if/for/etc.
Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch, and nl_catch_brace." +[Pos Enum Comma] +Category=5 +Description="(631)The position of the comma in enum entries." Enabled=false -EditorType=boolean -TrueFalse=nl_multi_line_cond=true|nl_multi_line_cond=false -ValueDefault=0 +EditorType=multiple +Choices=pos_enum_comma=ignore|pos_enum_comma=break|pos_enum_comma=force|pos_enum_comma=lead|pos_enum_comma=trail|pos_enum_comma=join|pos_enum_comma=lead_break|pos_enum_comma=lead_force|pos_enum_comma=trail_break|pos_enum_comma=trail_force +ChoicesReadable="(631)Ignore Pos Enum Comma|(631)Break Pos Enum Comma|(631)Force Pos Enum Comma|(631)Lead Pos Enum Comma|(631)Trail Pos Enum Comma|(631)Join Pos Enum Comma|(631)Lead Break Pos Enum Comma|(631)Lead Force Pos Enum Comma|(631)Trail Break Pos Enum Comma|(631)Trail Force Pos Enum Comma" +ValueDefault=ignore -[Nl Multi Line Define] -Category=4 -Description="Force a newline in a define after the macro name for multi-line defines." +[Pos Class Comma] +Category=5 +Description="(632)The position of the comma in the base class list if there is more than one
line. Affects nl_class_init_args." Enabled=false -EditorType=boolean -TrueFalse=nl_multi_line_define=true|nl_multi_line_define=false -ValueDefault=0 +EditorType=multiple +Choices=pos_class_comma=ignore|pos_class_comma=break|pos_class_comma=force|pos_class_comma=lead|pos_class_comma=trail|pos_class_comma=join|pos_class_comma=lead_break|pos_class_comma=lead_force|pos_class_comma=trail_break|pos_class_comma=trail_force +ChoicesReadable="(632)Ignore Pos Class Comma|(632)Break Pos Class Comma|(632)Force Pos Class Comma|(632)Lead Pos Class Comma|(632)Trail Pos Class Comma|(632)Join Pos Class Comma|(632)Lead Break Pos Class Comma|(632)Lead Force Pos Class Comma|(632)Trail Break Pos Class Comma|(632)Trail Force Pos Class Comma" +ValueDefault=ignore -[Nl Before Case] -Category=4 -Description="Whether to put a newline before 'case' statement" +[Pos Constr Comma] +Category=5 +Description="(633)The position of the comma in the constructor initialization list.
Related to nl_constr_colon, nl_constr_init_args and pos_constr_colon." Enabled=false -EditorType=boolean -TrueFalse=nl_before_case=true|nl_before_case=false -ValueDefault=0 +EditorType=multiple +Choices=pos_constr_comma=ignore|pos_constr_comma=break|pos_constr_comma=force|pos_constr_comma=lead|pos_constr_comma=trail|pos_constr_comma=join|pos_constr_comma=lead_break|pos_constr_comma=lead_force|pos_constr_comma=trail_break|pos_constr_comma=trail_force +ChoicesReadable="(633)Ignore Pos Constr Comma|(633)Break Pos Constr Comma|(633)Force Pos Constr Comma|(633)Lead Pos Constr Comma|(633)Trail Pos Constr Comma|(633)Join Pos Constr Comma|(633)Lead Break Pos Constr Comma|(633)Lead Force Pos Constr Comma|(633)Trail Break Pos Constr Comma|(633)Trail Force Pos Constr Comma" +ValueDefault=ignore -[Nl Before Throw] -Category=4 -Description="Add or remove newline between ')' and 'throw'" +[Pos Class Colon] +Category=5 +Description="(634)The position of trailing/leading class colon, between class and base class
list. Affects nl_class_colon." Enabled=false EditorType=multiple -Choices="nl_before_throw=ignore|nl_before_throw=add|nl_before_throw=remove|nl_before_throw=force" -ChoicesReadable="Ignore Nl Before Throw|Add Nl Before Throw|Remove Nl Before Throw|Force Nl Before Throw" -ValueDefault=0 +Choices=pos_class_colon=ignore|pos_class_colon=break|pos_class_colon=force|pos_class_colon=lead|pos_class_colon=trail|pos_class_colon=join|pos_class_colon=lead_break|pos_class_colon=lead_force|pos_class_colon=trail_break|pos_class_colon=trail_force +ChoicesReadable="(634)Ignore Pos Class Colon|(634)Break Pos Class Colon|(634)Force Pos Class Colon|(634)Lead Pos Class Colon|(634)Trail Pos Class Colon|(634)Join Pos Class Colon|(634)Lead Break Pos Class Colon|(634)Lead Force Pos Class Colon|(634)Trail Break Pos Class Colon|(634)Trail Force Pos Class Colon" +ValueDefault=ignore -[Nl After Case] -Category=4 -Description="Whether to put a newline after 'case' statement" +[Pos Constr Colon] +Category=5 +Description="(635)The position of colons between constructor and member initialization.
Related to nl_constr_colon, nl_constr_init_args and pos_constr_comma." Enabled=false -EditorType=boolean -TrueFalse=nl_after_case=true|nl_after_case=false -ValueDefault=0 +EditorType=multiple +Choices=pos_constr_colon=ignore|pos_constr_colon=break|pos_constr_colon=force|pos_constr_colon=lead|pos_constr_colon=trail|pos_constr_colon=join|pos_constr_colon=lead_break|pos_constr_colon=lead_force|pos_constr_colon=trail_break|pos_constr_colon=trail_force +ChoicesReadable="(635)Ignore Pos Constr Colon|(635)Break Pos Constr Colon|(635)Force Pos Constr Colon|(635)Lead Pos Constr Colon|(635)Trail Pos Constr Colon|(635)Join Pos Constr Colon|(635)Lead Break Pos Constr Colon|(635)Lead Force Pos Constr Colon|(635)Trail Break Pos Constr Colon|(635)Trail Force Pos Constr Colon" +ValueDefault=ignore -[Nl Case Colon Brace] -Category=4 -Description="Add or remove a newline between a case ':' and '{'. Overrides nl_after_case." +[Pos Shift] +Category=5 +Description="(636)The position of shift operators in wrapped expressions." Enabled=false EditorType=multiple -Choices="nl_case_colon_brace=ignore|nl_case_colon_brace=add|nl_case_colon_brace=remove|nl_case_colon_brace=force" -ChoicesReadable="Ignore Nl Case Colon Brace|Add Nl Case Colon Brace|Remove Nl Case Colon Brace|Force Nl Case Colon Brace" -ValueDefault=0 +Choices=pos_shift=ignore|pos_shift=break|pos_shift=force|pos_shift=lead|pos_shift=trail|pos_shift=join|pos_shift=lead_break|pos_shift=lead_force|pos_shift=trail_break|pos_shift=trail_force +ChoicesReadable="(636)Ignore Pos Shift|(636)Break Pos Shift|(636)Force Pos Shift|(636)Lead Pos Shift|(636)Trail Pos Shift|(636)Join Pos Shift|(636)Lead Break Pos Shift|(636)Lead Force Pos Shift|(636)Trail Break Pos Shift|(636)Trail Force Pos Shift" +ValueDefault=ignore -[Nl Namespace Brace] -Category=4 -Description="Newline between namespace and {" +[Code Width] +Category=6 +Description="(637)Try to limit code width to N columns." Enabled=false -EditorType=multiple -Choices="nl_namespace_brace=ignore|nl_namespace_brace=add|nl_namespace_brace=remove|nl_namespace_brace=force" -ChoicesReadable="Ignore Nl Namespace Brace|Add Nl Namespace Brace|Remove Nl Namespace Brace|Force Nl Namespace Brace" +EditorType=numeric +CallName="code_width=" +MinVal=0 +MaxVal=10000 ValueDefault=0 -[Nl Template Class] -Category=4 -Description="Add or remove newline between 'template<>' and whatever follows." +[Ls For Split Full] +Category=6 +Description="(638)Whether to fully split long 'for' statements at semi-colons." Enabled=false -EditorType=multiple -Choices="nl_template_class=ignore|nl_template_class=add|nl_template_class=remove|nl_template_class=force" -ChoicesReadable="Ignore Nl Template Class|Add Nl Template Class|Remove Nl Template Class|Force Nl Template Class" -ValueDefault=0 +EditorType=boolean +TrueFalse=ls_for_split_full=true|ls_for_split_full=false +ValueDefault=false -[Nl Class Brace] -Category=4 -Description="Add or remove newline between 'class' and '{'" +[Ls Func Split Full] +Category=6 +Description="(639)Whether to fully split long function prototypes/calls at commas.
The option ls_code_width has priority over the option ls_func_split_full." Enabled=false -EditorType=multiple -Choices="nl_class_brace=ignore|nl_class_brace=add|nl_class_brace=remove|nl_class_brace=force" -ChoicesReadable="Ignore Nl Class Brace|Add Nl Class Brace|Remove Nl Class Brace|Force Nl Class Brace" -ValueDefault=0 +EditorType=boolean +TrueFalse=ls_func_split_full=true|ls_func_split_full=false +ValueDefault=false -[Nl Class Init Args] -Category=4 -Description="Add or remove newline after each ',' in the constructor member initialization" +[Ls Code Width] +Category=6 +Description="(640)Whether to split lines as close to code_width as possible and ignore some
groupings.
The option ls_code_width has priority over the option ls_func_split_full." Enabled=false -EditorType=multiple -Choices="nl_class_init_args=ignore|nl_class_init_args=add|nl_class_init_args=remove|nl_class_init_args=force" -ChoicesReadable="Ignore Nl Class Init Args|Add Nl Class Init Args|Remove Nl Class Init Args|Force Nl Class Init Args" -ValueDefault=0 +EditorType=boolean +TrueFalse=ls_code_width=true|ls_code_width=false +ValueDefault=false -[Nl Func Type Name] -Category=4 -Description="Add or remove newline between return type and function name in a function definition" +[Align Keep Tabs] +Category=7 +Description="(641)Whether to keep non-indenting tabs." Enabled=false -EditorType=multiple -Choices="nl_func_type_name=ignore|nl_func_type_name=add|nl_func_type_name=remove|nl_func_type_name=force" -ChoicesReadable="Ignore Nl Func Type Name|Add Nl Func Type Name|Remove Nl Func Type Name|Force Nl Func Type Name" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_keep_tabs=true|align_keep_tabs=false +ValueDefault=false -[Nl Func Type Name Class] -Category=4 -Description="Add or remove newline between return type and function name inside a class {}
Uses nl_func_type_name or nl_func_proto_type_name if set to ignore." +[Align With Tabs] +Category=7 +Description="(642)Whether to use tabs for aligning." Enabled=false -EditorType=multiple -Choices="nl_func_type_name_class=ignore|nl_func_type_name_class=add|nl_func_type_name_class=remove|nl_func_type_name_class=force" -ChoicesReadable="Ignore Nl Func Type Name Class|Add Nl Func Type Name Class|Remove Nl Func Type Name Class|Force Nl Func Type Name Class" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_with_tabs=true|align_with_tabs=false +ValueDefault=false -[Nl Func Scope Name] -Category=4 -Description="Add or remove newline between function scope and name in a definition
Controls the newline after '::' in 'void A::f() { }'" +[Align On Tabstop] +Category=7 +Description="(643)Whether to bump out to the next tab when aligning." Enabled=false -EditorType=multiple -Choices="nl_func_scope_name=ignore|nl_func_scope_name=add|nl_func_scope_name=remove|nl_func_scope_name=force" -ChoicesReadable="Ignore Nl Func Scope Name|Add Nl Func Scope Name|Remove Nl Func Scope Name|Force Nl Func Scope Name" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_on_tabstop=true|align_on_tabstop=false +ValueDefault=false -[Nl Func Proto Type Name] -Category=4 -Description="Add or remove newline between return type and function name in a prototype" +[Align Number Right] +Category=7 +Description="(644)Whether to right-align numbers." Enabled=false -EditorType=multiple -Choices="nl_func_proto_type_name=ignore|nl_func_proto_type_name=add|nl_func_proto_type_name=remove|nl_func_proto_type_name=force" -ChoicesReadable="Ignore Nl Func Proto Type Name|Add Nl Func Proto Type Name|Remove Nl Func Proto Type Name|Force Nl Func Proto Type Name" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_number_right=true|align_number_right=false +ValueDefault=false -[Nl Func Paren] -Category=4 -Description="Add or remove newline between a function name and the opening '('" +[Align Keep Extra Space] +Category=7 +Description="(645)Whether to keep whitespace not required for alignment." Enabled=false -EditorType=multiple -Choices="nl_func_paren=ignore|nl_func_paren=add|nl_func_paren=remove|nl_func_paren=force" -ChoicesReadable="Ignore Nl Func Paren|Add Nl Func Paren|Remove Nl Func Paren|Force Nl Func Paren" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_keep_extra_space=true|align_keep_extra_space=false +ValueDefault=false -[Nl Func Def Paren] -Category=4 -Description="Add or remove newline between a function name and the opening '(' in the definition" +[Align Func Params] +Category=7 +Description="(646)Whether to align variable definitions in prototypes and functions." Enabled=false -EditorType=multiple -Choices="nl_func_def_paren=ignore|nl_func_def_paren=add|nl_func_def_paren=remove|nl_func_def_paren=force" -ChoicesReadable="Ignore Nl Func Def Paren|Add Nl Func Def Paren|Remove Nl Func Def Paren|Force Nl Func Def Paren" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_func_params=true|align_func_params=false +ValueDefault=false -[Nl Func Decl Start] -Category=4 -Description="Add or remove newline after '(' in a function declaration" +[Align Func Params Span] +Category=7 +Description="(647)The span for aligning parameter definitions in function on parameter name.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_func_decl_start=ignore|nl_func_decl_start=add|nl_func_decl_start=remove|nl_func_decl_start=force" -ChoicesReadable="Ignore Nl Func Decl Start|Add Nl Func Decl Start|Remove Nl Func Decl Start|Force Nl Func Decl Start" +EditorType=numeric +CallName="align_func_params_span=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Def Start] -Category=4 -Description="Add or remove newline after '(' in a function definition" +[Align Func Params Thresh] +Category=7 +Description="(648)The threshold for aligning function parameter definitions.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_func_def_start=ignore|nl_func_def_start=add|nl_func_def_start=remove|nl_func_def_start=force" -ChoicesReadable="Ignore Nl Func Def Start|Add Nl Func Def Start|Remove Nl Func Def Start|Force Nl Func Def Start" +EditorType=numeric +CallName="align_func_params_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Func Decl Start Single] -Category=4 -Description="Overrides nl_func_decl_start when there is only one parameter." +[Align Func Params Gap] +Category=7 +Description="(649)The gap for aligning function parameter definitions." Enabled=false -EditorType=multiple -Choices="nl_func_decl_start_single=ignore|nl_func_decl_start_single=add|nl_func_decl_start_single=remove|nl_func_decl_start_single=force" -ChoicesReadable="Ignore Nl Func Decl Start Single|Add Nl Func Decl Start Single|Remove Nl Func Decl Start Single|Force Nl Func Decl Start Single" +EditorType=numeric +CallName="align_func_params_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Def Start Single] -Category=4 -Description="Overrides nl_func_def_start when there is only one parameter." +[Align Constr Value Span] +Category=7 +Description="(650)The span for aligning constructor value.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_func_def_start_single=ignore|nl_func_def_start_single=add|nl_func_def_start_single=remove|nl_func_def_start_single=force" -ChoicesReadable="Ignore Nl Func Def Start Single|Add Nl Func Def Start Single|Remove Nl Func Def Start Single|Force Nl Func Def Start Single" +EditorType=numeric +CallName="align_constr_value_span=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Decl Args] -Category=4 -Description="Add or remove newline after each ',' in a function declaration" +[Align Constr Value Thresh] +Category=7 +Description="(651)The threshold for aligning constructor value.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_func_decl_args=ignore|nl_func_decl_args=add|nl_func_decl_args=remove|nl_func_decl_args=force" -ChoicesReadable="Ignore Nl Func Decl Args|Add Nl Func Decl Args|Remove Nl Func Decl Args|Force Nl Func Decl Args" +EditorType=numeric +CallName="align_constr_value_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Func Def Args] -Category=4 -Description="Add or remove newline after each ',' in a function definition" +[Align Constr Value Gap] +Category=7 +Description="(652)The gap for aligning constructor value." Enabled=false -EditorType=multiple -Choices="nl_func_def_args=ignore|nl_func_def_args=add|nl_func_def_args=remove|nl_func_def_args=force" -ChoicesReadable="Ignore Nl Func Def Args|Add Nl Func Def Args|Remove Nl Func Def Args|Force Nl Func Def Args" +EditorType=numeric +CallName="align_constr_value_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Func Decl End] -Category=4 -Description="Add or remove newline before the ')' in a function declaration" +[Align Same Func Call Params] +Category=7 +Description="(653)Whether to align parameters in single-line functions that have the same
name. The function names must already be aligned with each other." Enabled=false -EditorType=multiple -Choices="nl_func_decl_end=ignore|nl_func_decl_end=add|nl_func_decl_end=remove|nl_func_decl_end=force" -ChoicesReadable="Ignore Nl Func Decl End|Add Nl Func Decl End|Remove Nl Func Decl End|Force Nl Func Decl End" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_same_func_call_params=true|align_same_func_call_params=false +ValueDefault=false -[Nl Func Def End] -Category=4 -Description="Add or remove newline before the ')' in a function definition" +[Align Same Func Call Params Span] +Category=7 +Description="(654)The span for aligning function-call parameters for single line functions.

0: Don't align (default)." +Enabled=false +EditorType=numeric +CallName="align_same_func_call_params_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Same Func Call Params Thresh] +Category=7 +Description="(655)The threshold for aligning function-call parameters for single line
functions.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_func_def_end=ignore|nl_func_def_end=add|nl_func_def_end=remove|nl_func_def_end=force" -ChoicesReadable="Ignore Nl Func Def End|Add Nl Func Def End|Remove Nl Func Def End|Force Nl Func Def End" +EditorType=numeric +CallName="align_same_func_call_params_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Func Decl End Single] -Category=4 -Description="Overrides nl_func_decl_end when there is only one parameter." +[Align Var Def Span] +Category=7 +Description="(656)The span for aligning variable definitions.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_func_decl_end_single=ignore|nl_func_decl_end_single=add|nl_func_decl_end_single=remove|nl_func_decl_end_single=force" -ChoicesReadable="Ignore Nl Func Decl End Single|Add Nl Func Decl End Single|Remove Nl Func Decl End Single|Force Nl Func Decl End Single" +EditorType=numeric +CallName="align_var_def_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl Func Def End Single] -Category=4 -Description="Overrides nl_func_def_end when there is only one parameter." +[Align Var Def Star Style] +Category=7 +Description="(657)How to consider (or treat) the '*' in the alignment of variable definitions.

0: Part of the type 'void * foo;' (default)
1: Part of the variable 'void *foo;'
2: Dangling 'void *foo;'
Dangling: the '*' will not be taken into account when aligning." Enabled=false -EditorType=multiple -Choices="nl_func_def_end_single=ignore|nl_func_def_end_single=add|nl_func_def_end_single=remove|nl_func_def_end_single=force" -ChoicesReadable="Ignore Nl Func Def End Single|Add Nl Func Def End Single|Remove Nl Func Def End Single|Force Nl Func Def End Single" +EditorType=numeric +CallName="align_var_def_star_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Func Decl Empty] -Category=4 -Description="Add or remove newline between '()' in a function declaration." +[Align Var Def Amp Style] +Category=7 +Description="(658)How to consider (or treat) the '&' in the alignment of variable definitions.

0: Part of the type 'long & foo;' (default)
1: Part of the variable 'long &foo;'
2: Dangling 'long &foo;'
Dangling: the '&' will not be taken into account when aligning." Enabled=false -EditorType=multiple -Choices="nl_func_decl_empty=ignore|nl_func_decl_empty=add|nl_func_decl_empty=remove|nl_func_decl_empty=force" -ChoicesReadable="Ignore Nl Func Decl Empty|Add Nl Func Decl Empty|Remove Nl Func Decl Empty|Force Nl Func Decl Empty" +EditorType=numeric +CallName="align_var_def_amp_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Func Def Empty] -Category=4 -Description="Add or remove newline between '()' in a function definition." +[Align Var Def Thresh] +Category=7 +Description="(659)The threshold for aligning variable definitions.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_func_def_empty=ignore|nl_func_def_empty=add|nl_func_def_empty=remove|nl_func_def_empty=force" -ChoicesReadable="Ignore Nl Func Def Empty|Add Nl Func Def Empty|Remove Nl Func Def Empty|Force Nl Func Def Empty" +EditorType=numeric +CallName="align_var_def_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Fdef Brace] -Category=4 -Description="Add or remove newline between function signature and '{'" +[Align Var Def Gap] +Category=7 +Description="(660)The gap for aligning variable definitions." Enabled=false -EditorType=multiple -Choices="nl_fdef_brace=ignore|nl_fdef_brace=add|nl_fdef_brace=remove|nl_fdef_brace=force" -ChoicesReadable="Ignore Nl Fdef Brace|Add Nl Fdef Brace|Remove Nl Fdef Brace|Force Nl Fdef Brace" +EditorType=numeric +CallName="align_var_def_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl After Return] -Category=4 -Description="Whether to put a newline after 'return' statement" +[Align Var Def Colon] +Category=7 +Description="(661)Whether to align the colon in struct bit fields." Enabled=false EditorType=boolean -TrueFalse=nl_after_return=true|nl_after_return=false -ValueDefault=0 +TrueFalse=align_var_def_colon=true|align_var_def_colon=false +ValueDefault=false -[Nl Return Expr] -Category=4 -Description="Add or remove a newline between the return keyword and return expression." +[Align Var Def Colon Gap] +Category=7 +Description="(662)The gap for aligning the colon in struct bit fields." Enabled=false -EditorType=multiple -Choices="nl_return_expr=ignore|nl_return_expr=add|nl_return_expr=remove|nl_return_expr=force" -ChoicesReadable="Ignore Nl Return Expr|Add Nl Return Expr|Remove Nl Return Expr|Force Nl Return Expr" +EditorType=numeric +CallName="align_var_def_colon_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl After Semicolon] -Category=4 -Description="Whether to put a newline after semicolons, except in 'for' statements" +[Align Var Def Attribute] +Category=7 +Description="(663)Whether to align any attribute after the variable name." Enabled=false EditorType=boolean -TrueFalse=nl_after_semicolon=true|nl_after_semicolon=false -ValueDefault=0 +TrueFalse=align_var_def_attribute=true|align_var_def_attribute=false +ValueDefault=false -[Nl After Brace Open] -Category=4 -Description="Whether to put a newline after brace open.
This also adds a newline before the matching brace close." +[Align Var Def Inline] +Category=7 +Description="(664)Whether to align inline struct/enum/union variable definitions." Enabled=false EditorType=boolean -TrueFalse=nl_after_brace_open=true|nl_after_brace_open=false -ValueDefault=0 +TrueFalse=align_var_def_inline=true|align_var_def_inline=false +ValueDefault=false -[Nl After Brace Open Cmt] -Category=4 -Description="If nl_after_brace_open and nl_after_brace_open_cmt are true, a newline is
placed between the open brace and a trailing single-line comment." +[Align Assign Span] +Category=7 +Description="(665)The span for aligning on '=' in assignments.

0: Don't align (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_after_brace_open_cmt=true|nl_after_brace_open_cmt=false +EditorType=numeric +CallName="align_assign_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl After Vbrace Open] -Category=4 -Description="Whether to put a newline after a virtual brace open with a non-empty body.
These occur in un-braced if/while/do/for statement bodies." +[Align Assign Func Proto Span] +Category=7 +Description="(666)The span for aligning on '=' in function prototype modifier.

0: Don't align (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_after_vbrace_open=true|nl_after_vbrace_open=false +EditorType=numeric +CallName="align_assign_func_proto_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl After Vbrace Open Empty] -Category=4 -Description="Whether to put a newline after a virtual brace open with an empty body.
These occur in un-braced if/while/do/for statement bodies." +[Align Assign Thresh] +Category=7 +Description="(667)The threshold for aligning on '=' in assignments.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_after_vbrace_open_empty=true|nl_after_vbrace_open_empty=false +EditorType=numeric +CallName="align_assign_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl After Brace Close] -Category=4 -Description="Whether to put a newline after a brace close.
Does not apply if followed by a necessary ';'." +[Align Assign On Multi Var Defs] +Category=7 +Description="(668)Whether to align on the left most assignment when multiple
definitions are found on the same line.
Depends on 'align_assign_span' and 'align_assign_thresh' settings." Enabled=false EditorType=boolean -TrueFalse=nl_after_brace_close=true|nl_after_brace_close=false +TrueFalse=align_assign_on_multi_var_defs=true|align_assign_on_multi_var_defs=false +ValueDefault=false + +[Align Braced Init List Span] +Category=7 +Description="(669)The span for aligning on '{' in braced init list.

0: Don't align (default)." +Enabled=false +EditorType=numeric +CallName="align_braced_init_list_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl After Vbrace Close] -Category=4 -Description="Whether to put a newline after a virtual brace close.
Would add a newline before return in: 'if (foo) a++; return;'" +[Align Braced Init List Thresh] +Category=7 +Description="(670)The threshold for aligning on '{' in braced init list.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_after_vbrace_close=true|nl_after_vbrace_close=false +EditorType=numeric +CallName="align_braced_init_list_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Define Macro] -Category=4 -Description="Whether to alter newlines in '#define' macros" +[Align Assign Decl Func] +Category=7 +Description="(671)How to apply align_assign_span to function declaration "assignments", i.e.
'virtual void foo() = 0' or '~foo() = {default|delete}'.

0: Align with other assignments (default)
1: Align with each other, ignoring regular assignments
2: Don't align" Enabled=false -EditorType=boolean -TrueFalse=nl_define_macro=true|nl_define_macro=false +EditorType=numeric +CallName="align_assign_decl_func=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Squeeze Ifdef] -Category=4 -Description="Whether to not put blanks after '#ifxx', '#elxx', or before '#endif'" +[Align Enum Equ Span] +Category=7 +Description="(672)The span for aligning on '=' in enums.

0: Don't align (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_squeeze_ifdef=true|nl_squeeze_ifdef=false +EditorType=numeric +CallName="align_enum_equ_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl Before If] -Category=4 -Description="Add or remove blank line before 'if'" +[Align Enum Equ Thresh] +Category=7 +Description="(673)The threshold for aligning on '=' in enums.
Use a negative number for absolute thresholds.

0: no limit (default)." Enabled=false -EditorType=multiple -Choices="nl_before_if=ignore|nl_before_if=add|nl_before_if=remove|nl_before_if=force" -ChoicesReadable="Ignore Nl Before If|Add Nl Before If|Remove Nl Before If|Force Nl Before If" +EditorType=numeric +CallName="align_enum_equ_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl After If] -Category=4 -Description="Add or remove blank line after 'if' statement" +[Align Var Class Span] +Category=7 +Description="(674)The span for aligning class member definitions.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_after_if=ignore|nl_after_if=add|nl_after_if=remove|nl_after_if=force" -ChoicesReadable="Ignore Nl After If|Add Nl After If|Remove Nl After If|Force Nl After If" +EditorType=numeric +CallName="align_var_class_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl Before For] -Category=4 -Description="Add or remove blank line before 'for'" +[Align Var Class Thresh] +Category=7 +Description="(675)The threshold for aligning class member definitions.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_before_for=ignore|nl_before_for=add|nl_before_for=remove|nl_before_for=force" -ChoicesReadable="Ignore Nl Before For|Add Nl Before For|Remove Nl Before For|Force Nl Before For" +EditorType=numeric +CallName="align_var_class_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl After For] -Category=4 -Description="Add or remove blank line after 'for' statement" +[Align Var Class Gap] +Category=7 +Description="(676)The gap for aligning class member definitions." Enabled=false -EditorType=multiple -Choices="nl_after_for=ignore|nl_after_for=add|nl_after_for=remove|nl_after_for=force" -ChoicesReadable="Ignore Nl After For|Add Nl After For|Remove Nl After For|Force Nl After For" +EditorType=numeric +CallName="align_var_class_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Before While] -Category=4 -Description="Add or remove blank line before 'while'" +[Align Var Struct Span] +Category=7 +Description="(677)The span for aligning struct/union member definitions.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_before_while=ignore|nl_before_while=add|nl_before_while=remove|nl_before_while=force" -ChoicesReadable="Ignore Nl Before While|Add Nl Before While|Remove Nl Before While|Force Nl Before While" +EditorType=numeric +CallName="align_var_struct_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl After While] -Category=4 -Description="Add or remove blank line after 'while' statement" +[Align Var Struct Thresh] +Category=7 +Description="(678)The threshold for aligning struct/union member definitions.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="nl_after_while=ignore|nl_after_while=add|nl_after_while=remove|nl_after_while=force" -ChoicesReadable="Ignore Nl After While|Add Nl After While|Remove Nl After While|Force Nl After While" +EditorType=numeric +CallName="align_var_struct_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Nl Before Switch] -Category=4 -Description="Add or remove blank line before 'switch'" +[Align Var Struct Gap] +Category=7 +Description="(679)The gap for aligning struct/union member definitions." Enabled=false -EditorType=multiple -Choices="nl_before_switch=ignore|nl_before_switch=add|nl_before_switch=remove|nl_before_switch=force" -ChoicesReadable="Ignore Nl Before Switch|Add Nl Before Switch|Remove Nl Before Switch|Force Nl Before Switch" +EditorType=numeric +CallName="align_var_struct_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl After Switch] -Category=4 -Description="Add or remove blank line after 'switch' statement" +[Align Struct Init Span] +Category=7 +Description="(680)The span for aligning struct initializer values.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_after_switch=ignore|nl_after_switch=add|nl_after_switch=remove|nl_after_switch=force" -ChoicesReadable="Ignore Nl After Switch|Add Nl After Switch|Remove Nl After Switch|Force Nl After Switch" +EditorType=numeric +CallName="align_struct_init_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl Before Do] -Category=4 -Description="Add or remove blank line before 'do'" +[Align Typedef Span] +Category=7 +Description="(681)The span for aligning single-line typedefs.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="nl_before_do=ignore|nl_before_do=add|nl_before_do=remove|nl_before_do=force" -ChoicesReadable="Ignore Nl Before Do|Add Nl Before Do|Remove Nl Before Do|Force Nl Before Do" +EditorType=numeric +CallName="align_typedef_span=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl After Do] -Category=4 -Description="Add or remove blank line after 'do/while' statement" +[Align Typedef Gap] +Category=7 +Description="(682)The minimum space between the type and the synonym of a typedef." Enabled=false -EditorType=multiple -Choices="nl_after_do=ignore|nl_after_do=add|nl_after_do=remove|nl_after_do=force" -ChoicesReadable="Ignore Nl After Do|Add Nl After Do|Remove Nl After Do|Force Nl After Do" +EditorType=numeric +CallName="align_typedef_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Ds Struct Enum Cmt] -Category=4 -Description="Whether to double-space commented-entries in struct/enum" +[Align Typedef Func] +Category=7 +Description="(683)How to align typedef'd functions with other typedefs.

0: Don't mix them at all (default)
1: Align the open parenthesis with the types
2: Align the function type name with the other type names" Enabled=false -EditorType=boolean -TrueFalse=nl_ds_struct_enum_cmt=true|nl_ds_struct_enum_cmt=false +EditorType=numeric +CallName="align_typedef_func=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Ds Struct Enum Close Brace] -Category=4 -Description="Whether to double-space before the close brace of a struct/union/enum
(lower priority than 'eat_blanks_before_close_brace')" +[Align Typedef Star Style] +Category=7 +Description="(684)How to consider (or treat) the '*' in the alignment of typedefs.

0: Part of the typedef type, 'typedef int * pint;' (default)
1: Part of type name: 'typedef int *pint;'
2: Dangling: 'typedef int *pint;'
Dangling: the '*' will not be taken into account when aligning." Enabled=false -EditorType=boolean -TrueFalse=nl_ds_struct_enum_close_brace=true|nl_ds_struct_enum_close_brace=false +EditorType=numeric +CallName="align_typedef_star_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Class Colon] -Category=4 -Description="Add or remove a newline around a class colon.
Related to pos_class_colon, nl_class_init_args, and pos_comma." +[Align Typedef Amp Style] +Category=7 +Description="(685)How to consider (or treat) the '&' in the alignment of typedefs.

0: Part of the typedef type, 'typedef int & intref;' (default)
1: Part of type name: 'typedef int &intref;'
2: Dangling: 'typedef int &intref;'
Dangling: the '&' will not be taken into account when aligning." Enabled=false -EditorType=multiple -Choices="nl_class_colon=ignore|nl_class_colon=add|nl_class_colon=remove|nl_class_colon=force" -ChoicesReadable="Ignore Nl Class Colon|Add Nl Class Colon|Remove Nl Class Colon|Force Nl Class Colon" +EditorType=numeric +CallName="align_typedef_amp_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Create If One Liner] -Category=4 -Description="Change simple unbraced if statements into a one-liner
'if(b)\n i++;' => 'if(b) i++;'" +[Align Right Cmt Span] +Category=7 +Description="(686)The span for aligning comments that end lines.

0: Don't align (default)." Enabled=false -EditorType=boolean -TrueFalse=nl_create_if_one_liner=true|nl_create_if_one_liner=false +EditorType=numeric +CallName="align_right_cmt_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Nl Create For One Liner] -Category=4 -Description="Change simple unbraced for statements into a one-liner
'for (i=0;i<5;i++)\n foo(i);' => 'for (i=0;i<5;i++) foo(i);'" +[Align Right Cmt Gap] +Category=7 +Description="(687)Minimum number of columns between preceding text and a trailing comment in
order for the comment to qualify for being aligned. Must be non-zero to have
an effect." Enabled=false -EditorType=boolean -TrueFalse=nl_create_for_one_liner=true|nl_create_for_one_liner=false +EditorType=numeric +CallName="align_right_cmt_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Nl Create While One Liner] -Category=4 -Description="Change simple unbraced while statements into a one-liner
'while (i<5)\n foo(i++);' => 'while (i<5) foo(i++);'" +[Align Right Cmt Mix] +Category=7 +Description="(688)If aligning comments, whether to mix with comments after '}' and #endif with
less than three spaces before the comment." Enabled=false EditorType=boolean -TrueFalse=nl_create_while_one_liner=true|nl_create_while_one_liner=false -ValueDefault=0 +TrueFalse=align_right_cmt_mix=true|align_right_cmt_mix=false +ValueDefault=false -[Pos Arith] -Category=5 -Description="The position of arithmetic operators in wrapped expressions" +[Align Right Cmt Same Level] +Category=7 +Description="(689)Whether to only align trailing comments that are at the same brace level." Enabled=false -EditorType=multiple -Choices="pos_arith=ignore|pos_arith=lead|pos_arith=lead_break|pos_arith=lead_force|pos_arith=trail|pos_arith=trail_break|pos_arith=trail_force" -ChoicesReadable="Ignore Pos Arith|Lead Pos Arith|Lead Break Pos Arith|Lead Force Pos Arith|Trail Pos Arith|Trail Break Pos Arith|Trail Force Pos Arith" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_right_cmt_same_level=true|align_right_cmt_same_level=false +ValueDefault=false -[Pos Assign] -Category=5 -Description="The position of assignment in wrapped expressions.
Do not affect '=' followed by '{'" +[Align Right Cmt At Col] +Category=7 +Description="(690)Minimum column at which to align trailing comments. Comments which are
aligned beyond this column, but which can be aligned in a lesser column,
may be "pulled in".

0: Ignore (default)." Enabled=false -EditorType=multiple -Choices="pos_assign=ignore|pos_assign=lead|pos_assign=lead_break|pos_assign=lead_force|pos_assign=trail|pos_assign=trail_break|pos_assign=trail_force" -ChoicesReadable="Ignore Pos Assign|Lead Pos Assign|Lead Break Pos Assign|Lead Force Pos Assign|Trail Pos Assign|Trail Break Pos Assign|Trail Force Pos Assign" +EditorType=numeric +CallName="align_right_cmt_at_col=" +MinVal=0 +MaxVal=200 ValueDefault=0 -[Pos Bool] -Category=5 -Description="The position of boolean operators in wrapped expressions" +[Align Func Proto Span] +Category=7 +Description="(691)The span for aligning function prototypes.

0: Don't align (default)." Enabled=false -EditorType=multiple -Choices="pos_bool=ignore|pos_bool=lead|pos_bool=lead_break|pos_bool=lead_force|pos_bool=trail|pos_bool=trail_break|pos_bool=trail_force" -ChoicesReadable="Ignore Pos Bool|Lead Pos Bool|Lead Break Pos Bool|Lead Force Pos Bool|Trail Pos Bool|Trail Break Pos Bool|Trail Force Pos Bool" +EditorType=numeric +CallName="align_func_proto_span=" +MinVal=0 +MaxVal=5000 ValueDefault=0 -[Pos Compare] -Category=5 -Description="The position of comparison operators in wrapped expressions" +[Align Func Proto Star Style] +Category=7 +Description="(692)How to consider (or treat) the '*' in the alignment of function prototypes.

0: Part of the type 'void * foo();' (default)
1: Part of the function 'void *foo();'
2: Dangling 'void *foo();'
Dangling: the '*' will not be taken into account when aligning." Enabled=false -EditorType=multiple -Choices="pos_compare=ignore|pos_compare=lead|pos_compare=lead_break|pos_compare=lead_force|pos_compare=trail|pos_compare=trail_break|pos_compare=trail_force" -ChoicesReadable="Ignore Pos Compare|Lead Pos Compare|Lead Break Pos Compare|Lead Force Pos Compare|Trail Pos Compare|Trail Break Pos Compare|Trail Force Pos Compare" +EditorType=numeric +CallName="align_func_proto_star_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Pos Conditional] -Category=5 -Description="The position of conditional (b ? t : f) operators in wrapped expressions" +[Align Func Proto Amp Style] +Category=7 +Description="(693)How to consider (or treat) the '&' in the alignment of function prototypes.

0: Part of the type 'long & foo();' (default)
1: Part of the function 'long &foo();'
2: Dangling 'long &foo();'
Dangling: the '&' will not be taken into account when aligning." Enabled=false -EditorType=multiple -Choices="pos_conditional=ignore|pos_conditional=lead|pos_conditional=lead_break|pos_conditional=lead_force|pos_conditional=trail|pos_conditional=trail_break|pos_conditional=trail_force" -ChoicesReadable="Ignore Pos Conditional|Lead Pos Conditional|Lead Break Pos Conditional|Lead Force Pos Conditional|Trail Pos Conditional|Trail Break Pos Conditional|Trail Force Pos Conditional" +EditorType=numeric +CallName="align_func_proto_amp_style=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Pos Comma] -Category=5 -Description="The position of the comma in wrapped expressions" +[Align Func Proto Thresh] +Category=7 +Description="(694)The threshold for aligning function prototypes.
Use a negative number for absolute thresholds.

0: No limit (default)." Enabled=false -EditorType=multiple -Choices="pos_comma=ignore|pos_comma=lead|pos_comma=lead_break|pos_comma=lead_force|pos_comma=trail|pos_comma=trail_break|pos_comma=trail_force" -ChoicesReadable="Ignore Pos Comma|Lead Pos Comma|Lead Break Pos Comma|Lead Force Pos Comma|Trail Pos Comma|Trail Break Pos Comma|Trail Force Pos Comma" +EditorType=numeric +CallName="align_func_proto_thresh=" +MinVal=-1000 +MaxVal=5000 ValueDefault=0 -[Pos Class Comma] -Category=5 -Description="The position of the comma in the constructor initialization list" +[Align Func Proto Gap] +Category=7 +Description="(695)Minimum gap between the return type and the function name." Enabled=false -EditorType=multiple -Choices="pos_class_comma=ignore|pos_class_comma=lead|pos_class_comma=lead_break|pos_class_comma=lead_force|pos_class_comma=trail|pos_class_comma=trail_break|pos_class_comma=trail_force" -ChoicesReadable="Ignore Pos Class Comma|Lead Pos Class Comma|Lead Break Pos Class Comma|Lead Force Pos Class Comma|Trail Pos Class Comma|Trail Break Pos Class Comma|Trail Force Pos Class Comma" +EditorType=numeric +CallName="align_func_proto_gap=" +MinVal=0 +MaxVal=16 ValueDefault=0 -[Pos Class Colon] -Category=5 -Description="The position of colons between constructor and member initialization" +[Align On Operator] +Category=7 +Description="(696)Whether to align function prototypes on the 'operator' keyword instead of
what follows." Enabled=false -EditorType=multiple -Choices="pos_class_colon=ignore|pos_class_colon=lead|pos_class_colon=lead_break|pos_class_colon=lead_force|pos_class_colon=trail|pos_class_colon=trail_break|pos_class_colon=trail_force" -ChoicesReadable="Ignore Pos Class Colon|Lead Pos Class Colon|Lead Break Pos Class Colon|Lead Force Pos Class Colon|Trail Pos Class Colon|Trail Break Pos Class Colon|Trail Force Pos Class Colon" -ValueDefault=0 +EditorType=boolean +TrueFalse=align_on_operator=true|align_on_operator=false +ValueDefault=false -[Code Width] -Category=6 -Description="Try to limit code width to N number of columns" +[Align Mix Var Proto] +Category=7 +Description="(697)Whether to mix aligning prototype and variable declarations. If true,
align_var_def_XXX options are used instead of align_func_proto_XXX options." Enabled=false -EditorType=numeric -CallName="code_width=" -MinVal=16 -MaxVal=256 -ValueDefault=0 +EditorType=boolean +TrueFalse=align_mix_var_proto=true|align_mix_var_proto=false +ValueDefault=false -[Ls For Split Full] -Category=6 -Description="Whether to fully split long 'for' statements at semi-colons" +[Align Single Line Func] +Category=7 +Description="(698)Whether to align single-line functions with function prototypes.
Uses align_func_proto_span." Enabled=false EditorType=boolean -TrueFalse=ls_for_split_full=true|ls_for_split_full=false -ValueDefault=0 +TrueFalse=align_single_line_func=true|align_single_line_func=false +ValueDefault=false -[Ls Func Split Full] -Category=6 -Description="Whether to fully split long function protos/calls at commas" +[Align Single Line Brace] +Category=7 +Description="(699)Whether to align the open brace of single-line functions.
Requires align_single_line_func=true. Uses align_func_proto_span." Enabled=false EditorType=boolean -TrueFalse=ls_func_split_full=true|ls_func_split_full=false -ValueDefault=0 +TrueFalse=align_single_line_brace=true|align_single_line_brace=false +ValueDefault=false -[Nl Max] +[Align Single Line Brace Gap] Category=7 -Description="The maximum consecutive newlines" +Description="(700)Gap for align_single_line_brace." Enabled=false EditorType=numeric -CallName="nl_max=" +CallName="align_single_line_brace_gap=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl After Func Proto] +[Align Oc Msg Spec Span] Category=7 -Description="The number of newlines after a function prototype, if followed by another function prototype" +Description="(701)(OC) The span for aligning Objective-C message specifications.

0: Don't align (default)." Enabled=false EditorType=numeric -CallName="nl_after_func_proto=" +CallName="align_oc_msg_spec_span=" MinVal=0 -MaxVal=16 +MaxVal=5000 ValueDefault=0 -[Nl After Func Proto Group] +[Align Nl Cont] Category=7 -Description="The number of newlines after a function prototype, if not followed by another function prototype" +Description="(702)Whether and how to align backslashes that split a macro onto multiple lines.
This will not work right if the macro contains a multi-line comment.

0: Do nothing (default)
1: Align the backslashes in the column at the end of the longest line
2: Align with the backslash that is farthest to the left, or, if that
backslash is farther left than the end of the longest line, at the end of
the longest line
3: Align with the backslash that is farthest to the right" Enabled=false EditorType=numeric -CallName="nl_after_func_proto_group=" +CallName="align_nl_cont=" MinVal=0 -MaxVal=16 +MaxVal=3 ValueDefault=0 -[Nl After Func Body] +[Align Nl Cont Spaces] Category=7 -Description="The number of newlines after '}' of a multi-line function body" +Description="The minimum number of spaces between the end of a line and its continuation
backslash. Requires align_nl_cont.

Default: 1" Enabled=false EditorType=numeric -CallName="nl_after_func_body=" +CallName="align_nl_cont_spaces=" MinVal=0 MaxVal=16 -ValueDefault=0 +ValueDefault=1 -[Nl After Func Body Class] +[Align Pp Define Together] +Category=7 +Description="(703)Whether to align macro functions and variables together." +Enabled=false +EditorType=boolean +TrueFalse=align_pp_define_together=true|align_pp_define_together=false +ValueDefault=false + +[Align Pp Define Span] Category=7 -Description="The number of newlines after '}' of a multi-line function body in a class declaration" +Description="(704)The span for aligning on '#define' bodies.

=0: Don't align (default)
>0: Number of lines (including comments) between blocks" Enabled=false EditorType=numeric -CallName="nl_after_func_body_class=" +CallName="align_pp_define_span=" MinVal=0 -MaxVal=16 +MaxVal=5000 ValueDefault=0 -[Nl After Func Body One Liner] +[Align Pp Define Gap] Category=7 -Description="The number of newlines after '}' of a single line function body" +Description="(705)The minimum space between label and value of a preprocessor define." Enabled=false EditorType=numeric -CallName="nl_after_func_body_one_liner=" +CallName="align_pp_define_gap=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl Before Block Comment] +[Align Left Shift] +Category=7 +Description="(706)Whether to align lines that start with '<<' with previous '<<'.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=align_left_shift=true|align_left_shift=false +ValueDefault=true + +[Align Eigen Comma Init] Category=7 -Description="The minimum number of newlines before a multi-line comment.
Doesn't apply if after a brace open or another multi-line comment." +Description="(707)Whether to align comma-separated statements following '<<' (as used to
initialize Eigen matrices)." +Enabled=false +EditorType=boolean +TrueFalse=align_eigen_comma_init=true|align_eigen_comma_init=false +ValueDefault=false + +[Align Asm Colon] +Category=7 +Description="(708)Whether to align text after 'asm volatile ()' colons." +Enabled=false +EditorType=boolean +TrueFalse=align_asm_colon=true|align_asm_colon=false +ValueDefault=false + +[Align Oc Msg Colon Span] +Category=7 +Description="(709)(OC) Span for aligning parameters in an Objective-C message call
on the ':'.

0: Don't align." Enabled=false EditorType=numeric -CallName="nl_before_block_comment=" +CallName="align_oc_msg_colon_span=" MinVal=0 -MaxVal=16 +MaxVal=5000 ValueDefault=0 -[Nl Before C Comment] +[Align Oc Msg Colon First] +Category=7 +Description="(710)(OC) Whether to always align with the first parameter, even if it is too
short." +Enabled=false +EditorType=boolean +TrueFalse=align_oc_msg_colon_first=true|align_oc_msg_colon_first=false +ValueDefault=false + +[Align Oc Decl Colon] +Category=7 +Description="(711)(OC) Whether to align parameters in an Objective-C '+' or '-' declaration
on the ':'." +Enabled=false +EditorType=boolean +TrueFalse=align_oc_decl_colon=true|align_oc_decl_colon=false +ValueDefault=false + +[Align Oc Msg Colon Xcode Like] Category=7 -Description="The minimum number of newlines before a single-line C comment.
Doesn't apply if after a brace open or other single-line C comments." +Description="(712)(OC) Whether to not align parameters in an Objectve-C message call if first
colon is not on next line of the message call (the same way Xcode does
alignment)" +Enabled=false +EditorType=boolean +TrueFalse=align_oc_msg_colon_xcode_like=true|align_oc_msg_colon_xcode_like=false +ValueDefault=false + +[Cmt Width] +Category=8 +Description="(713)Try to wrap comments at N columns." Enabled=false EditorType=numeric -CallName="nl_before_c_comment=" +CallName="cmt_width=" MinVal=0 -MaxVal=16 +MaxVal=256 +ValueDefault=0 + +[Cmt Reflow Mode] +Category=8 +Description="(714)How to reflow comments.

0: No reflowing (apart from the line wrapping due to cmt_width) (default)
1: No touching at all
2: Full reflow (enable cmt_indent_multi for indent with line wrapping due to cmt_width)" +Enabled=false +EditorType=numeric +CallName="cmt_reflow_mode=" +MinVal=0 +MaxVal=2 ValueDefault=0 -[Nl Before Cpp Comment] -Category=7 -Description="The minimum number of newlines before a CPP comment.
Doesn't apply if after a brace open or other CPP comments." +[Cmt Reflow Fold Regex File] +Category=8 +Description="(715)Path to a file that contains regular expressions describing patterns for
which the end of one line and the beginning of the next will be folded into
the same sentence or paragraph during full comment reflow. The regular
expressions are described using ECMAScript syntax. The syntax for this
specification is as follows, where "..." indicates the custom regular
expression and "n" indicates the nth end_of_prev_line_regex and
beg_of_next_line_regex regular expression pair:

end_of_prev_line_regex[1] = "...$"
beg_of_next_line_regex[1] = "^..."
end_of_prev_line_regex[2] = "...$"
beg_of_next_line_regex[2] = "^..."
.
.
.
end_of_prev_line_regex[n] = "...$"
beg_of_next_line_regex[n] = "^..."

Note that use of this option overrides the default reflow fold regular
expressions, which are internally defined as follows:

end_of_prev_line_regex[1] = "[\w,\]\)]$"
beg_of_next_line_regex[1] = "^[\w,\[\(]"
end_of_prev_line_regex[2] = "\.$"
beg_of_next_line_regex[2] = "^[A-Z]"" +Enabled=false +CallName=cmt_reflow_fold_regex_file= +EditorType=string +ValueDefault= + +[Cmt Reflow Indent To Paragraph Start] +Category=8 +Description="(716)Whether to indent wrapped lines to the start of the encompassing paragraph
during full comment reflow (cmt_reflow_mode = 2). Overrides the value
specified by cmt_sp_after_star_cont.

Note that cmt_align_doxygen_javadoc_tags overrides this option for
paragraphs associated with javadoc tags" +Enabled=false +EditorType=boolean +TrueFalse=cmt_reflow_indent_to_paragraph_start=true|cmt_reflow_indent_to_paragraph_start=false +ValueDefault=false + +[Cmt Convert Tab To Spaces] +Category=8 +Description="(717)Whether to convert all tabs to spaces in comments. If false, tabs in
comments are left alone, unless used for indenting." +Enabled=false +EditorType=boolean +TrueFalse=cmt_convert_tab_to_spaces=true|cmt_convert_tab_to_spaces=false +ValueDefault=false + +[Cmt Indent Multi] +Category=8 +Description="(718)Whether to apply changes to multi-line comments, including cmt_width,
keyword substitution and leading chars.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=cmt_indent_multi=true|cmt_indent_multi=false +ValueDefault=true + +[Cmt Align Doxygen Javadoc Tags] +Category=8 +Description="(719)Whether to align doxygen javadoc-style tags ('@param', '@return', etc.)
and corresponding fields such that groups of consecutive block tags,
parameter names, and descriptions align with one another. Overrides that
which is specified by the cmt_sp_after_star_cont. If cmt_width > 0, it may
be necessary to enable cmt_indent_multi and set cmt_reflow_mode = 2
in order to achieve the desired alignment for line-wrapping." +Enabled=false +EditorType=boolean +TrueFalse=cmt_align_doxygen_javadoc_tags=true|cmt_align_doxygen_javadoc_tags=false +ValueDefault=false + +[Cmt Sp Before Doxygen Javadoc Tags] +Category=8 +Description="(720)The number of spaces to insert after the star and before doxygen
javadoc-style tags (@param, @return, etc). Requires enabling
cmt_align_doxygen_javadoc_tags. Overrides that which is specified by the
cmt_sp_after_star_cont.

Default: 1" +Enabled=false +EditorType=numeric +CallName="cmt_sp_before_doxygen_javadoc_tags=" +MinVal=0 +MaxVal=16 +ValueDefault=1 + +[Cmt Trailing Single Line C To Cpp] +Category=8 +Description="(721)Whether to change trailing, single-line c-comments into cpp-comments." +Enabled=false +EditorType=boolean +TrueFalse=cmt_trailing_single_line_c_to_cpp=true|cmt_trailing_single_line_c_to_cpp=false +ValueDefault=false + +[Cmt C Group] +Category=8 +Description="(722)Whether to group c-comments that look like they are in a block." +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_group=true|cmt_c_group=false +ValueDefault=false + +[Cmt C Nl Start] +Category=8 +Description="(723)Whether to put an empty '/*' on the first line of the combined c-comment." +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_nl_start=true|cmt_c_nl_start=false +ValueDefault=false + +[Cmt C Nl End] +Category=8 +Description="(724)Whether to add a newline before the closing '*/' of the combined c-comment." +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_nl_end=true|cmt_c_nl_end=false +ValueDefault=false + +[Cmt Cpp To C] +Category=8 +Description="(725)Whether to change cpp-comments into c-comments." +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_to_c=true|cmt_cpp_to_c=false +ValueDefault=false + +[Cmt Cpp Group] +Category=8 +Description="(726)Whether to group cpp-comments that look like they are in a block. Only
meaningful if cmt_cpp_to_c=true." +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_group=true|cmt_cpp_group=false +ValueDefault=false + +[Cmt Cpp Nl Start] +Category=8 +Description="(727)Whether to put an empty '/*' on the first line of the combined cpp-comment
when converting to a c-comment.

Requires cmt_cpp_to_c=true and cmt_cpp_group=true." +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_nl_start=true|cmt_cpp_nl_start=false +ValueDefault=false + +[Cmt Cpp Nl End] +Category=8 +Description="(728)Whether to add a newline before the closing '*/' of the combined cpp-comment
when converting to a c-comment.

Requires cmt_cpp_to_c=true and cmt_cpp_group=true." Enabled=false -EditorType=numeric -CallName="nl_before_cpp_comment=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=boolean +TrueFalse=cmt_cpp_nl_end=true|cmt_cpp_nl_end=false +ValueDefault=false -[Nl After Multiline Comment] -Category=7 -Description="Whether to force a newline after a multi-line comment." +[Cmt Star Cont] +Category=8 +Description="(729)Whether to put a star on subsequent comment lines." Enabled=false EditorType=boolean -TrueFalse=nl_after_multiline_comment=true|nl_after_multiline_comment=false -ValueDefault=0 +TrueFalse=cmt_star_cont=true|cmt_star_cont=false +ValueDefault=false -[Nl After Struct] -Category=7 -Description="The number of newlines after '}' or ';' of a struct/enum/union definition" +[Cmt Sp Before Star Cont] +Category=8 +Description="(730)The number of spaces to insert at the start of subsequent comment lines." Enabled=false EditorType=numeric -CallName="nl_after_struct=" +CallName="cmt_sp_before_star_cont=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl After Class] -Category=7 -Description="The number of newlines after '}' or ';' of a class definition" +[Cmt Sp After Star Cont] +Category=8 +Description="(731)The number of spaces to insert after the star on subsequent comment lines." Enabled=false EditorType=numeric -CallName="nl_after_class=" +CallName="cmt_sp_after_star_cont=" MinVal=0 MaxVal=16 ValueDefault=0 -[Nl Before Access Spec] -Category=7 -Description="The number of newlines before a 'private:', 'public:', 'protected:', 'signals:', or 'slots:' label.
Will not change the newline count if after a brace open.
0 = No change." +[Cmt Multi Check Last] +Category=8 +Description="(732)For multi-line comments with a '*' lead, remove leading spaces if the first
and last lines of the comment are the same length.

Default: true" Enabled=false -EditorType=numeric -CallName="nl_before_access_spec=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=boolean +TrueFalse=cmt_multi_check_last=true|cmt_multi_check_last=false +ValueDefault=true -[Nl After Access Spec] -Category=7 -Description="The number of newlines after a 'private:', 'public:', 'protected:', 'signals:', or 'slots:' label.
0 = No change." +[Cmt Multi First Len Minimum] +Category=8 +Description="(733)For multi-line comments with a '*' lead, remove leading spaces if the first
and last lines of the comment are the same length AND if the length is
bigger as the first_len minimum.

Default: 4" Enabled=false EditorType=numeric -CallName="nl_after_access_spec=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +CallName="cmt_multi_first_len_minimum=" +MinVal=1 +MaxVal=20 +ValueDefault=4 -[Nl Comment Func Def] -Category=7 -Description="The number of newlines between a function def and the function comment.
0 = No change." +[Cmt Insert File Header] +Category=8 +Description="(734)Path to a file that contains text to insert at the beginning of a file if
the file doesn't start with a C/C++ comment. If the inserted text contains
'$(filename)', that will be replaced with the current file's name." Enabled=false -EditorType=numeric -CallName="nl_comment_func_def=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +CallName=cmt_insert_file_header= +EditorType=string +ValueDefault= -[Nl After Try Catch Finally] -Category=7 -Description="The number of newlines after a try-catch-finally block that isn't followed by a brace close.
0 = No change." +[Cmt Insert File Footer] +Category=8 +Description="(735)Path to a file that contains text to insert at the end of a file if the
file doesn't end with a C/C++ comment. If the inserted text contains
'$(filename)', that will be replaced with the current file's name." Enabled=false -EditorType=numeric -CallName="nl_after_try_catch_finally=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +CallName=cmt_insert_file_footer= +EditorType=string +ValueDefault= -[Nl Around Cs Property] -Category=7 -Description="The number of newlines before and after a property, indexer or event decl.
0 = No change." +[Cmt Insert Func Header] +Category=8 +Description="(736)Path to a file that contains text to insert before a function definition if
the function isn't preceded by a C/C++ comment. If the inserted text
contains '$(function)', '$(javaparam)' or '$(fclass)', these will be
replaced with, respectively, the name of the function, the javadoc '@param'
and '@return' stuff, or the name of the class to which the member function
belongs." Enabled=false -EditorType=numeric -CallName="nl_around_cs_property=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +CallName=cmt_insert_func_header= +EditorType=string +ValueDefault= -[Nl Between Get Set] -Category=7 -Description="The number of newlines between the get/set/add/remove handlers in C#.
0 = No change." +[Cmt Insert Class Header] +Category=8 +Description="(737)Path to a file that contains text to insert before a class if the class
isn't preceded by a C/C++ comment. If the inserted text contains '$(class)',
that will be replaced with the class name." Enabled=false -EditorType=numeric -CallName="nl_between_get_set=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +CallName=cmt_insert_class_header= +EditorType=string +ValueDefault= -[Nl Property Brace] -Category=7 -Description="Add or remove newline between C# property and the '{'" +[Cmt Insert Oc Msg Header] +Category=8 +Description="(738)Path to a file that contains text to insert before an Objective-C message
specification, if the method isn't preceded by a C/C++ comment. If the
inserted text contains '$(message)' or '$(javaparam)', these will be
replaced with, respectively, the name of the function, or the javadoc
'@param' and '@return' stuff." Enabled=false -EditorType=multiple -Choices="nl_property_brace=ignore|nl_property_brace=add|nl_property_brace=remove|nl_property_brace=force" -ChoicesReadable="Ignore Nl Property Brace|Add Nl Property Brace|Remove Nl Property Brace|Force Nl Property Brace" -ValueDefault=0 +CallName=cmt_insert_oc_msg_header= +EditorType=string +ValueDefault= -[Eat Blanks After Open Brace] -Category=7 -Description="Whether to remove blank lines after '{'" +[Cmt Insert Before Preproc] +Category=8 +Description="(739)Whether a comment should be inserted if a preprocessor is encountered when
stepping backwards from a function name.

Applies to cmt_insert_oc_msg_header, cmt_insert_func_header and
cmt_insert_class_header." Enabled=false EditorType=boolean -TrueFalse=eat_blanks_after_open_brace=true|eat_blanks_after_open_brace=false -ValueDefault=0 +TrueFalse=cmt_insert_before_preproc=true|cmt_insert_before_preproc=false +ValueDefault=false -[Eat Blanks Before Close Brace] -Category=7 -Description="Whether to remove blank lines before '}'" +[Cmt Insert Before Inlines] +Category=8 +Description="(740)Whether a comment should be inserted if a function is declared inline to a
class definition.

Applies to cmt_insert_func_header.

Default: true" Enabled=false EditorType=boolean -TrueFalse=eat_blanks_before_close_brace=true|eat_blanks_before_close_brace=false -ValueDefault=0 +TrueFalse=cmt_insert_before_inlines=true|cmt_insert_before_inlines=false +ValueDefault=true -[Mod Full Brace Do] +[Cmt Insert Before Ctor Dtor] Category=8 -Description="Add or remove braces on single-line 'do' statement" +Description="(741)Whether a comment should be inserted if the function is a class constructor
or destructor.

Applies to cmt_insert_func_header." +Enabled=false +EditorType=boolean +TrueFalse=cmt_insert_before_ctor_dtor=true|cmt_insert_before_ctor_dtor=false +ValueDefault=false + +[Mod Full Brace Do] +Category=9 +Description="(742)Add or remove braces on a single-line 'do' statement." Enabled=false EditorType=multiple -Choices="mod_full_brace_do=ignore|mod_full_brace_do=add|mod_full_brace_do=remove|mod_full_brace_do=force" -ChoicesReadable="Ignore Mod Full Brace Do|Add Mod Full Brace Do|Remove Mod Full Brace Do|Force Mod Full Brace Do" -ValueDefault=0 +Choices=mod_full_brace_do=ignore|mod_full_brace_do=add|mod_full_brace_do=remove|mod_full_brace_do=force|mod_full_brace_do=not_defined +ChoicesReadable="(742)Ignore Mod Full Brace Do|(742)Add Mod Full Brace Do|(742)Remove Mod Full Brace Do|(742)Force Mod Full Brace Do" +ValueDefault=ignore [Mod Full Brace For] -Category=8 -Description="Add or remove braces on single-line 'for' statement" +Category=9 +Description="(743)Add or remove braces on a single-line 'for' statement." Enabled=false EditorType=multiple -Choices="mod_full_brace_for=ignore|mod_full_brace_for=add|mod_full_brace_for=remove|mod_full_brace_for=force" -ChoicesReadable="Ignore Mod Full Brace For|Add Mod Full Brace For|Remove Mod Full Brace For|Force Mod Full Brace For" -ValueDefault=0 +Choices=mod_full_brace_for=ignore|mod_full_brace_for=add|mod_full_brace_for=remove|mod_full_brace_for=force|mod_full_brace_for=not_defined +ChoicesReadable="(743)Ignore Mod Full Brace For|(743)Add Mod Full Brace For|(743)Remove Mod Full Brace For|(743)Force Mod Full Brace For" +ValueDefault=ignore [Mod Full Brace Function] -Category=8 -Description="Add or remove braces on single-line function definitions. (Pawn)" +Category=9 +Description="(744)(Pawn) Add or remove braces on a single-line function definition." Enabled=false EditorType=multiple -Choices="mod_full_brace_function=ignore|mod_full_brace_function=add|mod_full_brace_function=remove|mod_full_brace_function=force" -ChoicesReadable="Ignore Mod Full Brace Function|Add Mod Full Brace Function|Remove Mod Full Brace Function|Force Mod Full Brace Function" -ValueDefault=0 +Choices=mod_full_brace_function=ignore|mod_full_brace_function=add|mod_full_brace_function=remove|mod_full_brace_function=force|mod_full_brace_function=not_defined +ChoicesReadable="(744)Ignore Mod Full Brace Function|(744)Add Mod Full Brace Function|(744)Remove Mod Full Brace Function|(744)Force Mod Full Brace Function" +ValueDefault=ignore [Mod Full Brace If] -Category=8 -Description="Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'." +Category=9 +Description="(745)Add or remove braces on a single-line 'if' statement. Braces will not be
removed if the braced statement contains an 'else'." Enabled=false EditorType=multiple -Choices="mod_full_brace_if=ignore|mod_full_brace_if=add|mod_full_brace_if=remove|mod_full_brace_if=force" -ChoicesReadable="Ignore Mod Full Brace If|Add Mod Full Brace If|Remove Mod Full Brace If|Force Mod Full Brace If" -ValueDefault=0 +Choices=mod_full_brace_if=ignore|mod_full_brace_if=add|mod_full_brace_if=remove|mod_full_brace_if=force|mod_full_brace_if=not_defined +ChoicesReadable="(745)Ignore Mod Full Brace If|(745)Add Mod Full Brace If|(745)Remove Mod Full Brace If|(745)Force Mod Full Brace If" +ValueDefault=ignore [Mod Full Brace If Chain] -Category=8 -Description="Make all if/elseif/else statements in a chain be braced or not. Overrides mod_full_brace_if.
If any must be braced, they are all braced. If all can be unbraced, then the braces are removed." +Category=9 +Description="(746)Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either
have, or do not have, braces. Overrides mod_full_brace_if.

0: Don't override mod_full_brace_if
1: Add braces to all blocks if any block needs braces and remove braces if
they can be removed from all blocks
2: Add braces to all blocks if any block already has braces, regardless of
whether it needs them
3: Add braces to all blocks if any block needs braces and remove braces if
they can be removed from all blocks, except if all blocks have braces
despite none needing them" Enabled=false -EditorType=boolean -TrueFalse=mod_full_brace_if_chain=true|mod_full_brace_if_chain=false +EditorType=numeric +CallName="mod_full_brace_if_chain=" +MinVal=0 +MaxVal=3 ValueDefault=0 +[Mod Full Brace If Chain Only] +Category=9 +Description="(747)Whether to add braces to all blocks of an 'if'/'else if'/'else' chain.
If true, mod_full_brace_if_chain will only remove braces from an 'if' that
does not have an 'else if' or 'else'." +Enabled=false +EditorType=boolean +TrueFalse=mod_full_brace_if_chain_only=true|mod_full_brace_if_chain_only=false +ValueDefault=false + +[Mod Full Brace While] +Category=9 +Description="(748)Add or remove braces on single-line 'while' statement." +Enabled=false +EditorType=multiple +Choices=mod_full_brace_while=ignore|mod_full_brace_while=add|mod_full_brace_while=remove|mod_full_brace_while=force|mod_full_brace_while=not_defined +ChoicesReadable="(748)Ignore Mod Full Brace While|(748)Add Mod Full Brace While|(748)Remove Mod Full Brace While|(748)Force Mod Full Brace While" +ValueDefault=ignore + +[Mod Full Brace Using] +Category=9 +Description="(749)Add or remove braces on single-line 'using ()' statement." +Enabled=false +EditorType=multiple +Choices=mod_full_brace_using=ignore|mod_full_brace_using=add|mod_full_brace_using=remove|mod_full_brace_using=force|mod_full_brace_using=not_defined +ChoicesReadable="(749)Ignore Mod Full Brace Using|(749)Add Mod Full Brace Using|(749)Remove Mod Full Brace Using|(749)Force Mod Full Brace Using" +ValueDefault=ignore + [Mod Full Brace Nl] -Category=8 -Description="Don't remove braces around statements that span N newlines" +Category=9 +Description="(750)Don't remove braces around statements that span N newlines" Enabled=false EditorType=numeric CallName="mod_full_brace_nl=" @@ -3292,334 +6721,468 @@ MinVal=0 MaxVal=5000 ValueDefault=0 -[Mod Full Brace While] -Category=8 -Description="Add or remove braces on single-line 'while' statement" +[Mod Full Brace Nl Block Rem Mlcond] +Category=9 +Description="(751)Whether to prevent removal of braces from 'if'/'for'/'while'/etc. blocks
which span multiple lines.

Affects:
mod_full_brace_for
mod_full_brace_if
mod_full_brace_if_chain
mod_full_brace_if_chain_only
mod_full_brace_while
mod_full_brace_using

Does not affect:
mod_full_brace_do
mod_full_brace_function" Enabled=false -EditorType=multiple -Choices="mod_full_brace_while=ignore|mod_full_brace_while=add|mod_full_brace_while=remove|mod_full_brace_while=force" -ChoicesReadable="Ignore Mod Full Brace While|Add Mod Full Brace While|Remove Mod Full Brace While|Force Mod Full Brace While" -ValueDefault=0 +EditorType=boolean +TrueFalse=mod_full_brace_nl_block_rem_mlcond=true|mod_full_brace_nl_block_rem_mlcond=false +ValueDefault=false -[Mod Full Brace Using] -Category=8 -Description="Add or remove braces on single-line 'using ()' statement" +[Mod Paren On Return] +Category=9 +Description="(752)Add or remove unnecessary parentheses on 'return' statement." Enabled=false EditorType=multiple -Choices="mod_full_brace_using=ignore|mod_full_brace_using=add|mod_full_brace_using=remove|mod_full_brace_using=force" -ChoicesReadable="Ignore Mod Full Brace Using|Add Mod Full Brace Using|Remove Mod Full Brace Using|Force Mod Full Brace Using" -ValueDefault=0 +Choices=mod_paren_on_return=ignore|mod_paren_on_return=add|mod_paren_on_return=remove|mod_paren_on_return=force|mod_paren_on_return=not_defined +ChoicesReadable="(752)Ignore Mod Paren On Return|(752)Add Mod Paren On Return|(752)Remove Mod Paren On Return|(752)Force Mod Paren On Return" +ValueDefault=ignore -[Mod Paren On Return] -Category=8 -Description="Add or remove unnecessary paren on 'return' statement" +[Mod Paren On Throw] +Category=9 +Description="(753)Add or remove unnecessary parentheses on 'throw' statement." Enabled=false EditorType=multiple -Choices="mod_paren_on_return=ignore|mod_paren_on_return=add|mod_paren_on_return=remove|mod_paren_on_return=force" -ChoicesReadable="Ignore Mod Paren On Return|Add Mod Paren On Return|Remove Mod Paren On Return|Force Mod Paren On Return" -ValueDefault=0 +Choices=mod_paren_on_throw=ignore|mod_paren_on_throw=add|mod_paren_on_throw=remove|mod_paren_on_throw=force|mod_paren_on_throw=not_defined +ChoicesReadable="(753)Ignore Mod Paren On Throw|(753)Add Mod Paren On Throw|(753)Remove Mod Paren On Throw|(753)Force Mod Paren On Throw" +ValueDefault=ignore [Mod Pawn Semicolon] -Category=8 -Description="Whether to change optional semicolons to real semicolons" +Category=9 +Description="(754)(Pawn) Whether to change optional semicolons to real semicolons." Enabled=false EditorType=boolean TrueFalse=mod_pawn_semicolon=true|mod_pawn_semicolon=false -ValueDefault=0 +ValueDefault=false [Mod Full Paren If Bool] -Category=8 -Description="Add parens on 'while' and 'if' statement around bools" +Category=9 +Description="(755)Whether to fully parenthesize Boolean expressions in 'while' and 'if'
statement, as in 'if (a && b > c)' => 'if (a && (b > c))'." Enabled=false EditorType=boolean TrueFalse=mod_full_paren_if_bool=true|mod_full_paren_if_bool=false -ValueDefault=0 +ValueDefault=false + +[Mod Full Paren Assign Bool] +Category=9 +Description="(756)Whether to fully parenthesize Boolean expressions after '='
statement, as in 'x = a && b > c;' => 'x = (a && (b > c));'." +Enabled=false +EditorType=boolean +TrueFalse=mod_full_paren_assign_bool=true|mod_full_paren_assign_bool=false +ValueDefault=false + +[Mod Full Paren Return Bool] +Category=9 +Description="(757)Whether to fully parenthesize Boolean expressions after '='
statement, as in 'return a && b > c;' => 'return (a && (b > c));'." +Enabled=false +EditorType=boolean +TrueFalse=mod_full_paren_return_bool=true|mod_full_paren_return_bool=false +ValueDefault=false [Mod Remove Extra Semicolon] -Category=8 -Description="Whether to remove superfluous semicolons" +Category=9 +Description="(758)Whether to remove superfluous semicolons." Enabled=false EditorType=boolean TrueFalse=mod_remove_extra_semicolon=true|mod_remove_extra_semicolon=false -ValueDefault=0 +ValueDefault=false + +[Mod Remove Duplicate Include] +Category=9 +Description="(759)Whether to remove duplicate include." +Enabled=false +EditorType=boolean +TrueFalse=mod_remove_duplicate_include=true|mod_remove_duplicate_include=false +ValueDefault=false + +[Mod Add Force C Closebrace Comment] +Category=9 +Description="(760)the following options (mod_XX_closebrace_comment) use different comment,
depending of the setting of the next option.
false: Use the c comment (default)
true : Use the cpp comment" +Enabled=false +EditorType=boolean +TrueFalse=mod_add_force_c_closebrace_comment=true|mod_add_force_c_closebrace_comment=false +ValueDefault=false [Mod Add Long Function Closebrace Comment] -Category=8 -Description="If a function body exceeds the specified number of newlines and doesn't have a comment after
the close brace, a comment will be added." +Category=9 +Description="(761)If a function body exceeds the specified number of newlines and doesn't have
a comment after the close brace, a comment will be added." Enabled=false EditorType=numeric CallName="mod_add_long_function_closebrace_comment=" MinVal=0 -MaxVal=16 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Namespace Closebrace Comment] +Category=9 +Description="(762)If a namespace body exceeds the specified number of newlines and doesn't
have a comment after the close brace, a comment will be added." +Enabled=false +EditorType=numeric +CallName="mod_add_long_namespace_closebrace_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Class Closebrace Comment] +Category=9 +Description="(763)If a class body exceeds the specified number of newlines and doesn't have a
comment after the close brace, a comment will be added." +Enabled=false +EditorType=numeric +CallName="mod_add_long_class_closebrace_comment=" +MinVal=0 +MaxVal=255 ValueDefault=0 [Mod Add Long Switch Closebrace Comment] -Category=8 -Description="If a switch body exceeds the specified number of newlines and doesn't have a comment after
the close brace, a comment will be added." +Category=9 +Description="(764)If a switch body exceeds the specified number of newlines and doesn't have a
comment after the close brace, a comment will be added." Enabled=false EditorType=numeric CallName="mod_add_long_switch_closebrace_comment=" MinVal=0 -MaxVal=16 +MaxVal=255 ValueDefault=0 [Mod Add Long Ifdef Endif Comment] -Category=8 -Description="If an #ifdef body exceeds the specified number of newlines and doesn't have a comment after
the #endif, a comment will be added." +Category=9 +Description="(765)If an #ifdef body exceeds the specified number of newlines and doesn't have
a comment after the #endif, a comment will be added." Enabled=false EditorType=numeric CallName="mod_add_long_ifdef_endif_comment=" MinVal=0 -MaxVal=16 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Ifdef Else Comment] +Category=9 +Description="(766)If an #ifdef or #else body exceeds the specified number of newlines and
doesn't have a comment after the #else, a comment will be added." +Enabled=false +EditorType=numeric +CallName="mod_add_long_ifdef_else_comment=" +MinVal=0 +MaxVal=255 ValueDefault=0 -[Mod Add Long Ifdef Else Comment] -Category=8 -Description="If an #ifdef or #else body exceeds the specified number of newlines and doesn't have a comment after
the #else, a comment will be added." +[Mod Sort Case Sensitive] +Category=9 +Description="(767)Whether to take care of the case by the mod_sort_xx options." +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_case_sensitive=true|mod_sort_case_sensitive=false +ValueDefault=false + +[Mod Sort Import] +Category=9 +Description="(768)Whether to sort consecutive single-line 'import' statements." +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_import=true|mod_sort_import=false +ValueDefault=false + +[Mod Sort Using] +Category=9 +Description="(769)(C#) Whether to sort consecutive single-line 'using' statements." +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_using=true|mod_sort_using=false +ValueDefault=false + +[Mod Sort Include] +Category=9 +Description="(770)Whether to sort consecutive single-line '#include' statements (C/C++) and
'#import' statements (Objective-C). Be aware that this has the potential to
break your code if your includes/imports have ordering dependencies." +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_include=true|mod_sort_include=false +ValueDefault=false + +[Mod Sort Incl Import Prioritize Filename] +Category=9 +Description="(771)Whether to prioritize '#include' and '#import' statements that contain
filename without extension when sorting is enabled." +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_incl_import_prioritize_filename=true|mod_sort_incl_import_prioritize_filename=false +ValueDefault=false + +[Mod Sort Incl Import Prioritize Extensionless] +Category=9 +Description="(772)Whether to prioritize '#include' and '#import' statements that does not
contain extensions when sorting is enabled." Enabled=false -EditorType=numeric -CallName="mod_add_long_ifdef_else_comment=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=boolean +TrueFalse=mod_sort_incl_import_prioritize_extensionless=true|mod_sort_incl_import_prioritize_extensionless=false +ValueDefault=false -[Mod Sort Import] -Category=8 -Description="If TRUE, will sort consecutive single-line 'import' statements [Java, D]" +[Mod Sort Incl Import Prioritize Angle Over Quotes] +Category=9 +Description="(773)Whether to prioritize '#include' and '#import' statements that contain
angle over quotes when sorting is enabled." Enabled=false EditorType=boolean -TrueFalse=mod_sort_import=true|mod_sort_import=false -ValueDefault=0 +TrueFalse=mod_sort_incl_import_prioritize_angle_over_quotes=true|mod_sort_incl_import_prioritize_angle_over_quotes=false +ValueDefault=false -[Mod Sort Using] -Category=8 -Description="If TRUE, will sort consecutive single-line 'using' statements [C#]" +[Mod Sort Incl Import Ignore Extension] +Category=9 +Description="(774)Whether to ignore file extension in '#include' and '#import' statements
for sorting comparison." Enabled=false EditorType=boolean -TrueFalse=mod_sort_using=true|mod_sort_using=false -ValueDefault=0 +TrueFalse=mod_sort_incl_import_ignore_extension=true|mod_sort_incl_import_ignore_extension=false +ValueDefault=false -[Mod Sort Include] -Category=8 -Description="If TRUE, will sort consecutive single-line '#include' statements [C/C++] and '#import' statements [Obj-C]
This is generally a bad idea, as it may break your code." +[Mod Sort Incl Import Grouping Enabled] +Category=9 +Description="(775)Whether to group '#include' and '#import' statements when sorting is enabled." Enabled=false EditorType=boolean -TrueFalse=mod_sort_include=true|mod_sort_include=false -ValueDefault=0 +TrueFalse=mod_sort_incl_import_grouping_enabled=true|mod_sort_incl_import_grouping_enabled=false +ValueDefault=false [Mod Move Case Break] -Category=8 -Description="If TRUE, it will move a 'break' that appears after a fully braced 'case' before the close brace." +Category=9 +Description="(776)Whether to move a 'break' that appears after a fully braced 'case' before
the close brace, as in 'case X: { ... } break;' => 'case X: { ... break; }'." Enabled=false EditorType=boolean TrueFalse=mod_move_case_break=true|mod_move_case_break=false -ValueDefault=0 +ValueDefault=false + +[Mod Move Case Return] +Category=9 +Description="(777)Whether to move a 'return' that appears after a fully braced 'case' before
the close brace, as in 'case X: { ... } return;' => 'case X: { ... return; }'." +Enabled=false +EditorType=boolean +TrueFalse=mod_move_case_return=true|mod_move_case_return=false +ValueDefault=false [Mod Case Brace] -Category=8 -Description="Will add or remove the braces around a fully braced case statement.
Will only remove the braces if there are no variable declarations in the block." +Category=9 +Description="(778)Add or remove braces around a fully braced case statement. Will only remove
braces if there are no variable declarations in the block." Enabled=false EditorType=multiple -Choices="mod_case_brace=ignore|mod_case_brace=add|mod_case_brace=remove|mod_case_brace=force" -ChoicesReadable="Ignore Mod Case Brace|Add Mod Case Brace|Remove Mod Case Brace|Force Mod Case Brace" -ValueDefault=0 +Choices=mod_case_brace=ignore|mod_case_brace=add|mod_case_brace=remove|mod_case_brace=force|mod_case_brace=not_defined +ChoicesReadable="(778)Ignore Mod Case Brace|(778)Add Mod Case Brace|(778)Remove Mod Case Brace|(778)Force Mod Case Brace" +ValueDefault=ignore [Mod Remove Empty Return] -Category=8 -Description="If TRUE, it will remove a void 'return;' that appears as the last statement in a function." +Category=9 +Description="(779)Whether to remove a void 'return;' that appears as the last statement in a
function." Enabled=false EditorType=boolean TrueFalse=mod_remove_empty_return=true|mod_remove_empty_return=false -ValueDefault=0 +ValueDefault=false -[Cmt Width] +[Mod Enum Last Comma] Category=9 -Description="Try to wrap comments at cmt_width columns" +Description="(780)Add or remove the comma after the last value of an enumeration." Enabled=false -EditorType=numeric -CallName="cmt_width=" -MinVal=16 -MaxVal=256 -ValueDefault=0 +EditorType=multiple +Choices=mod_enum_last_comma=ignore|mod_enum_last_comma=add|mod_enum_last_comma=remove|mod_enum_last_comma=force|mod_enum_last_comma=not_defined +ChoicesReadable="(780)Ignore Mod Enum Last Comma|(780)Add Mod Enum Last Comma|(780)Remove Mod Enum Last Comma|(780)Force Mod Enum Last Comma" +ValueDefault=ignore -[Cmt Reflow Mode] +[Mod Infinite Loop] Category=9 -Description="Set the comment reflow mode (default: 0)
0: no reflowing (apart from the line wrapping due to cmt_width)
1: no touching at all
2: full reflow
" +Description="(781)Syntax to use for infinite loops.

0: Leave syntax alone (default)
1: Rewrite as `for(;;)`
2: Rewrite as `while(true)`
3: Rewrite as `do`...`while(true);`
4: Rewrite as `while(1)`
5: Rewrite as `do`...`while(1);`

Infinite loops that do not already match one of these syntaxes are ignored.
Other options that affect loop formatting will be applied after transforming
the syntax." Enabled=false EditorType=numeric -CallName="cmt_reflow_mode=" +CallName="mod_infinite_loop=" MinVal=0 -MaxVal=2 +MaxVal=5 ValueDefault=0 -[Cmt Indent Multi] +[Mod Int Short] Category=9 -Description="If false, disable all multi-line comment changes, including cmt_width. keyword substitution, and leading chars.
Default is true." +Description="(782)Add or remove the 'int' keyword in 'int short'." Enabled=false -EditorType=boolean -TrueFalse=cmt_indent_multi=true|cmt_indent_multi=false -ValueDefault=1 +EditorType=multiple +Choices=mod_int_short=ignore|mod_int_short=add|mod_int_short=remove|mod_int_short=force|mod_int_short=not_defined +ChoicesReadable="(782)Ignore Mod Int Short|(782)Add Mod Int Short|(782)Remove Mod Int Short|(782)Force Mod Int Short" +ValueDefault=ignore -[Cmt C Group] +[Mod Short Int] Category=9 -Description="Whether to group c-comments that look like they are in a block" +Description="(783)Add or remove the 'int' keyword in 'short int'." Enabled=false -EditorType=boolean -TrueFalse=cmt_c_group=true|cmt_c_group=false -ValueDefault=0 +EditorType=multiple +Choices=mod_short_int=ignore|mod_short_int=add|mod_short_int=remove|mod_short_int=force|mod_short_int=not_defined +ChoicesReadable="(783)Ignore Mod Short Int|(783)Add Mod Short Int|(783)Remove Mod Short Int|(783)Force Mod Short Int" +ValueDefault=ignore -[Cmt C Nl Start] +[Mod Int Long] Category=9 -Description="Whether to put an empty '/*' on the first line of the combined c-comment" +Description="(784)Add or remove the 'int' keyword in 'int long'." Enabled=false -EditorType=boolean -TrueFalse=cmt_c_nl_start=true|cmt_c_nl_start=false -ValueDefault=0 +EditorType=multiple +Choices=mod_int_long=ignore|mod_int_long=add|mod_int_long=remove|mod_int_long=force|mod_int_long=not_defined +ChoicesReadable="(784)Ignore Mod Int Long|(784)Add Mod Int Long|(784)Remove Mod Int Long|(784)Force Mod Int Long" +ValueDefault=ignore -[Cmt C Nl End] +[Mod Long Int] Category=9 -Description="Whether to put a newline before the closing '*/' of the combined c-comment" +Description="(785)Add or remove the 'int' keyword in 'long int'." Enabled=false -EditorType=boolean -TrueFalse=cmt_c_nl_end=true|cmt_c_nl_end=false -ValueDefault=0 +EditorType=multiple +Choices=mod_long_int=ignore|mod_long_int=add|mod_long_int=remove|mod_long_int=force|mod_long_int=not_defined +ChoicesReadable="(785)Ignore Mod Long Int|(785)Add Mod Long Int|(785)Remove Mod Long Int|(785)Force Mod Long Int" +ValueDefault=ignore -[Cmt Cpp Group] +[Mod Int Signed] Category=9 -Description="Whether to group cpp-comments that look like they are in a block" +Description="(786)Add or remove the 'int' keyword in 'int signed'." Enabled=false -EditorType=boolean -TrueFalse=cmt_cpp_group=true|cmt_cpp_group=false -ValueDefault=0 +EditorType=multiple +Choices=mod_int_signed=ignore|mod_int_signed=add|mod_int_signed=remove|mod_int_signed=force|mod_int_signed=not_defined +ChoicesReadable="(786)Ignore Mod Int Signed|(786)Add Mod Int Signed|(786)Remove Mod Int Signed|(786)Force Mod Int Signed" +ValueDefault=ignore -[Cmt Cpp Nl Start] +[Mod Signed Int] Category=9 -Description="Whether to put an empty '/*' on the first line of the combined cpp-comment" +Description="(787)Add or remove the 'int' keyword in 'signed int'." Enabled=false -EditorType=boolean -TrueFalse=cmt_cpp_nl_start=true|cmt_cpp_nl_start=false -ValueDefault=0 +EditorType=multiple +Choices=mod_signed_int=ignore|mod_signed_int=add|mod_signed_int=remove|mod_signed_int=force|mod_signed_int=not_defined +ChoicesReadable="(787)Ignore Mod Signed Int|(787)Add Mod Signed Int|(787)Remove Mod Signed Int|(787)Force Mod Signed Int" +ValueDefault=ignore -[Cmt Cpp Nl End] +[Mod Int Unsigned] Category=9 -Description="Whether to put a newline before the closing '*/' of the combined cpp-comment" +Description="(788)Add or remove the 'int' keyword in 'int unsigned'." Enabled=false -EditorType=boolean -TrueFalse=cmt_cpp_nl_end=true|cmt_cpp_nl_end=false -ValueDefault=0 +EditorType=multiple +Choices=mod_int_unsigned=ignore|mod_int_unsigned=add|mod_int_unsigned=remove|mod_int_unsigned=force|mod_int_unsigned=not_defined +ChoicesReadable="(788)Ignore Mod Int Unsigned|(788)Add Mod Int Unsigned|(788)Remove Mod Int Unsigned|(788)Force Mod Int Unsigned" +ValueDefault=ignore -[Cmt Cpp To C] +[Mod Unsigned Int] Category=9 -Description="Whether to change cpp-comments into c-comments" +Description="(789)Add or remove the 'int' keyword in 'unsigned int'." Enabled=false -EditorType=boolean -TrueFalse=cmt_cpp_to_c=true|cmt_cpp_to_c=false -ValueDefault=0 +EditorType=multiple +Choices=mod_unsigned_int=ignore|mod_unsigned_int=add|mod_unsigned_int=remove|mod_unsigned_int=force|mod_unsigned_int=not_defined +ChoicesReadable="(789)Ignore Mod Unsigned Int|(789)Add Mod Unsigned Int|(789)Remove Mod Unsigned Int|(789)Force Mod Unsigned Int" +ValueDefault=ignore -[Cmt Star Cont] +[Mod Int Prefer Int On Left] Category=9 -Description="Whether to put a star on subsequent comment lines" +Description="(790)If there is a situation where mod_int_* and mod_*_int would result in
multiple int keywords, whether to keep the rightmost int (the default) or the
leftmost int." Enabled=false EditorType=boolean -TrueFalse=cmt_star_cont=true|cmt_star_cont=false -ValueDefault=0 +TrueFalse=mod_int_prefer_int_on_left=true|mod_int_prefer_int_on_left=false +ValueDefault=false -[Cmt Sp Before Star Cont] +[Mod Sort Oc Properties] Category=9 -Description="The number of spaces to insert at the start of subsequent comment lines" +Description="(791)(OC) Whether to organize the properties. If true, properties will be
rearranged according to the mod_sort_oc_property_*_weight factors." Enabled=false -EditorType=numeric -CallName="cmt_sp_before_star_cont=" -MinVal=0 -MaxVal=16 -ValueDefault=0 +EditorType=boolean +TrueFalse=mod_sort_oc_properties=true|mod_sort_oc_properties=false +ValueDefault=false -[Cmt Sp After Star Cont] +[Mod Sort Oc Property Class Weight] Category=9 -Description="The number of spaces to insert after the star on subsequent comment lines" +Description="(792)(OC) Weight of a class property modifier." Enabled=false EditorType=numeric -CallName="cmt_sp_after_star_cont=" -MinVal=0 -MaxVal=16 +CallName="mod_sort_oc_property_class_weight=" +MinVal= +MaxVal= ValueDefault=0 -[Cmt Multi Check Last] +[Mod Sort Oc Property Thread Safe Weight] Category=9 -Description="For multi-line comments with a '*' lead, remove leading spaces if the first and last lines of
the comment are the same length. Default=True" +Description="(793)(OC) Weight of 'atomic' and 'nonatomic'." Enabled=false -EditorType=boolean -TrueFalse=cmt_multi_check_last=true|cmt_multi_check_last=false -ValueDefault=1 +EditorType=numeric +CallName="mod_sort_oc_property_thread_safe_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert File Header] +[Mod Sort Oc Property Readwrite Weight] Category=9 -Description="The filename that contains text to insert at the head of a file if the file doesn't start with a C/C++ comment.
Will substitute $(filename) with the current file's name." +Description="(794)(OC) Weight of 'readwrite' when organizing properties." Enabled=false -CallName=cmt_insert_file_header= -EditorType=string -ValueDefault= +EditorType=numeric +CallName="mod_sort_oc_property_readwrite_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert File Footer] +[Mod Sort Oc Property Reference Weight] Category=9 -Description="The filename that contains text to insert at the end of a file if the file doesn't end with a C/C++ comment.
Will substitute $(filename) with the current file's name." +Description="(795)(OC) Weight of a reference type specifier ('retain', 'copy', 'assign',
'weak', 'strong') when organizing properties." Enabled=false -CallName=cmt_insert_file_footer= -EditorType=string -ValueDefault= +EditorType=numeric +CallName="mod_sort_oc_property_reference_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert Func Header] +[Mod Sort Oc Property Getter Weight] Category=9 -Description="The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment.
Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff.
Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... }" +Description="(796)(OC) Weight of getter type ('getter=') when organizing properties." Enabled=false -CallName=cmt_insert_func_header= -EditorType=string -ValueDefault= +EditorType=numeric +CallName="mod_sort_oc_property_getter_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert Class Header] +[Mod Sort Oc Property Setter Weight] Category=9 -Description="The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment.
Will substitute $(class) with the class name." +Description="(797)(OC) Weight of setter type ('setter=') when organizing properties." Enabled=false -CallName=cmt_insert_class_header= -EditorType=string -ValueDefault= +EditorType=numeric +CallName="mod_sort_oc_property_setter_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert Oc Msg Header] +[Mod Sort Oc Property Nullability Weight] Category=9 -Description="The filename that contains text to insert before a Obj-C message specification if the method isn't preceeded with a C/C++ comment.
Will substitute $(message) with the function name and $(javaparam) with the javadoc @param and @return stuff." +Description="(798)(OC) Weight of nullability type ('nullable', 'nonnull', 'null_unspecified',
'null_resettable') when organizing properties." Enabled=false -CallName=cmt_insert_oc_msg_header= -EditorType=string -ValueDefault= +EditorType=numeric +CallName="mod_sort_oc_property_nullability_weight=" +MinVal= +MaxVal= +ValueDefault=0 -[Cmt Insert Before Preproc] -Category=9 -Description="If a preprocessor is encountered when stepping backwards from a function name, then
this option decides whether the comment should be inserted.
Affects cmt_insert_oc_msg_header, cmt_insert_func_header and cmt_insert_class_header." +[Pp Indent With Tabs] +Category=10 +Description="(799)How to use tabs when indenting preprocessor code.

-1: Use 'indent_with_tabs' setting (default)
0: Spaces only
1: Indent with tabs to brace level, align with spaces
2: Indent and align with tabs, using spaces when not on a tabstop

Default: -1" Enabled=false -EditorType=boolean -TrueFalse=cmt_insert_before_preproc=true|cmt_insert_before_preproc=false -ValueDefault=0 +EditorType=numeric +CallName="pp_indent_with_tabs=" +MinVal=-1 +MaxVal=2 +ValueDefault=-1 [Pp Indent] Category=10 -Description="Control indent of preprocessors inside #if blocks at brace level 0" +Description="(800)Add or remove indentation of preprocessor directives inside #if blocks
at brace level 0 (file-level)." Enabled=false EditorType=multiple -Choices="pp_indent=ignore|pp_indent=add|pp_indent=remove|pp_indent=force" -ChoicesReadable="Ignore Pp Indent|Add Pp Indent|Remove Pp Indent|Force Pp Indent" -ValueDefault=0 +Choices=pp_indent=ignore|pp_indent=add|pp_indent=remove|pp_indent=force|pp_indent=not_defined +ChoicesReadable="(800)Ignore Pp Indent|(800)Add Pp Indent|(800)Remove Pp Indent|(800)Force Pp Indent" +ValueDefault=ignore [Pp Indent At Level] Category=10 -Description="Whether to indent #if/#else/#endif at the brace level (true) or from column 1 (false)" +Description="(801)Whether to indent #if/#else/#endif at the brace level. If false, these are
indented from column 1." Enabled=false EditorType=boolean TrueFalse=pp_indent_at_level=true|pp_indent_at_level=false -ValueDefault=0 +ValueDefault=false + +[Pp Indent At Level0] +Category=10 +Description="(802)Whether to indent #if/#else/#endif at the parenthesis level if the brace
level is 0. If false, these are indented from column 1." +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_at_level0=true|pp_indent_at_level0=false +ValueDefault=false [Pp Indent Count] Category=10 -Description="If pp_indent_at_level=false, specifies the number of columns to indent per level. Default=1." +Description="(803)Specifies the number of columns to indent preprocessors per level
at brace level 0 (file-level). If pp_indent_at_level=false, also specifies
the number of columns to indent preprocessors per level
at brace level > 0 (function-level).

Default: 1" Enabled=false EditorType=numeric CallName="pp_indent_count=" @@ -3627,18 +7190,18 @@ MinVal=0 MaxVal=16 ValueDefault=1 -[Pp Space] +[Pp Space After] Category=10 -Description="Add or remove space after # based on pp_level of #if blocks" +Description="(804)Add or remove space after # based on pp level of #if blocks." Enabled=false EditorType=multiple -Choices="pp_space=ignore|pp_space=add|pp_space=remove|pp_space=force" -ChoicesReadable="Ignore Pp Space|Add Pp Space|Remove Pp Space|Force Pp Space" -ValueDefault=0 +Choices=pp_space_after=ignore|pp_space_after=add|pp_space_after=remove|pp_space_after=force|pp_space_after=not_defined +ChoicesReadable="(804)Ignore Pp Space After|(804)Add Pp Space After|(804)Remove Pp Space After|(804)Force Pp Space After" +ValueDefault=ignore [Pp Space Count] Category=10 -Description="Sets the number of spaces added with pp_space" +Description="(805)Sets the number of spaces per level added with pp_space_after." Enabled=false EditorType=numeric CallName="pp_space_count=" @@ -3648,44 +7211,266 @@ ValueDefault=0 [Pp Indent Region] Category=10 -Description="The indent for #region and #endregion in C# and '#pragma region' in C/C++" +Description="(806)The indent for '#region' and '#endregion' in C# and '#pragma region' in
C/C++. Negative values decrease indent down to the first column." Enabled=false EditorType=numeric CallName="pp_indent_region=" -MinVal=0 +MinVal=-16 MaxVal=16 ValueDefault=0 [Pp Region Indent Code] Category=10 -Description="Whether to indent the code between #region and #endregion" +Description="(807)Whether to indent the code between #region and #endregion." Enabled=false EditorType=boolean TrueFalse=pp_region_indent_code=true|pp_region_indent_code=false -ValueDefault=0 +ValueDefault=false [Pp Indent If] Category=10 -Description="If pp_indent_at_level=true, sets the indent for #if, #else, and #endif when not at file-level" +Description="(808)If pp_indent_at_level=true, sets the indent for #if, #else and #endif when
not at file-level. Negative values decrease indent down to the first column.

=0: Indent preprocessors using output_tab_size
>0: Column at which all preprocessors will be indented" Enabled=false EditorType=numeric CallName="pp_indent_if=" -MinVal=0 +MinVal=-16 MaxVal=16 ValueDefault=0 [Pp If Indent Code] Category=10 -Description="Control whether to indent the code between #if, #else and #endif when not at file-level" +Description="(809)Whether to indent the code between #if, #else and #endif." Enabled=false EditorType=boolean TrueFalse=pp_if_indent_code=true|pp_if_indent_code=false -ValueDefault=0 +ValueDefault=false + +[Pp Indent In Guard] +Category=10 +Description="(810)Whether to indent the body of an #if that encompasses all the code in the file." +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_in_guard=true|pp_indent_in_guard=false +ValueDefault=false [Pp Define At Level] Category=10 -Description="Whether to indent '#define' at the brace level (true) or from column 1 (false)" +Description="(811)Whether to indent '#define' at the brace level. If false, these are
indented from column 1." Enabled=false EditorType=boolean TrueFalse=pp_define_at_level=true|pp_define_at_level=false +ValueDefault=false + +[Pp Include At Level] +Category=10 +Description="(812)Whether to indent '#include' at the brace level." +Enabled=false +EditorType=boolean +TrueFalse=pp_include_at_level=true|pp_include_at_level=false +ValueDefault=false + +[Pp Ignore Define Body] +Category=10 +Description="(813)Whether to ignore the '#define' body while formatting." +Enabled=false +EditorType=boolean +TrueFalse=pp_ignore_define_body=true|pp_ignore_define_body=false +ValueDefault=false + +[Pp Multiline Define Body Indent] +Category=10 +Description="(814)An offset value that controls the indentation of the body of a multiline #define.
'body' refers to all the lines of a multiline #define except the first line.
Requires 'pp_ignore_define_body = false'.

<0: Absolute column: the body indentation starts off at the specified column
(ex. -3 ==> the body is indented starting from column 3)
>=0: Relative to the column of the '#' of '#define'
(ex. 3 ==> the body is indented starting 3 columns at the right of '#')

Default: 8" +Enabled=false +EditorType=numeric +CallName="pp_multiline_define_body_indent=" +MinVal=-32 +MaxVal=32 +ValueDefault=8 + +[Pp Indent Case] +Category=10 +Description="(815)Whether to indent case statements between #if, #else, and #endif.
Only applies to the indent of the preprocessor that the case statements
directly inside of.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_case=true|pp_indent_case=false +ValueDefault=true + +[Pp Indent Func Def] +Category=10 +Description="(816)Whether to indent whole function definitions between #if, #else, and #endif.
Only applies to the indent of the preprocessor that the function definition
is directly inside of.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_func_def=true|pp_indent_func_def=false +ValueDefault=true + +[Pp Indent Extern] +Category=10 +Description="(817)Whether to indent extern C blocks between #if, #else, and #endif.
Only applies to the indent of the preprocessor that the extern block is
directly inside of.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_extern=true|pp_indent_extern=false +ValueDefault=true + +[Pp Indent Brace] +Category=10 +Description="(818)How to indent braces directly inside #if, #else, and #endif.
Requires pp_if_indent_code=true and only applies to the indent of the
preprocessor that the braces are directly inside of.
0: No extra indent
1: Indent by one level
-1: Preserve original indentation

Default: 1" +Enabled=false +EditorType=numeric +CallName="pp_indent_brace=" +MinVal=-1 +MaxVal=1 +ValueDefault=1 + +[Pp Warn Unbalanced If] +Category=10 +Description="(819)Whether to print warning messages for unbalanced #if and #else blocks.
This will print a message in the following cases:
- if an #ifdef block ends on a different indent level than
where it started from. Example:

#ifdef TEST
int i;
{
int j;
#endif

- an #elif/#else block ends on a different indent level than
the corresponding #ifdef block. Example:

#ifdef TEST
int i;
#else
}
int j;
#endif" +Enabled=false +EditorType=boolean +TrueFalse=pp_warn_unbalanced_if=true|pp_warn_unbalanced_if=false +ValueDefault=false + +[Include Category 0] +Category=11 +Description="(820)The regex for include category with priority 0." +Enabled=false +CallName=include_category_0= +EditorType=string +ValueDefault= + +[Include Category 1] +Category=11 +Description="(821)The regex for include category with priority 1." +Enabled=false +CallName=include_category_1= +EditorType=string +ValueDefault= + +[Include Category 2] +Category=11 +Description="(822)The regex for include category with priority 2." +Enabled=false +CallName=include_category_2= +EditorType=string +ValueDefault= + +[Use Indent Func Call Param] +Category=12 +Description="(823)true: indent_func_call_param will be used (default)
false: indent_func_call_param will NOT be used

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=use_indent_func_call_param=true|use_indent_func_call_param=false +ValueDefault=true + +[Use Indent Continue Only Once] +Category=12 +Description="(824)The value of the indentation for a continuation line is calculated
differently if the statement is:
- a declaration: your case with QString fileName ...
- an assignment: your case with pSettings = new QSettings( ...

At the second case the indentation value might be used twice:
- at the assignment
- at the function call (if present)

To prevent the double use of the indentation value, use this option with the
value 'true'.

true: indent_continue will be used only once
false: indent_continue will be used every time (default)

Requires indent_ignore_first_continue=false." +Enabled=false +EditorType=boolean +TrueFalse=use_indent_continue_only_once=true|use_indent_continue_only_once=false +ValueDefault=false + +[Indent Cpp Lambda Only Once] +Category=12 +Description="(825)The indentation can be:
- after the assignment, at the '[' character
- at the beginning of the lambda body

true: indentation will be at the beginning of the lambda body
false: indentation will be after the assignment (default)" +Enabled=false +EditorType=boolean +TrueFalse=indent_cpp_lambda_only_once=true|indent_cpp_lambda_only_once=false +ValueDefault=false + +[Use Sp After Angle Always] +Category=12 +Description="(826)Whether sp_after_angle takes precedence over sp_inside_fparen. This was the
historic behavior, but is probably not the desired behavior, so this is off
by default." +Enabled=false +EditorType=boolean +TrueFalse=use_sp_after_angle_always=true|use_sp_after_angle_always=false +ValueDefault=false + +[Use Options Overriding For Qt Macros] +Category=12 +Description="(827)Whether to apply special formatting for Qt SIGNAL/SLOT macros. Essentially,
this tries to format these so that they match Qt's normalized form (i.e. the
result of QMetaObject::normalizedSignature), which can slightly improve the
performance of the QObject::connect call, rather than how they would
otherwise be formatted.

See options_for_QT.cpp for details.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=use_options_overriding_for_qt_macros=true|use_options_overriding_for_qt_macros=false +ValueDefault=true + +[Use Form Feed No More As Whitespace Character] +Category=12 +Description="(828)If true: the form feed character is removed from the list of whitespace
characters. See https://en.cppreference.com/w/cpp/string/byte/isspace." +Enabled=false +EditorType=boolean +TrueFalse=use_form_feed_no_more_as_whitespace_character=true|use_form_feed_no_more_as_whitespace_character=false +ValueDefault=false + +[Warn Level Tabs Found In Verbatim String Literals] +Category=13 +Description="(829)(C#) Warning is given if doing tab-to-\t replacement and we have found one
in a C# verbatim string literal.

Default: 2" +Enabled=false +EditorType=numeric +CallName="warn_level_tabs_found_in_verbatim_string_literals=" +MinVal=1 +MaxVal=3 +ValueDefault=2 + +[Debug Max Number Of Loops] +Category=13 +Description="(830)Limit the number of loops.
Used by uncrustify.cpp to exit from infinite loop.
0: no limit." +Enabled=false +EditorType=numeric +CallName="debug_max_number_of_loops=" +MinVal= +MaxVal= +ValueDefault=0 + +[Debug Line Number To Protocol] +Category=13 +Description="(831)Set the number of the line to protocol;
Used in the function prot_the_line if the 2. parameter is zero.
0: nothing protocol." +Enabled=false +EditorType=numeric +CallName="debug_line_number_to_protocol=" +MinVal= +MaxVal= +ValueDefault=0 + +[Debug Timeout] +Category=13 +Description="(832)Set the number of second(s) before terminating formatting the current file,
0: no timeout.
only for linux" +Enabled=false +EditorType=numeric +CallName="debug_timeout=" +MinVal= +MaxVal= +ValueDefault=0 + +[Debug Truncate] +Category=13 +Description="(833)Set the number of characters to be printed if the text is too long,
0: do not truncate." +Enabled=false +EditorType=numeric +CallName="debug_truncate=" +MinVal=0 +MaxVal=960 ValueDefault=0 + +[Debug Sort The Tracks] +Category=13 +Description="(834)sort (or not) the tracking info.

Default: true" +Enabled=false +EditorType=boolean +TrueFalse=debug_sort_the_tracks=true|debug_sort_the_tracks=false +ValueDefault=true + +[Debug Decode The Flags] +Category=13 +Description="(835)decode (or not) the flags as a new line.
only if the -p option is set." +Enabled=false +EditorType=boolean +TrueFalse=debug_decode_the_flags=true|debug_decode_the_flags=false +ValueDefault=false + +[Set Numbering For Html Output] +Category=13 +Description="(836)insert the number of the line at the beginning of each line" +Enabled=false +EditorType=boolean +TrueFalse=set_numbering_for_html_output=true|set_numbering_for_html_output=false +ValueDefault=false diff --git a/src/IndentHandler.cpp b/src/IndentHandler.cpp index eca9791..f3eec88 100644 --- a/src/IndentHandler.cpp +++ b/src/IndentHandler.cpp @@ -23,27 +23,29 @@ #include "MainWindow.h" #include "SettingsPaths.h" #include "UiGuiErrorMessage.h" -//--- #include "UiGuiSettings.h" +#include "UiGuiIniFileParser.h" +#include "UiGuiSettings.h" //--- #include "TemplateBatchScript.h" -//--- #include "UiGuiIniFileParser.h" +#include +#include #include +#include #include #include #include +#include #include +#include #include #include +#include #include #include -//--- #include -//--- #include +#include //--- #include //--- #include //--- #include -//--- #include -//--- #include -//--- #include //--- #include //--- #include //--- #include @@ -73,12 +75,15 @@ its \a indenterID, which is the number of found indenter ini files in alphabetic order starting at index 0. */ -IndentHandler::IndentHandler(int indenterID, MainWindow *mainWindow, TQWidget *parent) - : TQWidget(parent), m_mainWindow(mainWindow), m_parent(parent), m_toolBoxContainerLayout(nullptr), - m_indenterSelectionCombobox(nullptr), m_indenterParameterHelpButton(nullptr), - m_indenterParameterCategoriesToolBox(nullptr), m_errorMessageDialog(nullptr) -//--- m_indenterSettings(nullptr) +IndentHandler::IndentHandler(int indenterID, MainWindow *mainWindow, TQWidget *parent) : + TQWidget(parent), m_mainWindow(mainWindow), m_parent(parent), + m_indenterSelectionCombobox(nullptr), m_indenterParameterHelpButton(nullptr), + m_indenterParameterCategoriesToolBox(nullptr), m_errorMessageDialog(nullptr), + m_toolBoxContainerLayout(nullptr), m_indenterSettings(nullptr) { + // Create the settings object, which loads all UiGui settings from a file. + m_settings = UiGuiSettings::getInstance(); + if (indenterID < 0) { indenterID = 0; @@ -173,7 +178,6 @@ IndentHandler::IndentHandler(int indenterID, MainWindow *mainWindow, TQWidget *p { m_indenterSelectionCombobox->insertStringList(availableIndenters); m_indenterSelectionCombobox->setCurrentItem(indenterID); - // MIKE make sure setIndeter() is invoked, so indenter is correctly set at start } } else @@ -226,17 +230,17 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- // Define the placeholder for parameter variables either in batch or bash programming. //--- TQString shellParameterPlaceholder = "$1"; //--- -//--- parameterInputFile = " " + _inputFileParameter + "\"" + shellParameterPlaceholder + "\""; +//--- parameterInputFile = " " + m_inputFileParameter + "\"" + shellParameterPlaceholder + "\""; //--- -//--- if (_outputFileParameter != "none" && _outputFileParameter != "stdout") +//--- if (m_outputFileParameter != "none" && m_outputFileParameter != "stdout") //--- { -//--- if (_outputFileName == _inputFileName) +//--- if (m_outputFileName == m_inputFileName) //--- { -//--- parameterOuputFile = " " + _outputFileParameter + "\"" + shellParameterPlaceholder + "\""; +//--- parameterOuputFile = " " + m_outputFileParameter + "\"" + shellParameterPlaceholder + "\""; //--- } //--- else //--- { -//--- parameterOuputFile = " " + _outputFileParameter + _outputFileName + ".tmp"; +//--- parameterOuputFile = " " + m_outputFileParameter + m_outputFileName + ".tmp"; //--- } //--- } //--- @@ -248,21 +252,21 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- } //--- // else if needed add the parameter to the indenter call string where the config file can be //--- // found. -//--- else if (_useCfgFileParameter != "none") +//--- else if (m_useCfgFileParameter != "none") //--- { -//--- parameterParameterFile = " " + _useCfgFileParameter + "\"./" + configFilename + "\""; +//--- parameterParameterFile = " " + m_useCfgFileParameter + "\"./" + configFilename + "\""; //--- } //--- //--- // Assemble indenter call string for parameters according to the set order. -//--- if (_parameterOrder == "ipo") +//--- if (m_parameterOrder == "ipo") //--- { //--- indenterCompleteCallString = parameterInputFile + parameterParameterFile + parameterOuputFile; //--- } -//--- else if (_parameterOrder == "pio") +//--- else if (m_parameterOrder == "pio") //--- { //--- indenterCompleteCallString = parameterParameterFile + parameterInputFile + parameterOuputFile; //--- } -//--- else if (_parameterOrder == "poi") +//--- else if (m_parameterOrder == "poi") //--- { //--- indenterCompleteCallString = parameterParameterFile + parameterOuputFile + parameterInputFile; //--- } @@ -276,15 +280,15 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- indenterCompleteCallString; //--- //--- // If the indenter writes to stdout pipe the output into a file -//--- if (_outputFileParameter == "stdout") +//--- if (m_outputFileParameter == "stdout") //--- { -//--- indenterCompleteCallString = indenterCompleteCallString + " >" + _outputFileName + ".tmp"; +//--- indenterCompleteCallString = indenterCompleteCallString + " >" + m_outputFileName + ".tmp"; //--- } //--- //--- // If the output filename is not the same as the input filename copy the output over the input. -//--- if (_outputFileName != _inputFileName) +//--- if (m_outputFileName != m_inputFileName) //--- { -//--- replaceInputFileCommand = "mv " + _outputFileName + ".tmp \"" + shellParameterPlaceholder + +//--- replaceInputFileCommand = "mv " + m_outputFileName + ".tmp \"" + shellParameterPlaceholder + //--- "\"\n"; //--- } //--- @@ -349,8 +353,8 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- */ //--- TQString IndentHandler::callExecutableIndenter(TQString sourceCode, TQString inputFileExtension) //--- { -//--- Q_ASSERT_X(!_inputFileName.isEmpty(), "callIndenter", "_inputFileName is empty"); -//--- // Q_ASSERT_X( !_outputFileName.isEmpty(), "callIndenter", "_outputFileName is empty" ); +//--- Q_ASSERT_X(!m_inputFileName.isEmpty(), "callIndenter", "m_inputFileName is empty"); +//--- // Q_ASSERT_X( !m_outputFileName.isEmpty(), "callIndenter", "m_outputFileName is empty" ); //--- Q_ASSERT_X(!m_indenterFileName.isEmpty(), "callIndenter", "m_indenterFileName is empty"); //--- //--- if (m_indenterFileName.isEmpty()) @@ -381,8 +385,8 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- } //--- //--- // Delete any previously used input src file and create a new input src file. -//--- TQFile::remove(m_tempDirectoryStr + "/" + _inputFileName + inputFileExtension); -//--- TQFile inputSrcFile(m_tempDirectoryStr + "/" + _inputFileName + inputFileExtension); +//--- TQFile::remove(m_tempDirectoryStr + "/" + m_inputFileName + inputFileExtension); +//--- TQFile inputSrcFile(m_tempDirectoryStr + "/" + m_inputFileName + inputFileExtension); //--- // Write the source code to the input file for the indenter //--- if (inputSrcFile.open(TQFile::ReadWrite | TQFile::Text)) //--- { @@ -398,20 +402,20 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- } //--- //--- // Set the input file for the to be called indenter. -//--- if (_inputFileParameter.trimmed() == "<" || _inputFileParameter == "stdin") +//--- if (m_inputFileParameter.trimmed() == "<" || m_inputFileParameter == "stdin") //--- { //--- parameterInputFile = ""; //--- indentProcess.setStandardInputFile(inputSrcFile.fileName()); //--- } //--- else //--- { -//--- parameterInputFile = " " + _inputFileParameter + _inputFileName + inputFileExtension; +//--- parameterInputFile = " " + m_inputFileParameter + m_inputFileName + inputFileExtension; //--- } //--- //--- // Set the output file for the to be called indenter. -//--- if (_outputFileParameter != "none" && _outputFileParameter != "stdout") +//--- if (m_outputFileParameter != "none" && m_outputFileParameter != "stdout") //--- { -//--- parameterOuputFile = " " + _outputFileParameter + _outputFileName + inputFileExtension; +//--- parameterOuputFile = " " + m_outputFileParameter + m_outputFileName + inputFileExtension; //--- } //--- //--- // If the config file name is empty it is assumed that all parameters are sent via command line @@ -421,22 +425,22 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- parameterParameterFile = " " + parameterString; //--- } //--- // if needed add the parameter to the indenter call string where the config file can be found -//--- else if (_useCfgFileParameter != "none") +//--- else if (m_useCfgFileParameter != "none") //--- { -//--- parameterParameterFile = " " + _useCfgFileParameter + "\"" + m_tempDirectoryStr + "/" + +//--- parameterParameterFile = " " + m_useCfgFileParameter + "\"" + m_tempDirectoryStr + "/" + //--- m_globalConfigFilename + "\""; //--- } //--- //--- // Assemble indenter call string for parameters according to the set order. -//--- if (_parameterOrder == "ipo") +//--- if (m_parameterOrder == "ipo") //--- { //--- indenterCompleteCallString = parameterInputFile + parameterParameterFile + parameterOuputFile; //--- } -//--- else if (_parameterOrder == "pio") +//--- else if (m_parameterOrder == "pio") //--- { //--- indenterCompleteCallString = parameterParameterFile + parameterInputFile + parameterOuputFile; //--- } -//--- else if (_parameterOrder == "poi") +//--- else if (m_parameterOrder == "poi") //--- { //--- indenterCompleteCallString = parameterParameterFile + parameterOuputFile + parameterInputFile; //--- } @@ -560,7 +564,7 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- if (calledProcessSuccessfully) //--- { //--- // If the indenter results are written to stdout, read them from there... -//--- if (indentProcess.exitCode() == 0 && _outputFileParameter == "stdout") +//--- if (indentProcess.exitCode() == 0 && m_outputFileParameter == "stdout") //--- { //--- formattedSourceCode = indentProcess.readAllStandardOutput(); //--- tqDebug() << __LINE__ << " " << __FUNCTION__ << ": Read indenter output from StdOut."; @@ -568,7 +572,7 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- // ... else read the output file generated by the indenter call. //--- else //--- { -//--- TQFile outSrcFile(m_tempDirectoryStr + "/" + _outputFileName + inputFileExtension); +//--- TQFile outSrcFile(m_tempDirectoryStr + "/" + m_outputFileName + inputFileExtension); //--- if (outSrcFile.open(TQFile::ReadOnly | TQFile::Text)) //--- { //--- TQTextStream outSrcStrm(&outSrcFile); @@ -591,8 +595,8 @@ void IndentHandler::contextMenuEvent(TQContextMenuEvent *event) //--- } //--- //--- // Delete the temporary input and output files. -//--- TQFile::remove(m_tempDirectoryStr + "/" + _outputFileName + inputFileExtension); -//--- TQFile::remove(m_tempDirectoryStr + "/" + _inputFileName + inputFileExtension); +//--- TQFile::remove(m_tempDirectoryStr + "/" + m_outputFileName + inputFileExtension); +//--- TQFile::remove(m_tempDirectoryStr + "/" + m_inputFileName + inputFileExtension); //--- //--- return formattedSourceCode; //--- } @@ -605,54 +609,54 @@ TQString IndentHandler::getParameterString() TQString parameterString = ""; //--- // generate parameter string for all boolean values -//--- foreach(ParamBoolean pBoolean, _paramBooleans) +//--- foreach(ParamBoolean pBoolean, m_paramBooleans) //--- { //--- if (pBoolean.checkBox->isChecked()) //--- { //--- if (!pBoolean.trueString.isEmpty()) //--- { -//--- parameterString += pBoolean.trueString + _cfgFileParameterEnding; +//--- parameterString += pBoolean.trueString + m_cfgFileParameterEnding; //--- } //--- } //--- else //--- { //--- if (!pBoolean.falseString.isEmpty()) //--- { -//--- parameterString += pBoolean.falseString + _cfgFileParameterEnding; +//--- parameterString += pBoolean.falseString + m_cfgFileParameterEnding; //--- } //--- } //--- } //--- //--- // generate parameter string for all numeric values -//--- foreach(ParamNumeric pNumeric, _paramNumerics) +//--- foreach(ParamNumeric pNumeric, m_paramNumerics) //--- { //--- if (pNumeric.valueEnabledChkBox->isChecked()) //--- { //--- parameterString += pNumeric.paramCallName + TQString::number(pNumeric.spinBox->value()) + -//--- _cfgFileParameterEnding; +//--- m_cfgFileParameterEnding; //--- } //--- } //--- //--- // generate parameter string for all string values -//--- foreach(ParamString pString, _paramStrings) +//--- foreach(ParamString pString, m_paramStrings) //--- { //--- if (!pString.lineEdit->text().isEmpty() && pString.valueEnabledChkBox->isChecked()) //--- { //--- // Create parameter definition for each value devided by a | sign. //--- foreach(TQString paramValue, pString.lineEdit->text().split("|")) //--- { -//--- parameterString += pString.paramCallName + paramValue + _cfgFileParameterEnding; +//--- parameterString += pString.paramCallName + paramValue + m_cfgFileParameterEnding; //--- } //--- } //--- } //--- //--- // generate parameter string for all multiple choice values -//--- foreach(ParamMultiple pMultiple, _paramMultiples) +//--- foreach(ParamMultiple pMultiple, m_paramMultiples) //--- { //--- if (pMultiple.valueEnabledChkBox->isChecked()) //--- { //--- parameterString += pMultiple.choicesStrings.at(pMultiple.comboBox->currentIndex()) + -//--- _cfgFileParameterEnding; +//--- m_cfgFileParameterEnding; //--- } //--- } @@ -680,26 +684,21 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) TQFile cfgFile(filePathName); TQString cfgFileData = TQString::null; - // If the config file to be loaded does not exist, leave all values as they are and return false. if (!cfgFile.exists()) { + // If the config file to be loaded does not exist, leave all values as they are and return false return false; } - // else if the to be read config file exists, retrieve its whole content. else { - // Open the config file and read all data + // else if the config file exists, retrieve its whole content cfgFile.open(IO_ReadOnly | IO_Translate); cfgFileData = TQString(cfgFile.readAll()); cfgFile.close(); } - int index; - int crPos; - int paramValue = 0; - TQString paramValueStr = ""; //--- // Search for name of each boolean parameter and set its value if found. -//--- foreach(ParamBoolean pBoolean, _paramBooleans) +//--- for (const ParamBoolean &pBoolean : m_paramBooleans) //--- { //--- // boolean value that will be assigned to the checkbox //--- bool paramValue = false; @@ -761,7 +760,7 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) //--- } //--- //--- // Search for name of each numeric parameter and set the value found behind it. -//--- foreach(ParamNumeric pNumeric, _paramNumerics) +//--- foreach(ParamNumeric pNumeric, m_paramNumerics) //--- { //--- index = cfgFileData.indexOf(pNumeric.paramCallName, 0, TQt::CaseInsensitive); //--- // parameter was found in config file @@ -772,7 +771,7 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) //--- //--- // Find the end of the parameter by searching for set config file parameter ending. Most of //--- // time this is a carriage return. -//--- crPos = cfgFileData.indexOf(_cfgFileParameterEnding, index + 1); +//--- int crPos = cfgFileData.indexOf(m_cfgFileParameterEnding, index + 1); //--- //--- // get the number and convert it to int //--- TQString test = cfgFileData.mid(index, crPos - index); @@ -797,7 +796,7 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) //--- } //--- //--- // Search for name of each string parameter and set it. -//--- foreach(ParamString pString, _paramStrings) +//--- foreach(ParamString pString, m_paramStrings) //--- { //--- paramValueStr = ""; //--- // The number of the found values for this parameter name. @@ -815,7 +814,7 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) //--- //--- // Find the end of the parameter by searching for set config file parameter ending. Most of //--- // time this is a carriage return. -//--- crPos = cfgFileData.indexOf(_cfgFileParameterEnding, index + 1); +//--- crPos = cfgFileData.indexOf(m_cfgFileParameterEnding, index + 1); //--- //--- // Get the string and remember it. //--- if (numberOfValues < 2) @@ -846,7 +845,7 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) //--- } //--- //--- // search for name of each multiple choice parameter and set it -//--- foreach(ParamMultiple pMultiple, _paramMultiples) +//--- foreach(ParamMultiple pMultiple, m_paramMultiples) //--- { //--- int i = 0; //--- index = -1; @@ -881,41 +880,41 @@ bool IndentHandler::loadConfigFile(const TQString &filePathName) */ void IndentHandler::resetToDefaultValues() { -//--- // Search for name of each boolean parameter and set its value if found. -//--- foreach(ParamBoolean pBoolean, _paramBooleans) -//--- { -//--- // Boolean value that will be assigned to the checkbox. -//--- bool defaultValue = m_indenterSettings->value(pBoolean.paramName + "/ValueDefault").toBool(); -//--- pBoolean.checkBox->setChecked(defaultValue); -//--- } -//--- -//--- // Search for name of each numeric parameter and set the value found behind it. -//--- foreach(ParamNumeric pNumeric, _paramNumerics) -//--- { -//--- int defaultValue = m_indenterSettings->value(pNumeric.paramName + "/ValueDefault").toInt(); -//--- pNumeric.spinBox->setValue(defaultValue); -//--- pNumeric.valueEnabledChkBox->setChecked(m_indenterSettings->value( -//--- pNumeric.paramName + "/Enabled").toBool()); -//--- } -//--- -//--- // Search for name of each string parameter and set it. -//--- foreach(ParamString pString, _paramStrings) -//--- { -//--- TQString defaultValue = -//--- m_indenterSettings->value(pString.paramName + "/ValueDefault").toString(); -//--- pString.lineEdit->setText(defaultValue); -//--- pString.valueEnabledChkBox->setChecked(m_indenterSettings->value( -//--- pString.paramName + "/Enabled").toBool()); -//--- } -//--- -//--- // Search for name of each multiple choice parameter and set it. -//--- foreach(ParamMultiple pMultiple, _paramMultiples) -//--- { -//--- int defaultValue = m_indenterSettings->value(pMultiple.paramName + "/ValueDefault").toInt(); -//--- pMultiple.comboBox->setCurrentIndex(defaultValue); -//--- pMultiple.valueEnabledChkBox->setChecked(m_indenterSettings->value(pMultiple.paramName + -//--- "/Enabled").toBool()); -//--- } + // Search for name of each boolean parameter and set its value if found. + for (ParamBoolean &pBoolean : m_paramBooleans) + { + // Boolean value that will be assigned to the checkbox. + bool defaultValue = m_indenterSettings->value(pBoolean.paramName + "/ValueDefault").toBool(); + pBoolean.checkBox->setChecked(defaultValue); + } + + // Search for name of each numeric parameter and set the value found behind it. + for (ParamNumeric &pNumeric : m_paramNumerics) + { + int defaultValue = m_indenterSettings->value(pNumeric.paramName + "/ValueDefault").toInt(); + pNumeric.spinBox->setValue(defaultValue); + pNumeric.valueEnabledChkBox->setChecked(m_indenterSettings->value( + pNumeric.paramName + "/Enabled").toBool()); + } + + // Search for name of each string parameter and set it. + for (ParamString &pString : m_paramStrings) + { + TQString defaultValue = + m_indenterSettings->value(pString.paramName + "/ValueDefault").toString(); + pString.lineEdit->setText(defaultValue); + pString.valueEnabledChkBox->setChecked(m_indenterSettings->value( + pString.paramName + "/Enabled").toBool()); + } + + // Search for name of each multiple choice parameter and set it. + for (ParamMultiple &pMultiple : m_paramMultiples) + { + int defaultValue = m_indenterSettings->value(pMultiple.paramName + "/ValueDefault").toInt(); + pMultiple.comboBox->setCurrentItem(defaultValue); + pMultiple.valueEnabledChkBox->setChecked(m_indenterSettings->value(pMultiple.paramName + + "/Enabled").toBool()); + } } /* @@ -930,329 +929,326 @@ void IndentHandler::readIndentIniFile(const TQString &iniFilePath) return; } -//--- // open the ini-file that contains all available indenter settings with their additional infos -//--- m_indenterSettings = new UiGuiIniFileParser(iniFilePath); -//--- -//--- TQStringList categories; -//--- //TQString indenterGroupString = ""; -//--- TQString paramToolTip = ""; -//--- -//--- // -//--- // parse ini file indenter header -//--- // -//--- -//--- _indenterName = m_indenterSettings->value("header/indenterName").toString(); -//--- m_indenterFileName = m_indenterSettings->value("header/indenterFileName").toString(); -//--- m_globalConfigFilename = m_indenterSettings->value("header/configFilename").toString(); -//--- _useCfgFileParameter = m_indenterSettings->value("header/useCfgFileParameter").toString(); -//--- _cfgFileParameterEnding = m_indenterSettings->value("header/cfgFileParameterEnding").toString(); -//--- if (_cfgFileParameterEnding == "cr") -//--- { -//--- _cfgFileParameterEnding = "\n"; -//--- } -//--- _indenterShowHelpParameter = m_indenterSettings->value("header/showHelpParameter").toString(); -//--- -//--- if (m_indenterFileName.isEmpty()) -//--- { -//--- m_errorMessageDialog->showMessage(tr("Indenter ini file header error"), tr( -//--- "The loaded indenter ini file \"%1\"has a faulty header. At least the indenters file name is not set.").arg( -//--- iniFilePath)); -//--- } -//--- -//--- // Read the parameter order. Possible values are (p=parameter[file] i=inputfile o=outputfile) -//--- // pio, ipo, iop -//--- _parameterOrder = m_indenterSettings->value("header/parameterOrder", "pio").toString(); -//--- _inputFileParameter = m_indenterSettings->value("header/inputFileParameter").toString(); -//--- _inputFileName = m_indenterSettings->value("header/inputFileName").toString(); -//--- _outputFileParameter = m_indenterSettings->value("header/outputFileParameter").toString(); -//--- _outputFileName = m_indenterSettings->value("header/outputFileName").toString(); -//--- _fileTypes = m_indenterSettings->value("header/fileTypes").toString(); -//--- _fileTypes.replace('|', " "); -//--- -//--- // read the categories names which are separated by "|" -//--- TQString categoriesStr = m_indenterSettings->value("header/categories").toString(); -//--- categories = categoriesStr.split("|"); -//--- // Assure that the category list is never empty. At least contain a "general" section. -//--- if (categories.isEmpty()) -//--- { -//--- categories.append("General"); -//--- } -//--- -//--- IndenterParameterCategoryPage categoryPage; -//--- -//--- // create a page for each category and store its references in a toolboxpage-array -//--- foreach(TQString category, categories) -//--- { -//--- categoryPage.widget = new TQWidget(); -//--- categoryPage.widget->setObjectName(category); -//--- categoryPage.widget->setSizePolicy(TQSizePolicy::MinimumExpanding, -//--- TQSizePolicy::MinimumExpanding); -//--- categoryPage.vboxLayout = new TQVBoxLayout(categoryPage.widget); -//--- categoryPage.vboxLayout->setSpacing(6); -//--- categoryPage.vboxLayout->setMargin(9); -//--- categoryPage.vboxLayout->setObjectName(category); -//--- _indenterParameterCategoryPages.append(categoryPage); -//--- m_indenterParameterCategoriesToolBox->addItem(categoryPage.widget, category); -//--- } -//--- -//--- // -//--- // parse ini file indenter parameters -//--- // -//--- -//--- // read all possible parameters written in brackets [] -//--- _indenterParameters = m_indenterSettings->childGroups(); -//--- -//--- // read each parameter to create the corresponding input field -//--- foreach(TQString indenterParameter, _indenterParameters) -//--- { -//--- // if it is not the indent header definition read the parameter and add it to -//--- // the corresponding category toolbox page -//--- if (indenterParameter != "header") -//--- { -//--- // read to which category the parameter belongs -//--- int category = m_indenterSettings->value(indenterParameter + "/Category").toInt(); -//--- // Assure that the category number is never greater than the available categories. -//--- if (category > _indenterParameterCategoryPages.size() - 1) -//--- { -//--- category = _indenterParameterCategoryPages.size() - 1; -//--- } -//--- // read which type of input field the parameter needs -//--- TQString editType = m_indenterSettings->value(indenterParameter + "/EditorType").toString(); -//--- -//--- // edit type is numeric so create a spinbox with label -//--- if (editType == "numeric") -//--- { -//--- // read the parameter name as it is used at the command line or in its config file -//--- TQString parameterCallName = -//--- m_indenterSettings->value(indenterParameter + "/CallName").toString(); -//--- -//--- // create checkbox which enables or disables the parameter -//--- TQCheckBox *chkBox = new TQCheckBox(_indenterParameterCategoryPages.at(category).widget); -//--- chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); -//--- chkBox->setToolTip( -//--- "Enables/disables the parameter. If disabled the indenters default value will be used."); -//--- chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); -//--- int left, top, right, bottom; -//--- chkBox->getContentsMargins(&left, &top, &right, &bottom); -//--- chkBox->setContentsMargins(left, top, 0, bottom); -//--- -//--- // create the spinbox -//--- TQSpinBox *spinBox = new TQSpinBox(_indenterParameterCategoryPages.at(category).widget); -//--- paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); -//--- spinBox->setToolTip(paramToolTip); -//--- spinBox->setMaximumWidth(50); -//--- spinBox->setMinimumWidth(50); -//--- if (m_mainWindow != nullptr) -//--- { -//--- spinBox->installEventFilter(m_mainWindow); -//--- } -//--- if (m_indenterSettings->value(indenterParameter + "/MinVal").toString() != "") -//--- { -//--- spinBox->setMinimum(m_indenterSettings->value(indenterParameter + "/MinVal").toInt()); -//--- } -//--- else -//--- { -//--- spinBox->setMinimum(0); -//--- } -//--- if (m_indenterSettings->value(indenterParameter + "/MaxVal").toString() != "") -//--- { -//--- spinBox->setMaximum(m_indenterSettings->value(indenterParameter + "/MaxVal").toInt()); -//--- } -//--- else -//--- { -//--- spinBox->setMaximum(2000); -//--- } -//--- -//--- // create the label -//--- TQLabel *label = new TQLabel(_indenterParameterCategoryPages.at(category).widget); -//--- label->setText(indenterParameter); -//--- label->setBuddy(spinBox); -//--- label->setToolTip(paramToolTip); -//--- if (m_mainWindow != nullptr) -//--- { -//--- label->installEventFilter(m_mainWindow); -//--- } -//--- -//--- // put all into a layout and add it to the toolbox page -//--- TQHBoxLayout *hboxLayout = new TQHBoxLayout(); -//--- hboxLayout->addWidget(chkBox); -//--- hboxLayout->addWidget(spinBox); -//--- hboxLayout->addWidget(label); -//--- _indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); -//--- -//--- // remember parameter name and reference to its spinbox -//--- ParamNumeric paramNumeric; -//--- paramNumeric.paramName = indenterParameter; -//--- paramNumeric.paramCallName = parameterCallName; -//--- paramNumeric.spinBox = spinBox; -//--- paramNumeric.label = label; -//--- paramNumeric.valueEnabledChkBox = chkBox; -//--- paramNumeric.spinBox->setValue(m_indenterSettings->value(paramNumeric.paramName + -//--- "/ValueDefault").toInt()); -//--- _paramNumerics.append(paramNumeric); -//--- -//--- TQObject::connect(spinBox, SIGNAL(valueChanged(int)), this, -//--- SLOT(handleChangedIndenterSettings())); -//--- TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); -//--- } -//--- // edit type is boolean so create a checkbox -//--- else if (editType == "boolean") -//--- { -//--- // create the checkbox, make its settings and add it to the toolbox page -//--- TQCheckBox *chkBox = new TQCheckBox(_indenterParameterCategoryPages.at(category).widget); -//--- chkBox->setText(indenterParameter); -//--- paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); -//--- chkBox->setToolTip(paramToolTip); -//--- if (m_mainWindow != nullptr) -//--- { -//--- chkBox->installEventFilter(m_mainWindow); -//--- } -//--- _indenterParameterCategoryPages.at(category).vboxLayout->addWidget(chkBox); -//--- -//--- // remember parameter name and reference to its checkbox -//--- ParamBoolean paramBoolean; -//--- paramBoolean.paramName = indenterParameter; -//--- paramBoolean.checkBox = chkBox; -//--- TQStringList trueFalseStrings = -//--- m_indenterSettings->value(indenterParameter + "/TrueFalse").toString().split("|"); -//--- paramBoolean.trueString = trueFalseStrings.at(0); -//--- paramBoolean.falseString = trueFalseStrings.at(1); -//--- paramBoolean.checkBox->setChecked(m_indenterSettings->value(paramBoolean.paramName + -//--- "/ValueDefault").toBool()); -//--- _paramBooleans.append(paramBoolean); -//--- -//--- TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); -//--- } -//--- // edit type is numeric so create a line edit with label -//--- else if (editType == "string") -//--- { -//--- // read the parameter name as it is used at the command line or in its config file -//--- TQString parameterCallName = -//--- m_indenterSettings->value(indenterParameter + "/CallName").toString(); -//--- -//--- // create check box which enables or disables the parameter -//--- TQCheckBox *chkBox = new TQCheckBox(_indenterParameterCategoryPages.at(category).widget); -//--- chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); -//--- chkBox->setToolTip( -//--- "Enables/disables the parameter. If disabled the indenters default value will be used."); -//--- chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); -//--- int left, top, right, bottom; -//--- chkBox->getContentsMargins(&left, &top, &right, &bottom); -//--- chkBox->setContentsMargins(left, top, 0, bottom); -//--- -//--- // create the line edit -//--- TQLineEdit *lineEdit = new TQLineEdit(_indenterParameterCategoryPages.at(category).widget); -//--- paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); -//--- lineEdit->setToolTip(paramToolTip); -//--- lineEdit->setMaximumWidth(50); -//--- lineEdit->setMinimumWidth(50); -//--- if (m_mainWindow != nullptr) -//--- { -//--- lineEdit->installEventFilter(m_mainWindow); -//--- } -//--- -//--- // create the label -//--- TQLabel *label = new TQLabel(_indenterParameterCategoryPages.at(category).widget); -//--- label->setText(indenterParameter); -//--- label->setBuddy(lineEdit); -//--- label->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::Preferred); -//--- label->setToolTip(paramToolTip); -//--- if (m_mainWindow != nullptr) -//--- { -//--- label->installEventFilter(m_mainWindow); -//--- } -//--- -//--- // put all into a layout and add it to the toolbox page -//--- TQHBoxLayout *hboxLayout = new TQHBoxLayout(); -//--- hboxLayout->addWidget(chkBox); -//--- hboxLayout->addWidget(lineEdit); -//--- hboxLayout->addWidget(label); -//--- _indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); -//--- -//--- // remember parameter name and reference to its line edit -//--- ParamString paramString; -//--- paramString.paramName = indenterParameter; -//--- paramString.paramCallName = parameterCallName; -//--- paramString.lineEdit = lineEdit; -//--- paramString.label = label; -//--- paramString.valueEnabledChkBox = chkBox; -//--- paramString.lineEdit->setText(m_indenterSettings->value(paramString.paramName + -//--- "/ValueDefault").toString()); -//--- _paramStrings.append(paramString); -//--- -//--- TQObject::connect(lineEdit, SIGNAL(editingFinished()), this, -//--- SLOT(handleChangedIndenterSettings())); -//--- TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); -//--- } -//--- // edit type is multiple so create a combobox with label -//--- else if (editType == "multiple") -//--- { -//--- // read the parameter name as it is used at the command line or in its config file -//--- TQString parameterCallName = -//--- m_indenterSettings->value(indenterParameter + "/CallName").toString(); -//--- -//--- // create checkbox which enables or disables the parameter -//--- TQCheckBox *chkBox = new TQCheckBox(_indenterParameterCategoryPages.at(category).widget); -//--- chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); -//--- chkBox->setToolTip( -//--- "Enables/disables the parameter. If disabled the indenters default value will be used."); -//--- chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); -//--- int left, top, right, bottom; -//--- chkBox->getContentsMargins(&left, &top, &right, &bottom); -//--- chkBox->setContentsMargins(left, top, 0, bottom); -//--- -//--- // create the combo box -//--- TQComboBox *comboBox = new TQComboBox(_indenterParameterCategoryPages.at( -//--- category).widget); -//--- TQStringList choicesStrings = -//--- m_indenterSettings->value(indenterParameter + "/Choices").toString().split("|"); -//--- TQStringList choicesStringsReadable = m_indenterSettings->value( -//--- indenterParameter + "/ChoicesReadable").toString().split("|", TQString::SkipEmptyParts); -//--- if (choicesStringsReadable.isEmpty()) -//--- { -//--- comboBox->addItems(choicesStrings); -//--- } -//--- else -//--- { -//--- comboBox->addItems(choicesStringsReadable); -//--- } -//--- paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); -//--- comboBox->setToolTip(paramToolTip); -//--- if (m_mainWindow != nullptr) -//--- { -//--- comboBox->installEventFilter(m_mainWindow); -//--- } -//--- -//--- // put all into a layout and add it to the toolbox page -//--- TQHBoxLayout *hboxLayout = new TQHBoxLayout(); -//--- hboxLayout->addWidget(chkBox); -//--- hboxLayout->addWidget(comboBox); -//--- _indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); -//--- -//--- // remember parameter name and reference to its lineedit -//--- ParamMultiple paramMultiple; -//--- paramMultiple.paramName = indenterParameter; -//--- paramMultiple.paramCallName = parameterCallName; -//--- paramMultiple.comboBox = comboBox; -//--- paramMultiple.choicesStrings = choicesStrings; -//--- paramMultiple.choicesStringsReadable = choicesStringsReadable; -//--- paramMultiple.valueEnabledChkBox = chkBox; -//--- paramMultiple.comboBox->setCurrentIndex(m_indenterSettings->value(paramMultiple.paramName + -//--- "/ValueDefault").toInt()); -//--- _paramMultiples.append(paramMultiple); -//--- -//--- TQObject::connect(comboBox, SIGNAL(activated(int)), this, -//--- SLOT(handleChangedIndenterSettings())); -//--- TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); -//--- } -//--- } -//--- } -//--- -//--- // put a spacer at each page end -//--- foreach(IndenterParameterCategoryPage categoryPage, _indenterParameterCategoryPages) -//--- { -//--- categoryPage.vboxLayout->addStretch(); -//--- } + // open the ini-file that contains all available indenter settings with their additional infos + m_indenterSettings = new UiGuiIniFileParser(iniFilePath); + + // + // parse ini file indenter header + // + + m_indenterName = m_indenterSettings->value("header/indenterName").toString(); + m_indenterFileName = m_indenterSettings->value("header/indenterFileName").toString(); + m_globalConfigFilename = m_indenterSettings->value("header/configFilename").toString(); + m_useCfgFileParameter = m_indenterSettings->value("header/useCfgFileParameter").toString(); + m_cfgFileParameterEnding = m_indenterSettings->value("header/cfgFileParameterEnding").toString(); + if (m_cfgFileParameterEnding == "cr") + { + m_cfgFileParameterEnding = "\n"; + } + m_indenterShowHelpParameter = m_indenterSettings->value("header/showHelpParameter").toString(); + + if (m_indenterFileName.isEmpty()) + { + m_errorMessageDialog->showMessage(tr("Indenter ini file header error"), + tr("The loaded indenter ini file \"%1\"has a faulty header. At least the indenter file name is not set."). + arg(iniFilePath)); + } + + // Read the parameter order. Possible values are (p=parameter[file] i=inputfile o=outputfile) + // pio, ipo, iop + m_parameterOrder = m_indenterSettings->value("header/parameterOrder", "pio").toString(); + m_inputFileParameter = m_indenterSettings->value("header/inputFileParameter").toString(); + m_inputFileName = m_indenterSettings->value("header/inputFileName").toString(); + m_outputFileParameter = m_indenterSettings->value("header/outputFileParameter").toString(); + m_outputFileName = m_indenterSettings->value("header/outputFileName").toString(); + m_fileTypes = m_indenterSettings->value("header/fileTypes").toString(); + m_fileTypes.replace('|', " "); + + // read the categories names which are separated by "|" + TQString categoriesStr = m_indenterSettings->value("header/categories").toString(); + TQStringList categories = TQStringList::split('|', categoriesStr); + // Assure that the category list is never empty. At least contain a "general" section. + if (categories.isEmpty()) + { + categories.append("General"); + } + + IndenterParameterCategoryPage categoryPage; + + // For some unknown reasons, TQToolbox does not display the content of the first + // widget once the indenter is changed. To work around this problem we insert a + // dummy widget before the real categories and we will get rid of it at the end + TQWidget *dummyWidget = new TQWidget(); + m_indenterParameterCategoriesToolBox->addItem(dummyWidget, "Dummy"); + + // create a page for each category and store its references in a toolboxpage-array + for (const TQString &category : categories) + { + tqWarning("Creating category "+category); + categoryPage.widget = new TQWidget(); + categoryPage.widget->setName(category.local8Bit()); + categoryPage.widget->setSizePolicy(TQSizePolicy::MinimumExpanding, + TQSizePolicy::MinimumExpanding); + categoryPage.vboxLayout = new TQVBoxLayout(categoryPage.widget); + categoryPage.vboxLayout->setSpacing(6); + categoryPage.vboxLayout->setMargin(9); + categoryPage.vboxLayout->setName(category.local8Bit()); + m_indenterParameterCategoryPages.append(categoryPage); + m_indenterParameterCategoriesToolBox->addItem(categoryPage.widget, category); + } + + // + // parse ini file indenter parameters + // + + // read all possible parameters written in brackets [] + m_indenterParameters = m_indenterSettings->childGroups(); + + // read each parameter to create the corresponding input field + for (const TQString &indenterParameter : m_indenterParameters) + { + // if it is not the indent header definition read the parameter and add it to + // the corresponding category toolbox page + if (indenterParameter != "header") + { + // read to which category the parameter belongs + int category = m_indenterSettings->value(indenterParameter + "/Category").toInt(); + // Assure that the category number is never greater than the available categories. + if (category > m_indenterParameterCategoryPages.size() - 1) + { + category = m_indenterParameterCategoryPages.size() - 1; + } + // read which type of input field the parameter needs + TQString editType = m_indenterSettings->value(indenterParameter + "/EditorType").toString(); + + // edit type is numeric so create a spinbox with label + if (editType == "numeric") + { + // read the parameter name as it is used at the command line or in its config file + TQString parameterCallName = + m_indenterSettings->value(indenterParameter + "/CallName").toString(); + + // create checkbox which enables or disables the parameter + TQCheckBox *chkBox = new TQCheckBox(m_indenterParameterCategoryPages.at(category).widget); + chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); + TQToolTip::add(chkBox, + "Enables/disables the parameter. If disabled the indenters default value will be used."); + chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + + // create the spinbox + TQSpinBox *spinBox = new TQSpinBox(m_indenterParameterCategoryPages.at(category).widget); + TQString paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); + TQToolTip::add(spinBox, paramToolTip); + spinBox->setMaximumWidth(50); + spinBox->setMinimumWidth(50); + if (m_mainWindow != nullptr) + { + spinBox->installEventFilter(m_mainWindow); + } + if (m_indenterSettings->value(indenterParameter + "/MinVal").toString() != "") + { + spinBox->setMinValue(m_indenterSettings->value(indenterParameter + "/MinVal").toInt()); + } + else + { + spinBox->setMinValue(0); + } + if (m_indenterSettings->value(indenterParameter + "/MaxVal").toString() != "") + { + spinBox->setMaxValue(m_indenterSettings->value(indenterParameter + "/MaxVal").toInt()); + } + else + { + spinBox->setMaxValue(2000); + } + + // create the label + TQLabel *label = new TQLabel(m_indenterParameterCategoryPages.at(category).widget); + label->setText(indenterParameter); + label->setBuddy(spinBox); + TQToolTip::add(label, paramToolTip); + if (m_mainWindow != nullptr) + { + label->installEventFilter(m_mainWindow); + } + + // put all into a layout and add it to the toolbox page + TQHBoxLayout *hboxLayout = new TQHBoxLayout(); + hboxLayout->addWidget(chkBox); + hboxLayout->addWidget(spinBox); + hboxLayout->addWidget(label); + m_indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); + + // remember parameter name and reference to its spinbox + ParamNumeric paramNumeric; + paramNumeric.paramName = indenterParameter; + paramNumeric.paramCallName = parameterCallName; + paramNumeric.spinBox = spinBox; + paramNumeric.label = label; + paramNumeric.valueEnabledChkBox = chkBox; + paramNumeric.spinBox->setValue(m_indenterSettings->value(paramNumeric.paramName + + "/ValueDefault").toInt()); + m_paramNumerics.append(paramNumeric); + + TQObject::connect(spinBox, SIGNAL(valueChanged(int)), this, + SLOT(handleChangedIndenterSettings())); + TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); + } + // edit type is boolean so create a checkbox + else if (editType == "boolean") + { + // create the checkbox, make its settings and add it to the toolbox page + TQCheckBox *chkBox = new TQCheckBox(m_indenterParameterCategoryPages.at(category).widget); + chkBox->setText(indenterParameter); + TQString paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); + TQToolTip::add(chkBox, paramToolTip); + if (m_mainWindow != nullptr) + { + chkBox->installEventFilter(m_mainWindow); + } + m_indenterParameterCategoryPages.at(category).vboxLayout->addWidget(chkBox); + + // remember parameter name and reference to its checkbox + ParamBoolean paramBoolean; + paramBoolean.paramName = indenterParameter; + paramBoolean.checkBox = chkBox; + TQStringList trueFalseStrings = TQStringList::split("|", + m_indenterSettings->value(indenterParameter + "/TrueFalse").toString()); + paramBoolean.trueString = trueFalseStrings[0]; + paramBoolean.falseString = trueFalseStrings[1]; + paramBoolean.checkBox->setChecked(m_indenterSettings->value(paramBoolean.paramName + + "/ValueDefault").toBool()); + m_paramBooleans.append(paramBoolean); + + TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); + } + // edit type is numeric so create a line edit with label + else if (editType == "string") + { + // read the parameter name as it is used at the command line or in its config file + TQString parameterCallName = + m_indenterSettings->value(indenterParameter + "/CallName").toString(); + + // create check box which enables or disables the parameter + TQCheckBox *chkBox = new TQCheckBox(m_indenterParameterCategoryPages.at(category).widget); + chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); + TQToolTip::add(chkBox, + "Enables/disables the parameter. If disabled the indenters default value will be used."); + chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + + // create the line edit + TQLineEdit *lineEdit = new TQLineEdit(m_indenterParameterCategoryPages.at(category).widget); + TQString paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); + TQToolTip::add(lineEdit, paramToolTip); + lineEdit->setMaximumWidth(50); + lineEdit->setMinimumWidth(50); + if (m_mainWindow != nullptr) + { + lineEdit->installEventFilter(m_mainWindow); + } + + // create the label + TQLabel *label = new TQLabel(m_indenterParameterCategoryPages.at(category).widget); + label->setText(indenterParameter); + label->setBuddy(lineEdit); + label->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::Preferred); + TQToolTip::add(label, paramToolTip); + if (m_mainWindow != nullptr) + { + label->installEventFilter(m_mainWindow); + } + + // put all into a layout and add it to the toolbox page + TQHBoxLayout *hboxLayout = new TQHBoxLayout(); + hboxLayout->addWidget(chkBox); + hboxLayout->addWidget(lineEdit); + hboxLayout->addWidget(label); + m_indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); + + // remember parameter name and reference to its line edit + ParamString paramString; + paramString.paramName = indenterParameter; + paramString.paramCallName = parameterCallName; + paramString.lineEdit = lineEdit; + paramString.label = label; + paramString.valueEnabledChkBox = chkBox; + paramString.lineEdit->setText(m_indenterSettings->value(paramString.paramName + + "/ValueDefault").toString()); + m_paramStrings.append(paramString); + + TQObject::connect(lineEdit, SIGNAL(returnPressed()), this, + SLOT(handleChangedIndenterSettings())); + TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); + } + // edit type is multiple so create a combobox with label + else if (editType == "multiple") + { + // read the parameter name as it is used at the command line or in its config file + TQString parameterCallName = + m_indenterSettings->value(indenterParameter + "/CallName").toString(); + + // create checkbox which enables or disables the parameter + TQCheckBox *chkBox = new TQCheckBox(m_indenterParameterCategoryPages.at(category).widget); + chkBox->setChecked(m_indenterSettings->value(indenterParameter + "/Enabled").toBool()); + TQToolTip::add(chkBox, + "Enables/disables the parameter. If disabled the indenters default value will be used."); + chkBox->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + + // create the combo box + TQComboBox *comboBox = new TQComboBox(m_indenterParameterCategoryPages.at(category).widget); + TQStringList choicesStrings = TQStringList::split("|", + m_indenterSettings->value(indenterParameter + "/Choices").toString()); + TQStringList choicesStringsReadable = TQStringList::split("|", + m_indenterSettings->value(indenterParameter + "/ChoicesReadable").toString(), true); + if (choicesStringsReadable.isEmpty()) + { + comboBox->insertStringList(choicesStrings); + } + else + { + comboBox->insertStringList(choicesStringsReadable); + } + TQString paramToolTip = m_indenterSettings->value(indenterParameter + "/Description").toString(); + TQToolTip::add(comboBox, paramToolTip); + if (m_mainWindow != nullptr) + { + comboBox->installEventFilter(m_mainWindow); + } + + // put all into a layout and add it to the toolbox page + TQHBoxLayout *hboxLayout = new TQHBoxLayout(); + hboxLayout->addWidget(chkBox); + hboxLayout->addWidget(comboBox); + m_indenterParameterCategoryPages.at(category).vboxLayout->addLayout(hboxLayout); + + // remember parameter name and reference to its lineedit + ParamMultiple paramMultiple; + paramMultiple.paramName = indenterParameter; + paramMultiple.paramCallName = parameterCallName; + paramMultiple.comboBox = comboBox; + paramMultiple.choicesStrings = choicesStrings; + paramMultiple.choicesStringsReadable = choicesStringsReadable; + paramMultiple.valueEnabledChkBox = chkBox; + paramMultiple.comboBox->setCurrentItem(m_indenterSettings->value(paramMultiple.paramName + + "/ValueDefault").toInt()); + m_paramMultiples.append(paramMultiple); + + TQObject::connect(comboBox, SIGNAL(activated(int)), this, + SLOT(handleChangedIndenterSettings())); + TQObject::connect(chkBox, SIGNAL(clicked()), this, SLOT(handleChangedIndenterSettings())); + } + } + } + + // put a spacer at each page end + for(IndenterParameterCategoryPage &categoryPage : m_indenterParameterCategoryPages) + { + categoryPage.vboxLayout->addStretch(); + } + + // Get rid of the dummy widget previously created + m_indenterParameterCategoriesToolBox->removeItem(dummyWidget); + delete dummyWidget; } /* @@ -1264,30 +1260,32 @@ void IndentHandler::readIndentIniFile(const TQString &iniFilePath) TQStringList IndentHandler::getAvailableIndenters() { TQStringList indenterNamesList; -//--- -//--- // Loop for every existing uigui ini file -//--- foreach(TQString indenterIniFile, m_indenterIniFileList) -//--- { -//--- // Open the ini file and search for the indenter name -//--- TQFile file(m_indenterDirectoryStr + "/" + indenterIniFile); -//--- if (file.open(TQIODevice::ReadOnly | TQIODevice::Text)) -//--- { -//--- int index = -1; -//--- TQByteArray line; -//--- // Search for the string "indenterName=" and get the following string until line end. -//--- while (index == -1 && !file.atEnd()) -//--- { -//--- line = file.readLine(); -//--- index = line.indexOf("indenterName=", 0); -//--- } -//--- -//--- if (index == 0) -//--- { -//--- line = line.remove(0, 13); -//--- indenterNamesList << line.trimmed(); -//--- } -//--- } -//--- } + + // Loop for every existing uigui ini file + for (const TQString indenterIniFile : m_indenterIniFileList) + { + // Open the ini file and search for the indenter name + TQFile file(m_indenterDirectoryStr + "/" + indenterIniFile); + if (file.open(IO_ReadOnly | IO_Translate)) + { + int index = -1; + TQTextStream stream(&file); + TQString line; + // Search for the string "indenterName=" and get the following string until line end. + while (index == -1 && !file.atEnd()) + { + line = stream.readLine(); + index = line.find("indenterName=", 0); + } + + if (index == 0) + { + line = line.remove(0, 13); + indenterNamesList << line.stripWhiteSpace(); + } + } + file.close(); + } return indenterNamesList; } @@ -1296,59 +1294,53 @@ TQStringList IndentHandler::getAvailableIndenters() */ void IndentHandler::setIndenter(int indenterID) { -//--- TQApplication::setOverrideCursor(TQt::WaitCursor); -//--- -//--- // Generate the parameter string that will be saved to the indenters config file. -//--- TQString parameterString = getParameterString(); -//--- if (!m_indenterFileName.isEmpty()) -//--- { -//--- saveConfigFile(m_settingsDirectoryStr + "/" + m_indenterFileName + ".cfg", parameterString); -//--- } -//--- -//--- // Take care if the selected indenterID is smaller or greater than the number of existing -//--- // indenters -//--- if (indenterID < 0) -//--- { -//--- indenterID = 0; -//--- } -//--- if (indenterID >= m_indenterIniFileList.count()) -//--- { -//--- indenterID = m_indenterIniFileList.count() - 1; -//--- } -//--- -//--- // MIKE: TODO: need to save selected indenterID into Settings -//--- -//--- // remove all pages from the toolbox -//--- for (int i = 0; i < m_indenterParameterCategoriesToolBox->count(); i++) -//--- { -//--- m_indenterParameterCategoriesToolBox->removeItem(i); -//--- } -//--- -//--- // delete all toolbox pages and by this its children -//--- foreach(IndenterParameterCategoryPage categoryPage, _indenterParameterCategoryPages) -//--- { -//--- delete categoryPage.widget; -//--- } -//--- -//--- // empty all lists, which stored infos for the toolbox pages and its widgets -//--- _indenterParameterCategoryPages.clear(); -//--- _paramStrings.clear(); -//--- _paramNumerics.clear(); -//--- _paramBooleans.clear(); -//--- _paramMultiples.clear(); -//--- delete m_indenterSettings; -//--- -//--- readIndentIniFile(m_indenterDirectoryStr + "/" + m_indenterIniFileList.at(indenterID)); -//--- -//--- // Find out how the indenter can be executed. -//--- createIndenterCallString(); -//--- -//--- // Load the users last settings made for this indenter. -//--- loadConfigFile(m_settingsDirectoryStr + "/" + m_indenterFileName + ".cfg"); -//--- -//--- handleChangedIndenterSettings(); -//--- -//--- TQApplication::restoreOverrideCursor(); + TQApplication::setOverrideCursor(TQt::WaitCursor); + + // Generate the parameter string that will be saved to the indenters config file. + TQString parameterString = getParameterString(); + if (!m_indenterFileName.isEmpty()) + { + saveConfigFile(m_settingsDirectoryStr + "/" + m_indenterFileName + ".cfg", parameterString); + } + + // Make sure the selected indenterID is valid + if (indenterID < 0) + { + indenterID = 0; + } + if (indenterID >= m_indenterIniFileList.count()) + { + indenterID = m_indenterIniFileList.count() - 1; + } + + m_settings->setValueByName("SelectedIndenter", indenterID); + + // delete all toolbox pages and by this its children + for (IndenterParameterCategoryPage &categoryPage : m_indenterParameterCategoryPages) + { + m_indenterParameterCategoriesToolBox->removeItem(categoryPage.widget); + delete categoryPage.widget; + } + + // empty all lists, which stored infos for the toolbox pages and its widgets + m_indenterParameterCategoryPages.clear(); + m_paramStrings.clear(); + m_paramNumerics.clear(); + m_paramBooleans.clear(); + m_paramMultiples.clear(); + delete m_indenterSettings; + + readIndentIniFile(m_indenterDirectoryStr + "/" + m_indenterIniFileList[indenterID]); + + // Find out how the indenter can be executed. + createIndenterCallString(); + + // Load the users last settings made for this indenter. + loadConfigFile(m_settingsDirectoryStr + "/" + m_indenterFileName + ".cfg"); + + handleChangedIndenterSettings(); + + TQApplication::restoreOverrideCursor(); } //--- /* @@ -1356,7 +1348,7 @@ void IndentHandler::setIndenter(int indenterID) //--- */ //--- TQString IndentHandler::getPossibleIndenterFileExtensions() //--- { -//--- return _fileTypes; +//--- return m_fileTypes; //--- } /* @@ -1400,7 +1392,7 @@ bool IndentHandler::createIndenterCallString() //--- if (TQFileInfo(m_indenterExecutableCallString).suffix().toLower() != "php") //--- { //--- indentProcess.start( -//--- "\"" + m_indenterExecutableCallString + +"\" " + _indenterShowHelpParameter); +//--- "\"" + m_indenterExecutableCallString + +"\" " + m_indenterShowHelpParameter); //--- if (indentProcess.waitForFinished(2000)) //--- { //--- m_indenterExecutableCallString = "\"" + m_indenterExecutableCallString + "\""; @@ -1484,7 +1476,7 @@ bool IndentHandler::createIndenterCallString() //--- { //--- m_indenterExecutableSuffix = suffix; //--- m_indenterExecutableCallString = m_indenterFileName + suffix; -//--- indentProcess.start(m_indenterExecutableCallString + " " + _indenterShowHelpParameter); +//--- indentProcess.start(m_indenterExecutableCallString + " " + m_indenterShowHelpParameter); //--- if (indentProcess.waitForFinished(2000)) //--- { //--- return true; @@ -1721,14 +1713,12 @@ void IndentHandler::handleChangedIndenterSettings() emit(indenterSettingsChanged()); } -//--- /* -//--- \brief Returns the id (list index) of the currently selected indenter. +//--- /*! +//--- \brief Converts characters < > and & in the \a text to HTML codes < > and &. //--- */ -//--- int IndentHandler::getIndenterId() +//--- TQString IndentHandler::encodeToHTML(const TQString &text) //--- { -//--- return m_indenterSelectionCombobox->currentIndex(); -//--- } -//--- +//--- TQString htmlText = text; //--- htmlText.replace("&", "&"); //--- htmlText.replace("<", "<"); //--- htmlText.replace(">", ">"); diff --git a/src/IndentHandler.h b/src/IndentHandler.h index 97b00d1..05c0ce9 100644 --- a/src/IndentHandler.h +++ b/src/IndentHandler.h @@ -21,20 +21,21 @@ #define INDENTHANDLER_H #include +#include class MainWindow; class UiGuiErrorMessage; -///-- class UiGuiIniFileParser; +class UiGuiIniFileParser; +class UiGuiSettings; +class TQCheckBox; class TQComboBox; +class TQLabel; +class TQLineEdit; +class TQSpinBox; class TQToolBox; class TQToolButton; class TQVBoxLayout; -///-- class TQMenu; -///-- class TQLabel; -///-- class TQSpinBox; -///-- class TQCheckBox; -///-- class TQLineEdit; class IndentHandler : public TQWidget @@ -56,8 +57,7 @@ class IndentHandler : public TQWidget ///-- TQString getManual(); ///-- TQString getCurrentIndenterName(); void contextMenuEvent(TQContextMenuEvent *event); -///-- int getIndenterId(); -///-- + signals: void indenterSettingsChanged(); ///-- void selectedIndenterIndexChanged(int index); @@ -81,91 +81,86 @@ class IndentHandler : public TQWidget void saveConfigFile(const TQString &filePathName, const TQString ¶meterString); void readIndentIniFile(const TQString &iniFilePath); bool createIndenterCallString(); -///-- -///-- // Holds a reference to all created pages of the parameter categories toolbox and the pages -///-- // boxlayout -///-- struct IndenterParameterCategoryPage -///-- { -///-- TQWidget *widget; -///-- TQVBoxLayout *vboxLayout; -///-- }; -///-- -///-- TQVector _indenterParameterCategoryPages; -///-- -///-- // Holds a reference to all checkboxes needed for boolean parameter setting and the parameters -///-- // name -///-- struct ParamBoolean -///-- { -///-- TQString paramName; -///-- TQString trueString; -///-- TQString falseString; -///-- TQCheckBox *checkBox; -///-- }; -///-- -///-- TQVector _paramBooleans; -///-- -///-- // Holds a reference to all line edits needed for parameter setting and the parameters name -///-- struct ParamString -///-- { -///-- TQString paramName; -///-- TQString paramCallName; -///-- TQCheckBox *valueEnabledChkBox; -///-- TQLineEdit *lineEdit; -///-- TQLabel *label; -///-- }; -///-- -///-- TQVector _paramStrings; -///-- -///-- // Hold a reference to all spin boxes needed for parameter setting and the parameters name -///-- struct ParamNumeric -///-- { -///-- TQString paramName; -///-- TQString paramCallName; -///-- TQCheckBox *valueEnabledChkBox; -///-- TQSpinBox *spinBox; -///-- TQLabel *label; -///-- }; -///-- -///-- TQVector _paramNumerics; -///-- -///-- // Hold a reference to all combo boxes needed for parameter setting and the parameters name -///-- struct ParamMultiple -///-- { -///-- TQString paramName; -///-- TQString paramCallName; -///-- TQCheckBox *valueEnabledChkBox; -///-- TQComboBox *comboBox; -///-- TQStringList choicesStrings; -///-- TQStringList choicesStringsReadable; -///-- }; -///-- -///-- TQVector _paramMultiples; -///-- + + // Holds a reference to all created pages of the parameter categories toolbox and their layout + struct IndenterParameterCategoryPage + { + TQWidget *widget; + TQVBoxLayout *vboxLayout; + }; + TQValueVector m_indenterParameterCategoryPages; + + // Holds a reference to all checkboxes needed for boolean parameters and their names + struct ParamBoolean + { + TQString paramName; + TQString trueString; + TQString falseString; + TQCheckBox *checkBox; + }; + TQValueVector m_paramBooleans; + + // Holds a reference to all line edits needed for parameter setting and the parameters name + struct ParamString + { + TQString paramName; + TQString paramCallName; + TQCheckBox *valueEnabledChkBox; + TQLineEdit *lineEdit; + TQLabel *label; + }; + TQValueVector m_paramStrings; + + // Hold a reference to all spin boxes needed for parameter setting and the parameters name + struct ParamNumeric + { + TQString paramName; + TQString paramCallName; + TQCheckBox *valueEnabledChkBox; + TQSpinBox *spinBox; + TQLabel *label; + }; + TQValueVector m_paramNumerics; + + // Hold a reference to all combo boxes needed for parameter setting and the parameters name + struct ParamMultiple + { + TQString paramName; + TQString paramCallName; + TQCheckBox *valueEnabledChkBox; + TQComboBox *comboBox; + TQStringList choicesStrings; + TQStringList choicesStringsReadable; + }; + TQValueVector m_paramMultiples; + + UiGuiSettings *m_settings; + TQComboBox *m_indenterSelectionCombobox; TQToolButton *m_indenterParameterHelpButton; -///-- // Vertical layout box, into which the toolbox will be added + // Vertical layout box, into which the toolbox will be added TQVBoxLayout *m_toolBoxContainerLayout; TQToolBox *m_indenterParameterCategoriesToolBox; -///-- UiGuiIniFileParser *m_indenterSettings; -///-- TQStringList _indenterParameters; -///-- // The indenters name in a descriptive form -///-- TQString _indenterName; -///-- // The indenters file name (w/o extension), that is being called + UiGuiIniFileParser *m_indenterSettings; + TQStringList m_indenterParameters; + // The indenters name in a descriptive form + TQString m_indenterName; + // The indenters file name (w/o extension), that is being called TQString m_indenterFileName; TQString m_indenterDirectoryStr; TQString m_tempDirectoryStr; TQString m_settingsDirectoryStr; TQStringList m_indenterIniFileList; -///-- TQString _parameterOrder; TQString m_globalConfigFilename; -///-- TQString _cfgFileParameterEnding; -///-- TQString _inputFileParameter; -///-- TQString _inputFileName; -///-- TQString _outputFileParameter; -///-- TQString _outputFileName; -///-- TQString _fileTypes; -///-- TQString _useCfgFileParameter; -///-- TQString _indenterShowHelpParameter; + TQString m_cfgFileParameterEnding; + TQString m_parameterOrder; + TQString m_inputFileParameter; + TQString m_inputFileName; + TQString m_outputFileParameter; + TQString m_outputFileName; + TQString m_fileTypes; + TQString m_useCfgFileParameter; + TQString m_indenterShowHelpParameter; MainWindow *m_mainWindow; TQWidget *m_parent; UiGuiErrorMessage *m_errorMessageDialog; diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 5c50627..34cc09f 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -682,7 +682,7 @@ void MainWindow::updateSourceView() */ void MainWindow::callIndenter() { - TQApplication::setOverrideCursor(TQCursor(TQt::WaitCursor)); + TQApplication::setOverrideCursor(TQt::WaitCursor); ///-- m_sourceFormattedContent = m_indentHandler->callIndenter(m_sourceFileContent, ///-- m_currentSourceFileExtension); updateSourceView();