diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc')
22 files changed, 15431 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/MS-calling_conventions.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/MS-calling_conventions.cfg new file mode 100644 index 00000000..36e9e14f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/MS-calling_conventions.cfg @@ -0,0 +1,7 @@ +# bug 633 +set COMMENT __stdcall +set COMMENT __clrcall +set COMMENT __fastcall +set COMMENT __thiscall +set COMMENT __vectorcall +set COMMENT __cdecl diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/amxmodx.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/amxmodx.cfg new file mode 100644 index 00000000..7e435971 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/amxmodx.cfg @@ -0,0 +1,207 @@ +# +# AMX Mod X style for Pawn (or as close as possible) +# + +####################### +# Basic Indenting Stuff + +# (a/i/r) comment notation for add/ignore/remove which is the actual setting +input_tab_size = 1 # tab size on input file: usually 8 +output_tab_size = 8 # tab size for output: usually 8 +indent_columns = 8 # ie 3 or 8 +indent_with_tabs = 2 # 1=only to the 'level' indent, 2=use tab indenting +#indent_paren_nl = 1 # indent-align under paren for open followed by nl + +pp_indent = remove # indent preproc 1 space per level (a/i/r) +pp_space = remove # spaces between # and word (add/ignore/remove) + +#indent_switch_case = 1 # spaces to indent case from switch +#indent_case_brace = 0 # spaces to indent '{' from case + # (usually 0 or indent_columns) + +#indent_brace = 0 # spaces to indent '{' from level (usually 0) +indent_braces = 0 # whether to indent the braces or not +#indent_label = 0 # 0=left >0=col from left (absolute column), + # <0=sub from brace indent (relative column) + +indent_align_string = false # True/False - indent align broken strings +indent_col1_comment = false # indent comments in column 1 +indent_func_call_param = false # indent continued function calls to indent_columns otherwise index_columns + spaces to align with open paren. + +indent_namespace = true # indent stuff inside namespace braces +indent_class = true # indent stuff inside class braces + + +############################ +# Misc Inter-element Spacing +# Force,Ignore,Add,Remove + +# ignored by nl_*_brace = true +sp_paren_brace = force # space between ')' and '{' +sp_fparen_brace = force # space between ')' and '{' of function +sp_sparen_brace = force # space between ')' and '{' of if, while, etc + +sp_after_cast = force # space after cast - "(int) a" vs "(int)a" + +sp_before_byref = force # space before '&' of 'fcn(int& idx)' + +sp_inside_fparen = force # space inside 'foo( xxx )' vs 'foo(xxx)' +sp_inside_fparens = remove # space inside 'foo( )' vs 'foo()' +sp_inside_paren = remove # space inside '+ ( xxx )' vs '+ (xxx)' +sp_inside_square = remove # space inside 'byte[ 5 ]' vs 'byte[5]' +sp_inside_sparen = force # space inside 'if( xxx )' vs 'if(xxx)' +sp_inside_angle = ignore # space inside '<>', as in '<class T>' + +sp_before_sparen = force # space before '(' of 'if/for/while/switch' +sp_after_sparen = force # space after ')' of 'if/for/while/switch' + # the do-while does not get set here + +sp_before_angle = ignore # space before '<>', as in '<class T>' +sp_after_angle = ignore # space after '<>', as in '<class T>' + +sp_before_square = ignore # space before single '[' +sp_before_squares = remove # space before '[]', as in 'byte []' + +sp_paren_paren = force # space between nested parens - '( (' vs '((' + +sp_return_paren = remove # space between 'return' and '(' +sp_sizeof_paren = remove # space between 'sizeof' and '(' + +sp_after_comma = force # space after ',' + +sp_arith = force # space around + - / * etc +sp_bool = force # space around || && +sp_compare = force # space around < > ==, etc +sp_assign = force # space around =, +=, etc + +sp_func_def_paren = remove # space between 'func' and '(' - "foo (" vs "foo(" +sp_func_call_paren = remove # space between 'func' and '(' - "foo (" vs "foo(" +sp_func_proto_paren = remove # space between 'func' and '(' - "foo (" vs "foo(" +sp_func_class_paren = remove # space between ctor/dtor and '(' + +#sp_type_func = 1 # space between return type and 'func' + # a minimum of 1 is forced except for '*' + + +sp_special_semi = remove # space empty stmt ';' on while, if, for + # example "while (*p++ = ' ') ;" +sp_before_semi = remove # space before all ';' +sp_inside_braces = force # space inside '{' and '}' - "{ 1, 2, 3 }" +sp_inside_braces_enum = force # space inside enum '{' and '}' - "{ a, b, c }" +sp_inside_braces_struct = force # space inside struct/union '{' and '}' + +sp_macro = force # space between macro and value, ie '#define a 6' +sp_macro_func = force # space between macro and value, ie '#define a 6' + +sp_square_fparen = remove # weird pawn stuff: native yark[rect](a[rect]) +sp_after_tag = remove # pawn: space after a tag colon + + +################################ +# Code Alignment +# (not left column spaces/tabs) + +align_with_tabs = true # use tabs for aligning (0/1) +align_keep_tabs = false # keep non-indenting tabs +align_on_tabstop = true # always align on tabstops +align_nl_cont = false # align the back-slash \n combo (macros) +align_enum_equ_span = 1 # align the '=' in enums +align_assign_span = 1 # align on '='. 0=don't align +align_assign_thresh = 0 # threshold for aligning on '='. 0=no limit +align_right_cmt_span = 8 # align comment that end lines. 0=don't align +align_var_def_span = 1 # align variable defs on variable (span for regular stuff) +align_var_def_thresh = 0 # align variable defs threshold +align_var_def_inline = true # also align inline struct/enum/union var defs +align_var_def_star_style = 1 # the star is part of the variable name +align_var_def_colon = false # align the colon in struct bit fields +align_var_struct_span = 1 # span for struct/union (0=don't align) +align_pp_define_span = 1 # align bodies in #define statements +align_pp_define_gap = 1 # min space between define label and value "#define a <---> 16" + +align_struct_init_span = 1 # align structure initializer values +align_func_proto_span = 1 # align function prototypes +align_number_right = false # right-align numbers (not fully supported, yet) +align_typedef_span = 1 # align single-line typedefs +align_typedef_gap = 1 # minimum spacing +align_typedef_star_style = 1 # Start aligning style + # 0: '*' not part of type + # 1: '*' part of the type - no space + # 2: '*' part of type, dangling + + +##################################### +# Newline Adding and Removing Options +# Add/Remove/Ignore + +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +nl_func_decl_start = ignore # newline after the '(' in a function decl +nl_func_decl_args = ignore # newline after each ',' in a function decl +nl_func_decl_end = ignore # newline before the ')' in a function decl +nl_func_type_name = ignore # newline between return type and func name in def +nl_func_var_def_blk = 0 # newline after a block of variable defs +nl_before_case = false # newline before 'case' statement +nl_after_return = false # newline after return statement +nl_after_case = false # disallow nested "case 1: a=3;" +nl_fcall_brace = add # newline between function call and open brace +nl_squeeze_ifdef = false # no blanks after #ifxx, #elxx, or before #endif TRUE/F +nl_enum_brace = ignore # nl between enum and brace +nl_struct_brace = ignore # nl between struct and brace +nl_union_brace = ignore # nl between union and brace +nl_assign_brace = ignore # nl between '=' and brace +nl_class_brace = ignore # nl between class name and brace +nl_namespace_brace = ignore # nl between namespace name and brace + +nl_do_brace = add # nl between do and { +nl_if_brace = add # nl between if and { +nl_for_brace = add # nl between for and { +nl_else_brace = remove # nl between else and { +nl_while_brace = add # nl between while and { +nl_switch_brace = add # nl between switch and { +nl_brace_else = remove # nl between } and else +nl_brace_while = add # nl between } and while of do stmt + +nl_elseif_brace = add # nl between close paren and open brace in 'else if () {' + +nl_define_macro = 0 # alter newlines in #define macros +nl_start_of_file = ignore # alter newlines at the start of file +nl_start_of_file_min = 0 # min number of newlines at the start of the file +nl_end_of_file = ignore # alter newlines at the end of file +nl_end_of_file_min = 0 # min number of newlines at the end of the file + +pos_bool = start # end=move &&/|| to EOL ignore=gnore, start=move to SOL + +##################### +# Blank Line Options + +nl_before_block_comment = 3 # before a block comment (stand-alone + # comment-multi), except after brace open +nl_after_func_body = 3 # after the closing brace of a function body +nl_after_func_proto = 3 # after each prototype +nl_after_func_proto_group = 3 # after a block of prototypes +nl_max = 3 # maximum consecutive newlines (3=2 lines) + +eat_blanks_after_open_brace = true # remove blank lines after { +eat_blanks_before_close_brace = true # remove blank lines before } + +######################## +# Code Modifying Options +# (non-whitespace) + +mod_paren_on_return = force # add or remove paren on return +mod_full_brace_nl = 1 # max number of newlines to span w/o braces +mod_full_brace_if = ignore # add or remove braces on if +mod_full_brace_for = ignore # add or remove braces on for +mod_full_brace_do = ignore # add or remove braces on do +mod_full_brace_while = ignore # add or remove braces on while +mod_pawn_semicolon = True # add optional semicolons +mod_full_brace_function = add # add optional braces on Pawn functions + + +####################### +# Comment Modifications + +cmt_star_cont = true # put a star on subsequent comment lines +cmt_cpp_to_c = true # convert CPP comments to C comments +cmt_cpp_group = true # if UO_cmt_cpp_to_c, try to group in one big C comment +cmt_cpp_nl_start = true # put a blank /* at the start of a converted group +cmt_cpp_nl_end = true # put a nl before the */ in a converted group diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben.cfg new file mode 100644 index 00000000..88dc170c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben.cfg @@ -0,0 +1,1777 @@ +# Uncrustify 0.62 + +# +# General options +# + +# The type of line endings +newlines = lf # auto/lf/crlf/cr + +# The original size of tabs in the input +input_tab_size = 8 # number + +# The size of tabs in the output (only used if align_with_tabs=true) +output_tab_size = 3 # number + +# The ASCII value of the string escape char, usually 92 (\) or 94 (^). (Pawn) +string_escape_char = 92 # number + +# Alternate string escape char for Pawn. Only works right before the quote char. +string_escape_char2 = 0 # number + +# Replace tab characters found in string literals with the escape sequence \t instead. +string_replace_tab_chars = false # false/true + +# 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. +tok_split_gte = false # false/true + +# Override the default ' *INDENT-OFF*' in comments for disabling processing of part of the file. +disable_processing_cmt = "" # string + +# Override the default ' *INDENT-ON*' in comments for enabling processing of part of the file. +enable_processing_cmt = "" # string + +# Enable parsing of digraphs. Default=false +enable_digraphs = false # false/true + +# Control what to do with the UTF-8 BOM (recommend 'remove') +utf8_bom = ignore # ignore/add/remove/force + +# If the file contains bytes with values between 128 and 255, but is not UTF-8, then output as UTF-8 +utf8_byte = false # false/true + +# Force the output encoding to UTF-8 +utf8_force = false # false/true + +# +# Indenting +# + +# The number of columns to indent per level. +# Usually 2, 3, 4, or 8. +indent_columns = 3 # number + +# The continuation indent. If non-zero, this overrides the indent of '(' and '=' continuation indents. +# For FreeBSD, this is set to 4. Negative value is absolute and not increased for each ( level +indent_continue = 0 # number + +# 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 +indent_with_tabs = 0 # number + +# Comments that are not a brace level are indented with tabs on a tabstop. +# Requires indent_with_tabs=2. If false, will use spaces. +indent_cmt_with_tabs = false # false/true + +# Whether to indent strings broken by '\' so that they line up +indent_align_string = true # false/true + +# The number of spaces to indent multi-line XML strings. +# Requires indent_align_string=True +indent_xml_string = 0 # number + +# Spaces to indent '{' from level +indent_brace = 0 # number + +# Whether braces are indented to the body level +indent_braces = false # false/true + +# Disabled indenting function braces if indent_braces is true +indent_braces_no_func = false # false/true + +# Disabled indenting class braces if indent_braces is true +indent_braces_no_class = false # false/true + +# Disabled indenting struct braces if indent_braces is true +indent_braces_no_struct = false # false/true + +# Indent based on the size of the brace parent, i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc. +indent_brace_parent = false # false/true + +# Indent based on the paren open instead of the brace open in '({\n', default is to indent by brace. +indent_paren_open_brace = false # false/true + +# Whether the 'namespace' body is indented +indent_namespace = false # false/true + +# Only indent one namespace and no sub-namespaces. +# Requires indent_namespace=true. +indent_namespace_single_indent = false # false/true + +# The number of spaces to indent a namespace block +indent_namespace_level = 0 # number + +# If the body of the namespace is longer than this number, it won't be indented. +# Requires indent_namespace=true. Default=0 (no limit) +indent_namespace_limit = 0 # number + +# Whether the 'extern "C"' body is indented +indent_extern = false # false/true + +# Whether the 'class' body is indented +indent_class = true # false/true + +# Whether to indent the stuff after a leading base class colon +indent_class_colon = true # false/true + +# Indent based on a class colon instead of the stuff after the colon. +# Requires indent_class_colon=true. Default=false +indent_class_on_colon = false # false/true + +# Whether to indent the stuff after a leading class initializer colon +indent_constr_colon = false # false/true + +# Virtual indent from the ':' for member initializers. Default is 2 +indent_ctor_init_leading = 2 # number + +# Additional indenting for constructor initializer list +indent_ctor_init = 0 # number + +# False=treat 'else\nif' as 'else if' for indenting purposes +# True=indent the 'if' one level +indent_else_if = false # false/true + +# Amount to indent variable declarations after a open brace. neg=relative, pos=absolute +indent_var_def_blk = 0 # number + +# Indent continued variable declarations instead of aligning. +indent_var_def_cont = false # false/true + +# Indent continued shift expressions ('<<' and '>>') instead of aligning. +# Turn align_left_shift off when enabling this. +indent_shift = false # false/true + +# True: force indentation of function definition to start in column 1 +# False: use the default behavior +indent_func_def_force_col1 = false # false/true + +# True: indent continued function call parameters one indent level +# False: align parameters under the open paren +indent_func_call_param = false # false/true + +# Same as indent_func_call_param, but for function defs +indent_func_def_param = false # false/true + +# Same as indent_func_call_param, but for function protos +indent_func_proto_param = false # false/true + +# Same as indent_func_call_param, but for class declarations +indent_func_class_param = false # false/true + +# Same as indent_func_call_param, but for class variable constructors +indent_func_ctor_var_param = false # false/true + +# Same as indent_func_call_param, but for templates +indent_template_param = false # false/true + +# Double the indent for indent_func_xxx_param options +indent_func_param_double = false # false/true + +# Indentation column for standalone 'const' function decl/proto qualifier +indent_func_const = 0 # number + +# Indentation column for standalone 'throw' function decl/proto qualifier +indent_func_throw = 0 # number + +# The number of spaces to indent a continued '->' or '.' +# Usually set to 0, 1, or indent_columns. +indent_member = 3 # number + +# Spaces to indent single line ('//') comments on lines before code +indent_sing_line_comments = 0 # number + +# If set, will indent trailing single line ('//') comments relative +# to the code instead of trying to keep the same absolute column +indent_relative_single_line_comments = false # false/true + +# Spaces to indent 'case' from 'switch' +# Usually 0 or indent_columns. +indent_switch_case = 0 # number + +# Spaces to shift the 'case' line, without affecting any other lines +# Usually 0. +indent_case_shift = 0 # number + +# Spaces to indent '{' from 'case'. +# By default, the brace will appear under the 'c' in case. +# Usually set to 0 or indent_columns. +indent_case_brace = 3 # number + +# Whether to indent comments found in first column +indent_col1_comment = false # false/true + +# How to indent goto labels +# >0 : absolute column where 1 is the leftmost column +# <=0 : subtract from brace indent +indent_label = 1 # number + +# Same as indent_label, but for access specifiers that are followed by a colon +indent_access_spec = 1 # number + +# Indent the code after an access specifier by one level. +# If set, this option forces 'indent_access_spec=0' +indent_access_spec_body = false # false/true + +# If an open paren is followed by a newline, indent the next line so that it lines up after the open paren (not recommended) +indent_paren_nl = false # false/true + +# 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 +indent_paren_close = 0 # number + +# Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren +indent_comma_paren = false # false/true + +# Controls the indent of a BOOL operator when inside a paren.If TRUE, aligns under the open paren +indent_bool_paren = false # false/true + +# If 'indent_bool_paren' is true, controls the indent of the first expression. If TRUE, aligns the first expression to the following ones +indent_first_bool_expr = false # false/true + +# If an open square is followed by a newline, indent the next line so that it lines up after the open square (not recommended) +indent_square_nl = false # false/true + +# Don't change the relative indent of ESQL/C 'EXEC SQL' bodies +indent_preserve_sql = false # false/true + +# Align continued statements at the '='. Default=True +# If FALSE or the '=' is followed by a newline, the next line is indent one tab. +indent_align_assign = true # false/true + +# Indent OC blocks at brace level instead of usual rules. +indent_oc_block = false # false/true + +# Indent OC blocks in a message relative to the parameter name. +# 0=use indent_oc_block rules, 1+=spaces to indent +indent_oc_block_msg = 0 # number + +# Minimum indent for subsequent parameters +indent_oc_msg_colon = 0 # number + +# If true, prioritize aligning with initial colon (and stripping spaces from lines, if necessary). +# Default is true. +indent_oc_msg_prioritize_first_colon = true # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented the way that Xcode does by default (from keyword if the parameter is on its own line; otherwise, from the previous indentation level). +indent_oc_block_msg_xcode_style = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is relative to a msg keyword. +indent_oc_block_msg_from_keyword = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is relative to a msg colon. +indent_oc_block_msg_from_colon = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the block caret is. +indent_oc_block_msg_from_caret = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is. +indent_oc_block_msg_from_brace = false # false/true + +# When identing after virtual brace open and newline add further spaces to reach this min. indent. +indent_min_vbrace_open = 0 # number + +# TRUE: When identing after virtual brace open and newline add further spaces after regular indent to reach next tabstop. +indent_vbrace_open_on_tabstop = false # false/true + +# +# Spacing options +# + +# Add or remove space around arithmetic operator '+', '-', '/', '*', etc +# also '>>>' '<<' '>>' '%' '|' +sp_arith = force # ignore/add/remove/force + +# Add or remove space around assignment operator '=', '+=', etc +sp_assign = force # ignore/add/remove/force + +# Add or remove space around '=' in C++11 lambda capture specifications. Overrides sp_assign +sp_cpp_lambda_assign = ignore # ignore/add/remove/force + +# Add or remove space after the capture specification in C++11 lambda. +sp_cpp_lambda_paren = ignore # ignore/add/remove/force + +# Add or remove space around assignment operator '=' in a prototype +sp_assign_default = ignore # ignore/add/remove/force + +# Add or remove space before assignment operator '=', '+=', etc. Overrides sp_assign. +sp_before_assign = ignore # ignore/add/remove/force + +# Add or remove space after assignment operator '=', '+=', etc. Overrides sp_assign. +sp_after_assign = ignore # ignore/add/remove/force + +# Add or remove space in 'NS_ENUM (' +sp_enum_paren = ignore # ignore/add/remove/force + +# Add or remove space around assignment '=' in enum +sp_enum_assign = ignore # ignore/add/remove/force + +# Add or remove space before assignment '=' in enum. Overrides sp_enum_assign. +sp_enum_before_assign = ignore # ignore/add/remove/force + +# Add or remove space after assignment '=' in enum. Overrides sp_enum_assign. +sp_enum_after_assign = ignore # ignore/add/remove/force + +# Add or remove space around preprocessor '##' concatenation operator. Default=Add +sp_pp_concat = add # ignore/add/remove/force + +# Add or remove space after preprocessor '#' stringify operator. Also affects the '#@' charizing operator. +sp_pp_stringify = add # ignore/add/remove/force + +# Add or remove space before preprocessor '#' stringify operator as in '#define x(y) L#y'. +sp_before_pp_stringify = ignore # ignore/add/remove/force + +# Add or remove space around boolean operators '&&' and '||' +sp_bool = force # ignore/add/remove/force + +# Add or remove space around compare operator '<', '>', '==', etc +sp_compare = force # ignore/add/remove/force + +# Add or remove space inside '(' and ')' +sp_inside_paren = remove # ignore/add/remove/force + +# Add or remove space between nested parens: '((' vs ') )' +sp_paren_paren = remove # ignore/add/remove/force + +# Add or remove space between back-to-back parens: ')(' vs ') (' +sp_cparen_oparen = ignore # ignore/add/remove/force + +# Whether to balance spaces inside nested parens +sp_balance_nested_parens = false # false/true + +# Add or remove space between ')' and '{' +sp_paren_brace = ignore # ignore/add/remove/force + +# Add or remove space before pointer star '*' +sp_before_ptr_star = force # ignore/add/remove/force + +# 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_before_unnamed_ptr_star = ignore # ignore/add/remove/force + +# Add or remove space between pointer stars '*' +sp_between_ptr_star = remove # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a word. +sp_after_ptr_star = remove # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a qualifier. +sp_after_ptr_star_qualifier = ignore # ignore/add/remove/force + +# Add or remove space after a pointer star '*', if followed by a func proto/def. +sp_after_ptr_star_func = ignore # ignore/add/remove/force + +# Add or remove space after a pointer star '*', if followed by an open paren (function types). +sp_ptr_star_paren = ignore # ignore/add/remove/force + +# Add or remove space before a pointer star '*', if followed by a func proto/def. +sp_before_ptr_star_func = ignore # ignore/add/remove/force + +# Add or remove space before a reference sign '&' +sp_before_byref = remove # ignore/add/remove/force + +# 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_before_unnamed_byref = ignore # ignore/add/remove/force + +# Add or remove space after reference sign '&', if followed by a word. +sp_after_byref = force # ignore/add/remove/force + +# Add or remove space after a reference sign '&', if followed by a func proto/def. +sp_after_byref_func = ignore # ignore/add/remove/force + +# Add or remove space before a reference sign '&', if followed by a func proto/def. +sp_before_byref_func = ignore # ignore/add/remove/force + +# Add or remove space between type and word. Default=Force +sp_after_type = force # ignore/add/remove/force + +# Add or remove space before the paren in the D constructs 'template Foo(' and 'class Foo('. +sp_before_template_paren = ignore # ignore/add/remove/force + +# Add or remove space in 'template <' vs 'template<'. +# If set to ignore, sp_before_angle is used. +sp_template_angle = ignore # ignore/add/remove/force + +# Add or remove space before '<>' +sp_before_angle = remove # ignore/add/remove/force + +# Add or remove space inside '<' and '>' +sp_inside_angle = remove # ignore/add/remove/force + +# Add or remove space after '<>' +sp_after_angle = force # ignore/add/remove/force + +# Add or remove space between '<>' and '(' as found in 'new List<byte>();' +sp_angle_paren = ignore # ignore/add/remove/force + +# Add or remove space between '<>' and a word as in 'List<byte> m;' or 'template <typename T> static ...' +sp_angle_word = ignore # ignore/add/remove/force + +# Add or remove space between '>' and '>' in '>>' (template stuff C++/C# only). Default=Add +sp_angle_shift = add # ignore/add/remove/force + +# Permit removal of the space between '>>' in 'foo<bar<int> >' (C++11 only). Default=False +# sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = false # false/true + +# Add or remove space before '(' of 'if', 'for', 'switch', 'while', etc. +sp_before_sparen = force # ignore/add/remove/force + +# Add or remove space inside if-condition '(' and ')' +sp_inside_sparen = remove # ignore/add/remove/force + +# Add or remove space before if-condition ')'. Overrides sp_inside_sparen. +sp_inside_sparen_close = ignore # ignore/add/remove/force + +# Add or remove space after if-condition '('. Overrides sp_inside_sparen. +sp_inside_sparen_open = ignore # ignore/add/remove/force + +# Add or remove space after ')' of 'if', 'for', 'switch', and 'while', etc. +sp_after_sparen = force # ignore/add/remove/force + +# Add or remove space between ')' and '{' of 'if', 'for', 'switch', and 'while', etc. +sp_sparen_brace = add # ignore/add/remove/force + +# Add or remove space between 'invariant' and '(' in the D language. +sp_invariant_paren = ignore # ignore/add/remove/force + +# Add or remove space after the ')' in 'invariant (C) c' in the D language. +sp_after_invariant_paren = ignore # ignore/add/remove/force + +# Add or remove space before empty statement ';' on 'if', 'for' and 'while' +sp_special_semi = ignore # ignore/add/remove/force + +# Add or remove space before ';'. Default=Remove +sp_before_semi = remove # ignore/add/remove/force + +# Add or remove space before ';' in non-empty 'for' statements +sp_before_semi_for = ignore # ignore/add/remove/force + +# Add or remove space before a semicolon of an empty part of a for statement. +sp_before_semi_for_empty = force # ignore/add/remove/force + +# Add or remove space after ';', except when followed by a comment. Default=Add +sp_after_semi = add # ignore/add/remove/force + +# Add or remove space after ';' in non-empty 'for' statements. Default=Force +sp_after_semi_for = force # ignore/add/remove/force + +# Add or remove space after the final semicolon of an empty part of a for statement: for ( ; ; <here> ). +sp_after_semi_for_empty = ignore # ignore/add/remove/force + +# Add or remove space before '[' (except '[]') +sp_before_square = ignore # ignore/add/remove/force + +# Add or remove space before '[]' +sp_before_squares = ignore # ignore/add/remove/force + +# Add or remove space inside a non-empty '[' and ']' +sp_inside_square = remove # ignore/add/remove/force + +# Add or remove space after ',' +sp_after_comma = force # ignore/add/remove/force + +# Add or remove space before ',' +sp_before_comma = remove # ignore/add/remove/force + +# Add or remove space between ',' and ']' in multidimensional array type 'int[,,]' +sp_after_mdatype_commas = ignore # ignore/add/remove/force + +# Add or remove space between '[' and ',' in multidimensional array type 'int[,,]' +sp_before_mdatype_commas = ignore # ignore/add/remove/force + +# Add or remove space between ',' in multidimensional array type 'int[,,]' +sp_between_mdatype_commas = ignore # ignore/add/remove/force + +# Add or remove space between an open paren and comma: '(,' vs '( ,' +sp_paren_comma = force # ignore/add/remove/force + +# Add or remove space before the variadic '...' when preceded by a non-punctuator +sp_before_ellipsis = ignore # ignore/add/remove/force + +# Add or remove space after class ':' +sp_after_class_colon = ignore # ignore/add/remove/force + +# Add or remove space before class ':' +sp_before_class_colon = ignore # ignore/add/remove/force + +# Add or remove space after class constructor ':' +sp_after_constr_colon = ignore # ignore/add/remove/force + +# Add or remove space before class constructor ':' +sp_before_constr_colon = ignore # ignore/add/remove/force + +# Add or remove space before case ':'. Default=Remove +sp_before_case_colon = remove # ignore/add/remove/force + +# Add or remove space between 'operator' and operator sign +sp_after_operator = ignore # ignore/add/remove/force + +# Add or remove space between the operator symbol and the open paren, as in 'operator ++(' +sp_after_operator_sym = ignore # ignore/add/remove/force + +# 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_cast = remove # ignore/add/remove/force + +# Add or remove spaces inside cast parens +sp_inside_paren_cast = ignore # ignore/add/remove/force + +# Add or remove space between the type and open paren in a C++ cast, i.e. 'int(exp)' vs 'int (exp)' +sp_cpp_cast_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'sizeof' and '(' +sp_sizeof_paren = remove # ignore/add/remove/force + +# Add or remove space after the tag keyword (Pawn) +sp_after_tag = ignore # ignore/add/remove/force + +# Add or remove space inside enum '{' and '}' +sp_inside_braces_enum = force # ignore/add/remove/force + +# Add or remove space inside struct/union '{' and '}' +sp_inside_braces_struct = force # ignore/add/remove/force + +# Add or remove space inside '{' and '}' +sp_inside_braces = force # ignore/add/remove/force + +# Add or remove space inside '{}' +sp_inside_braces_empty = ignore # ignore/add/remove/force + +# Add or remove space between return type and function name +# A minimum of 1 is forced except for pointer return types. +sp_type_func = force # ignore/add/remove/force + +# Add or remove space between function name and '(' on function declaration +sp_func_proto_paren = remove # ignore/add/remove/force + +# Add or remove space between function name and '(' on function definition +sp_func_def_paren = remove # ignore/add/remove/force + +# Add or remove space inside empty function '()' +sp_inside_fparens = ignore # ignore/add/remove/force + +# Add or remove space inside function '(' and ')' +sp_inside_fparen = remove # ignore/add/remove/force + +# Add or remove space inside the first parens in the function type: 'void (*x)(...)' +sp_inside_tparen = ignore # ignore/add/remove/force + +# Add or remove between the parens in the function type: 'void (*x)(...)' +sp_after_tparen_close = ignore # ignore/add/remove/force + +# Add or remove space between ']' and '(' when part of a function call. +sp_square_fparen = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '{' of function +sp_fparen_brace = add # ignore/add/remove/force + +# Java: Add or remove space between ')' and '{{' of double brace initializer. +sp_fparen_dbrace = ignore # ignore/add/remove/force + +# Add or remove space between function name and '(' on function calls +sp_func_call_paren = remove # ignore/add/remove/force + +# 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_func_call_paren_empty = ignore # ignore/add/remove/force + +# 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_func_call_user_paren = ignore # ignore/add/remove/force + +# Add or remove space between a constructor/destructor and the open paren +sp_func_class_paren = remove # ignore/add/remove/force + +# Add or remove space between 'return' and '(' +sp_return_paren = remove # ignore/add/remove/force + +# Add or remove space between '__attribute__' and '(' +sp_attribute_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'defined' and '(' in '#if defined (FOO)' +sp_defined_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'throw' and '(' in 'throw (something)' +sp_throw_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'throw' and anything other than '(' as in '@throw [...];' +sp_after_throw = ignore # ignore/add/remove/force + +# Add or remove space between 'catch' and '(' in 'catch (something) { }' +# If set to ignore, sp_before_sparen is used. +sp_catch_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'version' and '(' in 'version (something) { }' (D language) +# If set to ignore, sp_before_sparen is used. +sp_version_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'scope' and '(' in 'scope (something) { }' (D language) +# If set to ignore, sp_before_sparen is used. +sp_scope_paren = ignore # ignore/add/remove/force + +# Add or remove space between macro and value +sp_macro = ignore # ignore/add/remove/force + +# Add or remove space between macro function ')' and value +sp_macro_func = ignore # ignore/add/remove/force + +# Add or remove space between 'else' and '{' if on the same line +sp_else_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'else' if on the same line +sp_brace_else = ignore # ignore/add/remove/force + +# Add or remove space between '}' and the name of a typedef on the same line +sp_brace_typedef = force # ignore/add/remove/force + +# Add or remove space between 'catch' and '{' if on the same line +sp_catch_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'catch' if on the same line +sp_brace_catch = ignore # ignore/add/remove/force + +# Add or remove space between 'finally' and '{' if on the same line +sp_finally_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'finally' if on the same line +sp_brace_finally = ignore # ignore/add/remove/force + +# Add or remove space between 'try' and '{' if on the same line +sp_try_brace = ignore # ignore/add/remove/force + +# Add or remove space between get/set and '{' if on the same line +sp_getset_brace = ignore # ignore/add/remove/force + +# Add or remove space between a variable and '{' for C++ uniform initialization +sp_word_brace = add # ignore/add/remove/force + +# Add or remove space between a variable and '{' for a namespace +sp_word_brace_ns = add # ignore/add/remove/force + +# Add or remove space before the '::' operator +sp_before_dc = remove # ignore/add/remove/force + +# Add or remove space after the '::' operator +sp_after_dc = remove # ignore/add/remove/force + +# Add or remove around the D named array initializer ':' operator +sp_d_array_colon = ignore # ignore/add/remove/force + +# Add or remove space after the '!' (not) operator. Default=Remove +sp_not = remove # ignore/add/remove/force + +# Add or remove space after the '~' (invert) operator. Default=Remove +sp_inv = remove # ignore/add/remove/force + +# 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_addr = remove # ignore/add/remove/force + +# Add or remove space around the '.' or '->' operators. Default=Remove +sp_member = remove # ignore/add/remove/force + +# 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_deref = remove # ignore/add/remove/force + +# Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. Default=Remove +sp_sign = remove # ignore/add/remove/force + +# Add or remove space before or after '++' and '--', as in '(--x)' or 'y++;'. Default=Remove +sp_incdec = remove # ignore/add/remove/force + +# Add or remove space before a backslash-newline at the end of a line. Default=Add +sp_before_nl_cont = add # ignore/add/remove/force + +# Add or remove space after the scope '+' or '-', as in '-(void) foo;' or '+(int) bar;' +sp_after_oc_scope = ignore # ignore/add/remove/force + +# Add or remove space after the colon in message specs +# '-(int) f:(int) x;' vs '-(int) f: (int) x;' +sp_after_oc_colon = ignore # ignore/add/remove/force + +# Add or remove space before the colon in message specs +# '-(int) f: (int) x;' vs '-(int) f : (int) x;' +sp_before_oc_colon = ignore # ignore/add/remove/force + +# Add or remove space after the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};' +sp_after_oc_dict_colon = ignore # ignore/add/remove/force + +# Add or remove space before the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};' +sp_before_oc_dict_colon = ignore # ignore/add/remove/force + +# Add or remove space after the colon in message specs +# '[object setValue:1];' vs '[object setValue: 1];' +sp_after_send_oc_colon = ignore # ignore/add/remove/force + +# Add or remove space before the colon in message specs +# '[object setValue:1];' vs '[object setValue :1];' +sp_before_send_oc_colon = ignore # ignore/add/remove/force + +# Add or remove space after the (type) in message specs +# '-(int)f: (int) x;' vs '-(int)f: (int)x;' +sp_after_oc_type = ignore # ignore/add/remove/force + +# Add or remove space after the first (type) in message specs +# '-(int) f:(int)x;' vs '-(int)f:(int)x;' +sp_after_oc_return_type = ignore # ignore/add/remove/force + +# Add or remove space between '@selector' and '(' +# '@selector(msgName)' vs '@selector (msgName)' +# Also applies to @protocol() constructs +sp_after_oc_at_sel = ignore # ignore/add/remove/force + +# Add or remove space between '@selector(x)' and the following word +# '@selector(foo) a:' vs '@selector(foo)a:' +sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force + +# Add or remove space inside '@selector' parens +# '@selector(foo)' vs '@selector( foo )' +# Also applies to @protocol() constructs +sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force + +# Add or remove space before a block pointer caret +# '^int (int arg){...}' vs. ' ^int (int arg){...}' +sp_before_oc_block_caret = ignore # ignore/add/remove/force + +# Add or remove space after a block pointer caret +# '^int (int arg){...}' vs. '^ int (int arg){...}' +sp_after_oc_block_caret = ignore # ignore/add/remove/force + +# Add or remove space between the receiver and selector in a message. +# '[receiver selector ...]' +sp_after_oc_msg_receiver = ignore # ignore/add/remove/force + +# Add or remove space after @property. +sp_after_oc_property = ignore # ignore/add/remove/force + +# Add or remove space around the ':' in 'b ? t : f' +sp_cond_colon = ignore # ignore/add/remove/force + +# Add or remove space before the ':' in 'b ? t : f'. Overrides sp_cond_colon. +sp_cond_colon_before = ignore # ignore/add/remove/force + +# Add or remove space after the ':' in 'b ? t : f'. Overrides sp_cond_colon. +sp_cond_colon_after = ignore # ignore/add/remove/force + +# Add or remove space around the '?' in 'b ? t : f' +sp_cond_question = ignore # ignore/add/remove/force + +# Add or remove space before the '?' in 'b ? t : f'. Overrides sp_cond_question. +sp_cond_question_before = ignore # ignore/add/remove/force + +# Add or remove space after the '?' in 'b ? t : f'. Overrides sp_cond_question. +sp_cond_question_after = ignore # ignore/add/remove/force + +# In the abbreviated ternary form (a ?: b), add/remove space between ? and :.'. Overrides all other sp_cond_* options. +sp_cond_ternary_short = ignore # ignore/add/remove/force + +# Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make sense here. +sp_case_label = remove # ignore/add/remove/force + +# Control the space around the D '..' operator. +sp_range = ignore # ignore/add/remove/force + +# Control the spacing after ':' in 'for (TYPE VAR : EXPR)' +sp_after_for_colon = ignore # ignore/add/remove/force + +# Control the spacing before ':' in 'for (TYPE VAR : EXPR)' +sp_before_for_colon = ignore # ignore/add/remove/force + +# Control the spacing in 'extern (C)' (D) +sp_extern_paren = ignore # ignore/add/remove/force + +# Control the space after the opening of a C++ comment '// A' vs '//A' +sp_cmt_cpp_start = ignore # ignore/add/remove/force + +# TRUE: If space is added with sp_cmt_cpp_start, do it after doxygen sequences like '///', '///<', '//!' and '//!<'. +sp_cmt_cpp_doxygen = false # false/true + +# TRUE: If space is added with sp_cmt_cpp_start, do it after Qt translator or meta-data comments like '//:', '//=', and '//~'. +sp_cmt_cpp_qttr = false # false/true + +# Controls the spaces between #else or #endif and a trailing comment +sp_endif_cmt = ignore # ignore/add/remove/force + +# Controls the spaces after 'new', 'delete', and 'delete[]' +sp_after_new = ignore # ignore/add/remove/force + +# Controls the spaces between new and '(' in 'new()' +sp_between_new_paren = ignore # ignore/add/remove/force + +# Controls the spaces before a trailing or embedded comment +sp_before_tr_emb_cmt = ignore # ignore/add/remove/force + +# Number of spaces before a trailing or embedded comment +sp_num_before_tr_emb_cmt = 0 # number + +# Control space between a Java annotation and the open paren. +sp_annotation_paren = ignore # ignore/add/remove/force + +# +# Code alignment (not left column spaces/tabs) +# + +# Whether to keep non-indenting tabs +align_keep_tabs = false # false/true + +# Whether to use tabs for aligning +align_with_tabs = false # false/true + +# Whether to bump out to the next tab when aligning +align_on_tabstop = false # false/true + +# Whether to right-align numbers +align_number_right = true # false/true + +# Whether to keep whitespace not required for alignment. +align_keep_extra_space = false # false/true + +# Align variable definitions in prototypes and functions +align_func_params = true # false/true + +# Align parameters in single-line functions that have the same name. +# The function names must already be aligned with each other. +align_same_func_call_params = false # false/true + +# The span for aligning parameters in single line functions with the same name (0=don't align). +align_same_func_call_params_span = 0 # unsigned number + +# The thresh for aligning function call parameters (0=no limit). +align_same_func_call_params_thresh = 0 # unsigned number + +# The span for aligning variable definitions (0=don't align) +align_var_def_span = 1 # number + +# 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;' +align_var_def_star_style = 1 # number + +# How to align the '&' in variable definitions. +# 0=Part of the type +# 1=Part of the variable +# 2=Dangling +align_var_def_amp_style = 0 # number + +# The threshold for aligning variable definitions (0=no limit) +align_var_def_thresh = 16 # number + +# The gap for aligning variable definitions +align_var_def_gap = 0 # number + +# Whether to align the colon in struct bit fields +align_var_def_colon = true # false/true + +# Whether to align any attribute after the variable name +align_var_def_attribute = false # false/true + +# Whether to align inline struct/enum/union variable definitions +align_var_def_inline = true # false/true + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 1 # number + +# The threshold for aligning on '=' in assignments (0=no limit) +align_assign_thresh = 12 # number + +# The span for aligning on '=' in enums (0=don't align) +align_enum_equ_span = 16 # number + +# The threshold for aligning on '=' in enums (0=no limit) +align_enum_equ_thresh = 0 # number + +# The span for aligning struct/union (0=don't align) +align_var_struct_span = 99 # number + +# The threshold for aligning struct/union member definitions (0=no limit) +align_var_struct_thresh = 0 # number + +# The gap for aligning struct/union member definitions +align_var_struct_gap = 0 # number + +# The span for aligning struct initializer values (0=don't align) +align_struct_init_span = 3 # number + +# The minimum space between the type and the synonym of a typedef +align_typedef_gap = 3 # number + +# The span for aligning single-line typedefs (0=don't align) +align_typedef_span = 5 # number + +# 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 +align_typedef_func = 0 # number + +# 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; +align_typedef_star_style = 0 # number + +# 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; +align_typedef_amp_style = 0 # number + +# The span for aligning comments that end lines (0=don't align) +align_right_cmt_span = 3 # number + +# If aligning comments, mix with comments after '}' and #endif with less than 3 spaces before the comment +align_right_cmt_mix = false # false/true + +# 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. +align_right_cmt_gap = 0 # number + +# Align trailing comment at or beyond column N; 'pulls in' comments as a bonus side effect (0=ignore) +align_right_cmt_at_col = 0 # number + +# The span for aligning function prototypes (0=don't align) +align_func_proto_span = 0 # number + +# Minimum gap between the return type and the function name. +align_func_proto_gap = 0 # number + +# Align function protos on the 'operator' keyword instead of what follows +align_on_operator = false # false/true + +# Whether to mix aligning prototype and variable declarations. +# If true, align_var_def_XXX options are used instead of align_func_proto_XXX options. +align_mix_var_proto = false # false/true + +# Align single-line functions with function prototypes, uses align_func_proto_span +align_single_line_func = false # false/true + +# Aligning the open brace of single-line functions. +# Requires align_single_line_func=true, uses align_func_proto_span +align_single_line_brace = false # false/true + +# Gap for align_single_line_brace. +align_single_line_brace_gap = 0 # number + +# The span for aligning ObjC msg spec (0=don't align) +align_oc_msg_spec_span = 0 # number + +# Whether to align macros wrapped with a backslash and a newline. +# This will not work right if the macro contains a multi-line comment. +align_nl_cont = true # false/true + +# # Align macro functions and variables together +align_pp_define_together = false # false/true + +# The minimum space between label and value of a preprocessor define +align_pp_define_gap = 4 # number + +# The span for aligning on '#define' bodies (0=don't align, other=number of lines including comments between blocks) +align_pp_define_span = 3 # number + +# Align lines that start with '<<' with previous '<<'. Default=true +align_left_shift = true # false/true + +# Align text after asm volatile () colons. +align_asm_colon = true # false/true + +# Span for aligning parameters in an Obj-C message call on the ':' (0=don't align) +align_oc_msg_colon_span = 0 # number + +# If true, always align with the first parameter, even if it is too short. +align_oc_msg_colon_first = false # false/true + +# Aligning parameters in an Obj-C '+' or '-' declaration on the ':' +align_oc_decl_colon = false # false/true + +# +# Newline adding and removing options +# + +# Whether to collapse empty blocks between '{' and '}' +nl_collapse_empty_body = false # false/true + +# Don't split one-line braced assignments - 'foo_t f = { 1, 2 };' +nl_assign_leave_one_liners = true # false/true + +# Don't split one-line braced statements inside a class xx { } body +nl_class_leave_one_liners = true # false/true + +# Don't split one-line enums: 'enum foo { BAR = 15 };' +nl_enum_leave_one_liners = false # false/true + +# Don't split one-line get or set functions +nl_getset_leave_one_liners = false # false/true + +# Don't split one-line function definitions - 'int foo() { return 0; }' +nl_func_leave_one_liners = false # false/true + +# Don't split one-line C++11 lambdas - '[]() { return 0; }' +nl_cpp_lambda_leave_one_liners = false # false/true + +# Don't split one-line if/else statements - 'if(a) b++;' +nl_if_leave_one_liners = false # false/true + +# Don't split one-line while statements - 'while(a) b++;' +nl_while_leave_one_liners = false # false/true + +# Don't split one-line OC messages +nl_oc_msg_leave_one_liner = false # false/true + +# Add or remove newlines at the start of the file +nl_start_of_file = remove # ignore/add/remove/force + +# The number of newlines at the start of the file (only used if nl_start_of_file is 'add' or 'force' +nl_start_of_file_min = 0 # number + +# Add or remove newline at the end of the file +nl_end_of_file = force # ignore/add/remove/force + +# The number of newlines at the end of the file (only used if nl_end_of_file is 'add' or 'force') +nl_end_of_file_min = 1 # number + +# Add or remove newline between '=' and '{' +nl_assign_brace = add # ignore/add/remove/force + +# Add or remove newline between '=' and '[' (D only) +nl_assign_square = ignore # ignore/add/remove/force + +# Add or remove newline after '= [' (D only). Will also affect the newline before the ']' +nl_after_square_assign = ignore # ignore/add/remove/force + +# The number of blank lines after a block of variable definitions at the top of a function body +# 0 = No change (default) +nl_func_var_def_blk = 1 # number + +# The number of newlines before a block of typedefs +# 0 = No change (default) +nl_typedef_blk_start = 0 # number + +# The number of newlines after a block of typedefs +# 0 = No change (default) +nl_typedef_blk_end = 0 # number + +# The maximum consecutive newlines within a block of typedefs +# 0 = No change (default) +nl_typedef_blk_in = 0 # number + +# The number of newlines before a block of variable definitions not at the top of a function body +# 0 = No change (default) +nl_var_def_blk_start = 0 # number + +# The number of newlines after a block of variable definitions not at the top of a function body +# 0 = No change (default) +nl_var_def_blk_end = 0 # number + +# The maximum consecutive newlines within a block of variable definitions +# 0 = No change (default) +nl_var_def_blk_in = 0 # number + +# Add or remove newline between a function call's ')' and '{', as in: +# list_for_each(item, &list) { } +nl_fcall_brace = add # ignore/add/remove/force + +# Add or remove newline between 'enum' and '{' +nl_enum_brace = force # ignore/add/remove/force + +# Add or remove newline between 'struct and '{' +nl_struct_brace = force # ignore/add/remove/force + +# Add or remove newline between 'union' and '{' +nl_union_brace = force # ignore/add/remove/force + +# Add or remove newline between 'if' and '{' +nl_if_brace = add # ignore/add/remove/force + +# Add or remove newline between '}' and 'else' +nl_brace_else = add # ignore/add/remove/force + +# Add or remove newline between 'else if' and '{' +# If set to ignore, nl_if_brace is used instead +nl_elseif_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'else' and '{' +nl_else_brace = add # ignore/add/remove/force + +# Add or remove newline between 'else' and 'if' +nl_else_if = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'finally' +nl_brace_finally = ignore # ignore/add/remove/force + +# Add or remove newline between 'finally' and '{' +nl_finally_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'try' and '{' +nl_try_brace = ignore # ignore/add/remove/force + +# Add or remove newline between get/set and '{' +nl_getset_brace = force # ignore/add/remove/force + +# Add or remove newline between 'for' and '{' +nl_for_brace = add # ignore/add/remove/force + +# Add or remove newline between 'catch' and '{' +nl_catch_brace = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'catch' +nl_brace_catch = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and ']' +nl_brace_square = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and ')' in a function invocation +nl_brace_fparen = ignore # ignore/add/remove/force + +# Add or remove newline between 'while' and '{' +nl_while_brace = add # ignore/add/remove/force + +# Add or remove newline between 'scope (x)' and '{' (D) +nl_scope_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'unittest' and '{' (D) +nl_unittest_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'version (x)' and '{' (D) +nl_version_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'using' and '{' +nl_using_brace = ignore # ignore/add/remove/force + +# Add or remove newline between two open or close braces. +# Due to general newline/brace handling, REMOVE may not work. +nl_brace_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'do' and '{' +nl_do_brace = add # ignore/add/remove/force + +# Add or remove newline between '}' and 'while' of 'do' statement +nl_brace_while = remove # ignore/add/remove/force + +# Add or remove newline between 'switch' and '{' +nl_switch_brace = add # ignore/add/remove/force + +# Add or remove newline between 'synchronized' and '{' +nl_synchronized_brace = ignore # ignore/add/remove/force + +# 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. +nl_multi_line_cond = false # false/true + +# Force a newline in a define after the macro name for multi-line defines. +nl_multi_line_define = true # false/true + +# Whether to put a newline before 'case' statement +nl_before_case = true # false/true + +# Add or remove newline between ')' and 'throw' +nl_before_throw = ignore # ignore/add/remove/force + +# Whether to put a newline after 'case' statement +nl_after_case = true # false/true + +# Add or remove a newline between a case ':' and '{'. Overrides nl_after_case. +nl_case_colon_brace = ignore # ignore/add/remove/force + +# Newline between namespace and { +nl_namespace_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'template<>' and whatever follows. +nl_template_class = ignore # ignore/add/remove/force + +# Add or remove newline between 'class' and '{' +nl_class_brace = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in the class base list +nl_class_init_args = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in the constructor member initialization +nl_constr_init_args = ignore # ignore/add/remove/force + +# Add or remove newline between return type and function name in a function definition +nl_func_type_name = ignore # ignore/add/remove/force + +# 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. +nl_func_type_name_class = ignore # ignore/add/remove/force + +# Add or remove newline between function scope and name in a definition +# Controls the newline after '::' in 'void A::f() { }' +nl_func_scope_name = ignore # ignore/add/remove/force + +# Add or remove newline between return type and function name in a prototype +nl_func_proto_type_name = ignore # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' +nl_func_paren = remove # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the definition +nl_func_def_paren = ignore # ignore/add/remove/force + +# Add or remove newline after '(' in a function declaration +nl_func_decl_start = ignore # ignore/add/remove/force + +# Add or remove newline after '(' in a function definition +nl_func_def_start = ignore # ignore/add/remove/force + +# Overrides nl_func_decl_start when there is only one parameter. +nl_func_decl_start_single = ignore # ignore/add/remove/force + +# Overrides nl_func_def_start when there is only one parameter. +nl_func_def_start_single = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in a function declaration +nl_func_decl_args = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in a function definition +nl_func_def_args = ignore # ignore/add/remove/force + +# Add or remove newline before the ')' in a function declaration +nl_func_decl_end = ignore # ignore/add/remove/force + +# Add or remove newline before the ')' in a function definition +nl_func_def_end = ignore # ignore/add/remove/force + +# Overrides nl_func_decl_end when there is only one parameter. +nl_func_decl_end_single = ignore # ignore/add/remove/force + +# Overrides nl_func_def_end when there is only one parameter. +nl_func_def_end_single = ignore # ignore/add/remove/force + +# Add or remove newline between '()' in a function declaration. +nl_func_decl_empty = ignore # ignore/add/remove/force + +# Add or remove newline between '()' in a function definition. +nl_func_def_empty = ignore # ignore/add/remove/force + +# Whether to put each OC message parameter on a separate line +# See nl_oc_msg_leave_one_liner +nl_oc_msg_args = false # false/true + +# Add or remove newline between function signature and '{' +nl_fdef_brace = add # ignore/add/remove/force + +# Add or remove newline between C++11 lambda signature and '{' +nl_cpp_ldef_brace = ignore # ignore/add/remove/force + +# Add or remove a newline between the return keyword and return expression. +nl_return_expr = ignore # ignore/add/remove/force + +# Whether to put a newline after semicolons, except in 'for' statements +nl_after_semicolon = true # false/true + +# Java: Control the newline between the ')' and '{{' of the double brace initializer. +nl_paren_dbrace_open = ignore # ignore/add/remove/force + +# Whether to put a newline after brace open. +# This also adds a newline before the matching brace close. +nl_after_brace_open = true # false/true + +# 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. +nl_after_brace_open_cmt = false # false/true + +# 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. +nl_after_vbrace_open = false # false/true + +# 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. +nl_after_vbrace_open_empty = false # false/true + +# Whether to put a newline after a brace close. +# Does not apply if followed by a necessary ';'. +nl_after_brace_close = true # false/true + +# Whether to put a newline after a virtual brace close. +# Would add a newline before return in: 'if (foo) a++; return;' +nl_after_vbrace_close = false # false/true + +# Control the newline between the close brace and 'b' in: 'struct { int a; } b;' +# Affects enums, unions, and structures. If set to ignore, uses nl_after_brace_close +nl_brace_struct_var = ignore # ignore/add/remove/force + +# Whether to alter newlines in '#define' macros +nl_define_macro = false # false/true + +# Whether to not put blanks after '#ifxx', '#elxx', or before '#endif'. Does not affect the whole-file #ifdef. +nl_squeeze_ifdef = true # false/true + +# Add or remove blank line before 'if' +nl_before_if = ignore # ignore/add/remove/force + +# Add or remove blank line after 'if' statement +nl_after_if = ignore # ignore/add/remove/force + +# Add or remove blank line before 'for' +nl_before_for = ignore # ignore/add/remove/force + +# Add or remove blank line after 'for' statement +nl_after_for = ignore # ignore/add/remove/force + +# Add or remove blank line before 'while' +nl_before_while = ignore # ignore/add/remove/force + +# Add or remove blank line after 'while' statement +nl_after_while = ignore # ignore/add/remove/force + +# Add or remove blank line before 'switch' +nl_before_switch = ignore # ignore/add/remove/force + +# Add or remove blank line after 'switch' statement +nl_after_switch = ignore # ignore/add/remove/force + +# Add or remove blank line before 'synchronized' +nl_before_synchronized = ignore # ignore/add/remove/force + +# Add or remove blank line after 'synchronized' statement +nl_after_synchronized = ignore # ignore/add/remove/force + +# Add or remove blank line before 'do' +nl_before_do = ignore # ignore/add/remove/force + +# Add or remove blank line after 'do/while' statement +nl_after_do = ignore # ignore/add/remove/force + +# Whether to double-space commented-entries in struct/enum +nl_ds_struct_enum_cmt = false # false/true + +# Whether to double-space before the close brace of a struct/union/enum +# (lower priority than 'eat_blanks_before_close_brace') +nl_ds_struct_enum_close_brace = false # false/true + +# Add or remove a newline around a class colon. +# Related to pos_class_colon, nl_class_init_args, and pos_class_comma. +nl_class_colon = ignore # ignore/add/remove/force + +# Add or remove a newline around a class constructor colon. +# Related to pos_constr_colon, nl_constr_init_args, and pos_constr_comma. +nl_constr_colon = ignore # ignore/add/remove/force + +# Change simple unbraced if statements into a one-liner +# 'if(b)\n i++;' => 'if(b) i++;' +nl_create_if_one_liner = false # false/true + +# 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);' +nl_create_for_one_liner = false # false/true + +# Change simple unbraced while statements into a one-liner +# 'while (i<5)\n foo(i++);' => 'while (i<5) foo(i++);' +nl_create_while_one_liner = false # false/true + +# +# Positioning options +# + +# The position of arithmetic operators in wrapped expressions +pos_arith = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of assignment in wrapped expressions. +# Do not affect '=' followed by '{' +pos_assign = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of boolean operators in wrapped expressions +pos_bool = trail # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of comparison operators in wrapped expressions +pos_compare = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of conditional (b ? t : f) operators in wrapped expressions +pos_conditional = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in wrapped expressions +pos_comma = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in the class base list +pos_class_comma = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in the constructor initialization list +pos_constr_comma = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of colons between class and base class list +pos_class_colon = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of colons between constructor and member initialization +pos_constr_colon = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# +# Line Splitting options +# + +# Try to limit code width to N number of columns +code_width = 0 # number + +# Whether to fully split long 'for' statements at semi-colons +ls_for_split_full = false # false/true + +# Whether to fully split long function protos/calls at commas +ls_func_split_full = false # false/true + +# Whether to split lines as close to code_width as possible and ignore some groupings +ls_code_width = false # false/true + +# +# Blank line options +# + +# The maximum consecutive newlines +nl_max = 4 # number + +# The number of newlines after a function prototype, if followed by another function prototype +nl_after_func_proto = 0 # number + +# The number of newlines after a function prototype, if not followed by another function prototype +nl_after_func_proto_group = 2 # number + +# The number of newlines after '}' of a multi-line function body +nl_after_func_body = 3 # number + +# The number of newlines after '}' of a multi-line function body in a class declaration +nl_after_func_body_class = 2 # number + +# The number of newlines after '}' of a single line function body +nl_after_func_body_one_liner = 0 # number + +# The minimum number of newlines before a multi-line comment. +# Doesn't apply if after a brace open or another multi-line comment. +nl_before_block_comment = 2 # number + +# 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. +nl_before_c_comment = 0 # number + +# The minimum number of newlines before a CPP comment. +# Doesn't apply if after a brace open or other CPP comments. +nl_before_cpp_comment = 0 # number + +# Whether to force a newline after a multi-line comment. +nl_after_multiline_comment = false # false/true + +# Whether to force a newline after a label's colon. +nl_after_label_colon = false # false/true + +# The number of newlines after '}' or ';' of a struct/enum/union definition +nl_after_struct = 0 # number + +# The number of newlines after '}' or ';' of a class definition +nl_after_class = 0 # number + +# The number of newlines after '}' of a namespace +nl_after_namespace = 0 # number + +# 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. +nl_before_access_spec = 0 # number + +# The number of newlines after a 'private:', 'public:', 'protected:', 'signals:', or 'slots:' label. +# 0 = No change. +nl_after_access_spec = 0 # number + +# The number of newlines between a function def and the function comment. +# 0 = No change. +nl_comment_func_def = 1 # number + +# The number of newlines after a try-catch-finally block that isn't followed by a brace close. +# 0 = No change. +nl_after_try_catch_finally = 0 # number + +# The number of newlines before and after a property, indexer or event decl. +# 0 = No change. +nl_around_cs_property = 0 # number + +# The number of newlines between the get/set/add/remove handlers in C#. +# 0 = No change. +nl_between_get_set = 0 # number + +# Add or remove newline between C# property and the '{' +nl_property_brace = ignore # ignore/add/remove/force + +# Whether to remove blank lines after '{' +eat_blanks_after_open_brace = true # false/true + +# Whether to remove blank lines before '}' +eat_blanks_before_close_brace = true # false/true + +# How aggressively to remove extra newlines not in preproc. +# 0: No change +# 1: Remove most newlines not handled by other config +# 2: Remove all newlines and reformat completely by config +nl_remove_extra_newlines = 0 # number + +# Whether to put a blank line before 'return' statements, unless after an open brace. +nl_before_return = false # false/true + +# Whether to put a blank line after 'return' statements, unless followed by a close brace. +nl_after_return = true # false/true + +# Whether to put a newline after a Java annotation statement. +# Only affects annotations that are after a newline. +nl_after_annotation = ignore # ignore/add/remove/force + +# Controls the newline between two annotations. +nl_between_annotation = ignore # ignore/add/remove/force + +# +# Code modifying options (non-whitespace) +# + +# Add or remove braces on single-line 'do' statement +mod_full_brace_do = add # ignore/add/remove/force + +# Add or remove braces on single-line 'for' statement +mod_full_brace_for = add # ignore/add/remove/force + +# Add or remove braces on single-line function definitions. (Pawn) +mod_full_brace_function = ignore # ignore/add/remove/force + +# Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'. +mod_full_brace_if = add # ignore/add/remove/force + +# 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. +mod_full_brace_if_chain = false # false/true + +# Don't remove braces around statements that span N newlines +mod_full_brace_nl = 0 # number + +# Add or remove braces on single-line 'while' statement +mod_full_brace_while = add # ignore/add/remove/force + +# Add or remove braces on single-line 'using ()' statement +mod_full_brace_using = ignore # ignore/add/remove/force + +# Add or remove unnecessary paren on 'return' statement +mod_paren_on_return = ignore # ignore/add/remove/force + +# Whether to change optional semicolons to real semicolons +mod_pawn_semicolon = false # false/true + +# Add parens on 'while' and 'if' statement around bools +mod_full_paren_if_bool = true # false/true + +# Whether to remove superfluous semicolons +mod_remove_extra_semicolon = true # false/true + +# 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. +mod_add_long_function_closebrace_comment = 0 # number + +# 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. +mod_add_long_namespace_closebrace_comment = 0 # number + +# 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. +mod_add_long_switch_closebrace_comment = 0 # number + +# If an #ifdef body exceeds the specified number of newlines and doesn't have a comment after +# the #endif, a comment will be added. +mod_add_long_ifdef_endif_comment = 0 # number + +# 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_add_long_ifdef_else_comment = 0 # number + +# If TRUE, will sort consecutive single-line 'import' statements [Java, D] +mod_sort_import = false # false/true + +# If TRUE, will sort consecutive single-line 'using' statements [C#] +mod_sort_using = false # false/true + +# 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_include = false # false/true + +# If TRUE, it will move a 'break' that appears after a fully braced 'case' before the close brace. +mod_move_case_break = false # false/true + +# 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. +mod_case_brace = remove # ignore/add/remove/force + +# If TRUE, it will remove a void 'return;' that appears as the last statement in a function. +mod_remove_empty_return = true # false/true + +# +# Comment modifications +# + +# Try to wrap comments at cmt_width columns +cmt_width = 0 # number + +# 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 +cmt_reflow_mode = 0 # number + +# Whether to convert all tabs to spaces in comments. Default is to leave tabs inside comments alone, unless used for indenting. +cmt_convert_tab_to_spaces = false # false/true + +# If false, disable all multi-line comment changes, including cmt_width. keyword substitution, and leading chars. +# Default is true. +cmt_indent_multi = true # false/true + +# Whether to group c-comments that look like they are in a block +cmt_c_group = false # false/true + +# Whether to put an empty '/*' on the first line of the combined c-comment +cmt_c_nl_start = false # false/true + +# Whether to put a newline before the closing '*/' of the combined c-comment +cmt_c_nl_end = false # false/true + +# Whether to group cpp-comments that look like they are in a block +cmt_cpp_group = false # false/true + +# Whether to put an empty '/*' on the first line of the combined cpp-comment +cmt_cpp_nl_start = false # false/true + +# Whether to put a newline before the closing '*/' of the combined cpp-comment +cmt_cpp_nl_end = false # false/true + +# Whether to change cpp-comments into c-comments +cmt_cpp_to_c = false # false/true + +# Whether to put a star on subsequent comment lines +cmt_star_cont = true # false/true + +# The number of spaces to insert at the start of subsequent comment lines +cmt_sp_before_star_cont = 0 # number + +# The number of spaces to insert after the star on subsequent comment lines +cmt_sp_after_star_cont = 0 # number + +# 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 +cmt_multi_check_last = true # false/true + +# 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. +cmt_insert_file_header = "" # string + +# 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. +cmt_insert_file_footer = "" # string + +# 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() { ... } +cmt_insert_func_header = "" # string + +# 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. +cmt_insert_class_header = "" # string + +# The filename that contains text to insert before a Obj-C message specification if the method isn't preceded with a C/C++ comment. +# Will substitute $(message) with the function name and $(javaparam) with the javadoc @param and @return stuff. +cmt_insert_oc_msg_header = "" # string + +# 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. +cmt_insert_before_preproc = false # false/true + +# +# Preprocessor options +# + +# Control indent of preprocessors inside #if blocks at brace level 0 (file-level) +pp_indent = remove # ignore/add/remove/force + +# Whether to indent #if/#else/#endif at the brace level (true) or from column 1 (false) +pp_indent_at_level = false # false/true + +# Specifies the number of columns to indent preprocessors per level at brace level 0 (file-level). +# If pp_indent_at_level=false, specifies the number of columns to indent preprocessors per level at brace level > 0 (function-level). +# Default=1. +pp_indent_count = 1 # number + +# Add or remove space after # based on pp_level of #if blocks +pp_space = ignore # ignore/add/remove/force + +# Sets the number of spaces added with pp_space +pp_space_count = 0 # number + +# The indent for #region and #endregion in C# and '#pragma region' in C/C++ +pp_indent_region = 0 # number + +# Whether to indent the code between #region and #endregion +pp_region_indent_code = false # false/true + +# If pp_indent_at_level=true, sets the indent for #if, #else, and #endif when not at file-level. +# 0: indent preprocessors using output_tab_size. +# >0: column at which all preprocessors will be indented. +pp_indent_if = 0 # number + +# Control whether to indent the code between #if, #else and #endif. +pp_if_indent_code = false # false/true + +# Whether to indent '#define' at the brace level (true) or from column 1 (false) +pp_define_at_level = false # false/true + +# +# Use or Do not Use options +# + +# True: indent_func_call_param will be used +# False: indent_func_call_param will NOT be used +use_indent_func_call_param = true # false/true + +# True: indent_continue will be used only once +# False: indent_continue will be used every time (default) +use_indent_continue_only_once = false # false/true + +# You can force a token to be a type with the 'type' option. +# Example: +# type myfoo1 myfoo2 +# +# You can create custom macro-based indentation using macro-open, +# macro-else and macro-close. +# Example: +# macro-open BEGIN_TEMPLATE_MESSAGE_MAP +# macro-open BEGIN_MESSAGE_MAP +# macro-close END_MESSAGE_MAP +# +# You can assign any keyword to any type with the set option. +# set func_call_user _ N_ +# +# The full syntax description of all custom definition config entries +# is shown below: +# +# define custom tokens as: +# - embed whitespace in token using '' escape character, or +# put token in quotes +# - these: ' " and ` are recognized as quote delimiters +# +# type token1 token2 token3 ... +# ^ optionally specify multiple tokens on a single line +# define def_token output_token +# ^ output_token is optional, then NULL is assumed +# macro-open token +# macro-close token +# macro-else token +# set id token1 token2 ... +# ^ optionally specify multiple tokens on a single line +# ^ id is one of the names in token_enum.h sans the CT_ prefix, +# e.g. PP_PRAGMA +# +# all tokens are separated by any mix of ',' commas, '=' equal signs +# and whitespace (space, tab) +# +# You can add support for other file extensions using the 'file_ext' command. +# The first arg is the language name used with the '-l' option. +# The remaining args are file extensions, matched with 'endswith'. +# file_ext CPP .ch .cxx .cpp.in +# diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben2.cfg new file mode 100644 index 00000000..36831d5c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/ben2.cfg @@ -0,0 +1,83 @@ +# +# My favorite format +# + +indent_with_tabs = 0 # 1=indent with tabs, 2=indent to level only +input_tab_size = 8 # original tab size +output_tab_size = 3 # new tab size +indent_columns = output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +indent_align_string = False # align broken strings +indent_brace = 0 + +nl_enum_brace = add # "enum {" vs "enum \n {" +nl_union_brace = add # "union {" vs "union \n {" +nl_struct_brace = add # "struct {" vs "struct \n {" +nl_do_brace = add # "do {" vs "do \n {" +nl_if_brace = add # "if () {" vs "if () \n {" +nl_for_brace = add # "for () {" vs "for () \n {" +nl_else_brace = add # "else {" vs "else \n {" +nl_while_brace = add # "while () {" vs "while () \n {" +nl_switch_brace = add # "switch () {" vs "switch () \n {" +nl_func_var_def_blk = 1 +nl_before_case = 1 +nl_fcall_brace = add # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = add +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = add # "return 1;" vs "return (1);" +# mod_full_brace_if = add # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = add # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = add # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = add # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +#sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_assign = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + +align_with_tabs = FALSE # use tabs to align +align_on_tabstop = FALSE # align on tabstops +align_enum_equ_span = 4 +align_nl_cont = TRUE +align_var_def_span = 2 +align_var_def_inline = TRUE +align_var_def_star_style = 1 +align_var_def_colon = TRUE +align_assign_span = 1 +align_struct_init_span = 3 +align_var_struct_span = 3 +align_right_cmt_span = 3 +align_pp_define_span = 3 +align_pp_define_gap = 4 +align_number_right = TRUE +align_typedef_span = 5 +align_typedef_gap = 3 + +cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/d.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/d.cfg new file mode 100644 index 00000000..22690c47 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/d.cfg @@ -0,0 +1,83 @@ +# +# My favorite format +# + +indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 4 # new tab size +indent_columns = output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +indent_align_string = False # align broken strings +indent_brace = 0 + +nl_enum_brace = add # "enum {" vs "enum \n {" +nl_union_brace = add # "union {" vs "union \n {" +nl_struct_brace = add # "struct {" vs "struct \n {" +nl_do_brace = add # "do {" vs "do \n {" +nl_if_brace = add # "if () {" vs "if () \n {" +nl_for_brace = add # "for () {" vs "for () \n {" +nl_else_brace = add # "else {" vs "else \n {" +nl_while_brace = add # "while () {" vs "while () \n {" +nl_switch_brace = add # "switch () {" vs "switch () \n {" +# nl_func_var_def_blk = 1 +# nl_before_case = 1 +nl_fcall_brace = add # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = add +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = add # "return 1;" vs "return (1);" +# mod_full_brace_if = add # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = add # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = add # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = add # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = add # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +#sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_assign = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + +align_with_tabs = FALSE # use tabs to align +align_on_tabstop = FALSE # align on tabstops +align_enum_equ_span = 4 +align_nl_cont = TRUE +align_var_def_span = 2 +align_var_def_inline = TRUE +align_var_def_star_style = 1 +align_var_def_colon = TRUE +align_assign_span = 1 +align_struct_init_span = 3 +align_var_struct_span = 3 +align_right_cmt_span = 3 +align_pp_define_span = 3 +align_pp_define_gap = 4 +align_number_right = TRUE +align_typedef_span = 5 +align_typedef_gap = 3 + +# cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/defaults.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/defaults.cfg new file mode 100644 index 00000000..955e1fa2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/defaults.cfg @@ -0,0 +1,3128 @@ +# Uncrustify_d-0.71.0-250-9c62bb00 + +# +# General options +# + +# The type of line endings. +# +# Default: auto +newlines = auto # lf/crlf/cr/auto + +# The original size of tabs in the input. +# +# Default: 8 +input_tab_size = 8 # unsigned number + +# The size of tabs in the output (only used if align_with_tabs=true). +# +# Default: 8 +output_tab_size = 8 # unsigned number + +# The ASCII value of the string escape char, usually 92 (\) or (Pawn) 94 (^). +# +# Default: 92 +string_escape_char = 92 # unsigned number + +# Alternate string escape char (usually only used for Pawn). +# Only works right before the quote char. +string_escape_char2 = 0 # unsigned number + +# Replace tab characters found in string literals with the escape sequence \t +# instead. +string_replace_tab_chars = false # true/false + +# 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. +tok_split_gte = false # true/false + +# Disable formatting of NL_CONT ('\\n') ended lines (e.g. multiline macros) +disable_processing_nl_cont = false # true/false + +# Specify the marker used in comments to disable processing of part of the +# file. +# The comment should be used alone in one line. +# +# Default: *INDENT-OFF* +disable_processing_cmt = " *INDENT-OFF*" # string + +# Specify the marker used in comments to (re)enable processing in a file. +# The comment should be used alone in one line. +# +# Default: *INDENT-ON* +enable_processing_cmt = " *INDENT-ON*" # string + +# Enable parsing of digraphs. +enable_digraphs = false # true/false + +# Add or remove the UTF-8 BOM (recommend 'remove'). +utf8_bom = ignore # ignore/add/remove/force + +# If the file contains bytes with values between 128 and 255, but is not +# UTF-8, then output as UTF-8. +utf8_byte = false # true/false + +# Force the output encoding to UTF-8. +utf8_force = false # true/false + +# Add or remove space between 'do' and '{'. +sp_do_brace_open = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'while'. +sp_brace_close_while = ignore # ignore/add/remove/force + +# Add or remove space between 'while' and '('. +sp_while_paren_open = ignore # ignore/add/remove/force + +# +# Spacing options +# + +# Add or remove space around non-assignment symbolic operators ('+', '/', '%', +# '<<', and so forth). +sp_arith = ignore # ignore/add/remove/force + +# Add or remove space around arithmetic operators '+' and '-'. +# +# Overrides sp_arith. +sp_arith_additive = ignore # ignore/add/remove/force + +# Add or remove space around assignment operator '=', '+=', etc. +sp_assign = ignore # ignore/add/remove/force + +# Add or remove space around '=' in C++11 lambda capture specifications. +# +# Overrides sp_assign. +sp_cpp_lambda_assign = ignore # ignore/add/remove/force + +# Add or remove space after the capture specification of a C++11 lambda when +# an argument list is present, as in '[] <here> (int x){ ... }'. +sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force + +# Add or remove space after the capture specification of a C++11 lambda with +# no argument list is present, as in '[] <here> { ... }'. +sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force + +# Add or remove space after the argument list of a C++11 lambda, as in +# '[](int x) <here> { ... }'. +sp_cpp_lambda_paren_brace = ignore # ignore/add/remove/force + +# Add or remove space between a lambda body and its call operator of an +# immediately invoked lambda, as in '[]( ... ){ ... } <here> ( ... )'. +sp_cpp_lambda_fparen = ignore # ignore/add/remove/force + +# Add or remove space around assignment operator '=' in a prototype. +# +# If set to ignore, use sp_assign. +sp_assign_default = ignore # ignore/add/remove/force + +# Add or remove space before assignment operator '=', '+=', etc. +# +# Overrides sp_assign. +sp_before_assign = ignore # ignore/add/remove/force + +# Add or remove space after assignment operator '=', '+=', etc. +# +# Overrides sp_assign. +sp_after_assign = ignore # ignore/add/remove/force + +# Add or remove space in 'NS_ENUM ('. +sp_enum_paren = ignore # ignore/add/remove/force + +# Add or remove space around assignment '=' in enum. +sp_enum_assign = ignore # ignore/add/remove/force + +# Add or remove space before assignment '=' in enum. +# +# Overrides sp_enum_assign. +sp_enum_before_assign = ignore # ignore/add/remove/force + +# Add or remove space after assignment '=' in enum. +# +# Overrides sp_enum_assign. +sp_enum_after_assign = ignore # ignore/add/remove/force + +# Add or remove space around assignment ':' in enum. +sp_enum_colon = ignore # ignore/add/remove/force + +# Add or remove space around preprocessor '##' concatenation operator. +# +# Default: add +sp_pp_concat = add # ignore/add/remove/force + +# Add or remove space after preprocessor '#' stringify operator. +# Also affects the '#@' charizing operator. +sp_pp_stringify = ignore # ignore/add/remove/force + +# Add or remove space before preprocessor '#' stringify operator +# as in '#define x(y) L#y'. +sp_before_pp_stringify = ignore # ignore/add/remove/force + +# Add or remove space around boolean operators '&&' and '||'. +sp_bool = ignore # ignore/add/remove/force + +# Add or remove space around compare operator '<', '>', '==', etc. +sp_compare = ignore # ignore/add/remove/force + +# Add or remove space inside '(' and ')'. +sp_inside_paren = ignore # ignore/add/remove/force + +# Add or remove space between nested parentheses, i.e. '((' vs. ') )'. +sp_paren_paren = ignore # ignore/add/remove/force + +# Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('. +sp_cparen_oparen = ignore # ignore/add/remove/force + +# Whether to balance spaces inside nested parentheses. +sp_balance_nested_parens = false # true/false + +# Add or remove space between ')' and '{'. +sp_paren_brace = ignore # ignore/add/remove/force + +# Add or remove space between nested braces, i.e. '{{' vs '{ {'. +sp_brace_brace = ignore # ignore/add/remove/force + +# Add or remove space before pointer star '*'. +sp_before_ptr_star = ignore # ignore/add/remove/force + +# 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_before_unnamed_ptr_star = ignore # ignore/add/remove/force + +# Add or remove space between pointer stars '*'. +sp_between_ptr_star = ignore # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a word. +# +# Overrides sp_type_func. +sp_after_ptr_star = ignore # ignore/add/remove/force + +# Add or remove space after pointer caret '^', if followed by a word. +sp_after_ptr_block_caret = ignore # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a qualifier. +sp_after_ptr_star_qualifier = ignore # ignore/add/remove/force + +# 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. +sp_after_ptr_star_func = ignore # ignore/add/remove/force + +# Add or remove space after a pointer star '*', if followed by an open +# parenthesis, as in 'void* (*)(). +sp_ptr_star_paren = ignore # ignore/add/remove/force + +# Add or remove space before a pointer star '*', if followed by a function +# prototype or function definition. +sp_before_ptr_star_func = ignore # ignore/add/remove/force + +# Add or remove space before a reference sign '&'. +sp_before_byref = ignore # ignore/add/remove/force + +# 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_before_unnamed_byref = ignore # ignore/add/remove/force + +# Add or remove space after reference sign '&', if followed by a word. +# +# Overrides sp_type_func. +sp_after_byref = ignore # ignore/add/remove/force + +# 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. +sp_after_byref_func = ignore # ignore/add/remove/force + +# Add or remove space before a reference sign '&', if followed by a function +# prototype or function definition. +sp_before_byref_func = ignore # ignore/add/remove/force + +# 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 +sp_after_type = force # ignore/add/remove/force + +# Add or remove space between 'decltype(...)' and word. +# +# Overrides sp_after_type. +sp_after_decltype = ignore # ignore/add/remove/force + +# (D) Add or remove space before the parenthesis in the D constructs +# 'template Foo(' and 'class Foo('. +sp_before_template_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'template' and '<'. +# If set to ignore, sp_before_angle is used. +sp_template_angle = ignore # ignore/add/remove/force + +# Add or remove space before '<'. +sp_before_angle = ignore # ignore/add/remove/force + +# Add or remove space inside '<' and '>'. +sp_inside_angle = ignore # ignore/add/remove/force + +# Add or remove space inside '<>'. +sp_inside_angle_empty = ignore # ignore/add/remove/force + +# Add or remove space between '>' and ':'. +sp_angle_colon = ignore # ignore/add/remove/force + +# Add or remove space after '>'. +sp_after_angle = ignore # ignore/add/remove/force + +# Add or remove space between '>' and '(' as found in 'new List<byte>(foo);'. +sp_angle_paren = ignore # ignore/add/remove/force + +# Add or remove space between '>' and '()' as found in 'new List<byte>();'. +sp_angle_paren_empty = ignore # ignore/add/remove/force + +# Add or remove space between '>' and a word as in 'List<byte> m;' or +# 'template <typename T> static ...'. +sp_angle_word = ignore # ignore/add/remove/force + +# Add or remove space between '>' and '>' in '>>' (template stuff). +# +# Default: add +sp_angle_shift = add # ignore/add/remove/force + +# (C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note +# that sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = false # true/false + +# Add or remove space before '(' of control statements ('if', 'for', 'switch', +# 'while', etc.). +sp_before_sparen = ignore # ignore/add/remove/force + +# Add or remove space inside '(' and ')' of control statements. +sp_inside_sparen = ignore # ignore/add/remove/force + +# Add or remove space after '(' of control statements. +# +# Overrides sp_inside_sparen. +sp_inside_sparen_open = ignore # ignore/add/remove/force + +# Add or remove space before ')' of control statements. +# +# Overrides sp_inside_sparen. +sp_inside_sparen_close = ignore # ignore/add/remove/force + +# Add or remove space after ')' of control statements. +sp_after_sparen = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '{' of of control statements. +sp_sparen_brace = ignore # ignore/add/remove/force + +# (D) Add or remove space between 'invariant' and '('. +sp_invariant_paren = ignore # ignore/add/remove/force + +# (D) Add or remove space after the ')' in 'invariant (C) c'. +sp_after_invariant_paren = ignore # ignore/add/remove/force + +# Add or remove space before empty statement ';' on 'if', 'for' and 'while'. +sp_special_semi = ignore # ignore/add/remove/force + +# Add or remove space before ';'. +# +# Default: remove +sp_before_semi = remove # ignore/add/remove/force + +# Add or remove space before ';' in non-empty 'for' statements. +sp_before_semi_for = ignore # ignore/add/remove/force + +# Add or remove space before a semicolon of an empty part of a for statement. +sp_before_semi_for_empty = ignore # ignore/add/remove/force + +# Add or remove space after ';', except when followed by a comment. +# +# Default: add +sp_after_semi = add # ignore/add/remove/force + +# Add or remove space after ';' in non-empty 'for' statements. +# +# Default: force +sp_after_semi_for = force # ignore/add/remove/force + +# Add or remove space after the final semicolon of an empty part of a for +# statement, as in 'for ( ; ; <here> )'. +sp_after_semi_for_empty = ignore # ignore/add/remove/force + +# Add or remove space before '[' (except '[]'). +sp_before_square = ignore # ignore/add/remove/force + +# Add or remove space before '[' for a variable definition. +# +# Default: remove +sp_before_vardef_square = remove # ignore/add/remove/force + +# Add or remove space before '[' for asm block. +sp_before_square_asm_block = ignore # ignore/add/remove/force + +# Add or remove space before '[]'. +sp_before_squares = ignore # ignore/add/remove/force + +# Add or remove space before C++17 structured bindings. +sp_cpp_before_struct_binding = ignore # ignore/add/remove/force + +# Add or remove space inside a non-empty '[' and ']'. +sp_inside_square = ignore # ignore/add/remove/force + +# Add or remove space inside '[]'. +sp_inside_square_empty = ignore # ignore/add/remove/force + +# (OC) Add or remove space inside a non-empty Objective-C boxed array '@[' and +# ']'. If set to ignore, sp_inside_square is used. +sp_inside_square_oc_array = ignore # ignore/add/remove/force + +# Add or remove space after ',', i.e. 'a,b' vs. 'a, b'. +sp_after_comma = ignore # ignore/add/remove/force + +# Add or remove space before ','. +# +# Default: remove +sp_before_comma = remove # ignore/add/remove/force + +# (C#) Add or remove space between ',' and ']' in multidimensional array type +# like 'int[,,]'. +sp_after_mdatype_commas = ignore # ignore/add/remove/force + +# (C#) Add or remove space between '[' and ',' in multidimensional array type +# like 'int[,,]'. +sp_before_mdatype_commas = ignore # ignore/add/remove/force + +# (C#) Add or remove space between ',' in multidimensional array type +# like 'int[,,]'. +sp_between_mdatype_commas = ignore # ignore/add/remove/force + +# Add or remove space between an open parenthesis and comma, +# i.e. '(,' vs. '( ,'. +# +# Default: force +sp_paren_comma = force # ignore/add/remove/force + +# Add or remove space before the variadic '...' when preceded by a +# non-punctuator. +sp_before_ellipsis = ignore # ignore/add/remove/force + +# Add or remove space between a type and '...'. +sp_type_ellipsis = ignore # ignore/add/remove/force + +# (D) Add or remove space between a type and '?'. +sp_type_question = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '...'. +sp_paren_ellipsis = ignore # ignore/add/remove/force + +# Add or remove space between ')' and a qualifier such as 'const'. +sp_paren_qualifier = ignore # ignore/add/remove/force + +# Add or remove space between ')' and 'noexcept'. +sp_paren_noexcept = ignore # ignore/add/remove/force + +# Add or remove space after class ':'. +sp_after_class_colon = ignore # ignore/add/remove/force + +# Add or remove space before class ':'. +sp_before_class_colon = ignore # ignore/add/remove/force + +# Add or remove space after class constructor ':'. +sp_after_constr_colon = ignore # ignore/add/remove/force + +# Add or remove space before class constructor ':'. +sp_before_constr_colon = ignore # ignore/add/remove/force + +# Add or remove space before case ':'. +# +# Default: remove +sp_before_case_colon = remove # ignore/add/remove/force + +# Add or remove space between 'operator' and operator sign. +sp_after_operator = ignore # ignore/add/remove/force + +# Add or remove space between the operator symbol and the open parenthesis, as +# in 'operator ++('. +sp_after_operator_sym = ignore # ignore/add/remove/force + +# Overrides sp_after_operator_sym when the operator has no arguments, as in +# 'operator *()'. +sp_after_operator_sym_empty = ignore # ignore/add/remove/force + +# 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_cast = ignore # ignore/add/remove/force + +# Add or remove spaces inside cast parentheses. +sp_inside_paren_cast = ignore # ignore/add/remove/force + +# Add or remove space between the type and open parenthesis in a C++ cast, +# i.e. 'int(exp)' vs. 'int (exp)'. +sp_cpp_cast_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'sizeof' and '('. +sp_sizeof_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'sizeof' and '...'. +sp_sizeof_ellipsis = ignore # ignore/add/remove/force + +# Add or remove space between 'sizeof...' and '('. +sp_sizeof_ellipsis_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'decltype' and '('. +sp_decltype_paren = ignore # ignore/add/remove/force + +# (Pawn) Add or remove space after the tag keyword. +sp_after_tag = ignore # ignore/add/remove/force + +# Add or remove space inside enum '{' and '}'. +sp_inside_braces_enum = ignore # ignore/add/remove/force + +# Add or remove space inside struct/union '{' and '}'. +sp_inside_braces_struct = ignore # ignore/add/remove/force + +# (OC) Add or remove space inside Objective-C boxed dictionary '{' and '}' +sp_inside_braces_oc_dict = ignore # ignore/add/remove/force + +# Add or remove space after open brace in an unnamed temporary +# direct-list-initialization. +sp_after_type_brace_init_lst_open = ignore # ignore/add/remove/force + +# Add or remove space before close brace in an unnamed temporary +# direct-list-initialization. +sp_before_type_brace_init_lst_close = ignore # ignore/add/remove/force + +# Add or remove space inside an unnamed temporary direct-list-initialization. +sp_inside_type_brace_init_lst = ignore # ignore/add/remove/force + +# Add or remove space inside '{' and '}'. +sp_inside_braces = ignore # ignore/add/remove/force + +# Add or remove space inside '{}'. +sp_inside_braces_empty = ignore # ignore/add/remove/force + +# Add or remove space around trailing return operator '->'. +sp_trailing_return = ignore # ignore/add/remove/force + +# Add or remove space between return type and function name. A minimum of 1 +# is forced except for pointer return types. +sp_type_func = ignore # ignore/add/remove/force + +# Add or remove space between type and open brace of an unnamed temporary +# direct-list-initialization. +sp_type_brace_init_lst = ignore # ignore/add/remove/force + +# Add or remove space between function name and '(' on function declaration. +sp_func_proto_paren = ignore # ignore/add/remove/force + +# Add or remove space between function name and '()' on function declaration +# without parameters. +sp_func_proto_paren_empty = ignore # ignore/add/remove/force + +# Add or remove space between function name and '(' with a typedef specifier. +sp_func_type_paren = ignore # ignore/add/remove/force + +# Add or remove space between alias name and '(' of a non-pointer function type typedef. +sp_func_def_paren = ignore # ignore/add/remove/force + +# Add or remove space between function name and '()' on function definition +# without parameters. +sp_func_def_paren_empty = ignore # ignore/add/remove/force + +# Add or remove space inside empty function '()'. +# Overrides sp_after_angle unless use_sp_after_angle_always is set to true. +sp_inside_fparens = ignore # ignore/add/remove/force + +# Add or remove space inside function '(' and ')'. +sp_inside_fparen = ignore # ignore/add/remove/force + +# Add or remove space inside the first parentheses in a function type, as in +# 'void (*x)(...)'. +sp_inside_tparen = ignore # ignore/add/remove/force + +# Add or remove space between the ')' and '(' in a function type, as in +# 'void (*x)(...)'. +sp_after_tparen_close = ignore # ignore/add/remove/force + +# Add or remove space between ']' and '(' when part of a function call. +sp_square_fparen = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '{' of function. +sp_fparen_brace = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '{' of a function call in object +# initialization. +# +# Overrides sp_fparen_brace. +sp_fparen_brace_initializer = ignore # ignore/add/remove/force + +# (Java) Add or remove space between ')' and '{{' of double brace initializer. +sp_fparen_dbrace = ignore # ignore/add/remove/force + +# Add or remove space between function name and '(' on function calls. +sp_func_call_paren = ignore # ignore/add/remove/force + +# 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_func_call_paren_empty = ignore # ignore/add/remove/force + +# 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 +sp_func_call_user_paren = ignore # ignore/add/remove/force + +# Add or remove space inside user function '(' and ')'. +sp_func_call_user_inside_fparen = ignore # ignore/add/remove/force + +# Add or remove space between nested parentheses with user functions, +# i.e. '((' vs. '( ('. +sp_func_call_user_paren_paren = ignore # ignore/add/remove/force + +# Add or remove space between a constructor/destructor and the open +# parenthesis. +sp_func_class_paren = ignore # ignore/add/remove/force + +# Add or remove space between a constructor without parameters or destructor +# and '()'. +sp_func_class_paren_empty = ignore # ignore/add/remove/force + +# Add or remove space between 'return' and '('. +sp_return_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'return' and '{'. +sp_return_brace = ignore # ignore/add/remove/force + +# Add or remove space between '__attribute__' and '('. +sp_attribute_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'defined' and '(' in '#if defined (FOO)'. +sp_defined_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'throw' and '(' in 'throw (something)'. +sp_throw_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'throw' and anything other than '(' as in +# '@throw [...];'. +sp_after_throw = ignore # ignore/add/remove/force + +# Add or remove space between 'catch' and '(' in 'catch (something) { }'. +# If set to ignore, sp_before_sparen is used. +sp_catch_paren = ignore # ignore/add/remove/force + +# (OC) Add or remove space between '@catch' and '(' +# in '@catch (something) { }'. If set to ignore, sp_catch_paren is used. +sp_oc_catch_paren = ignore # ignore/add/remove/force + +# (OC) Add or remove space before Objective-C protocol list +# as in '@protocol Protocol<here><Protocol_A>' or '@interface MyClass : NSObject<here><MyProtocol>'. +sp_before_oc_proto_list = ignore # ignore/add/remove/force + +# (OC) Add or remove space between class name and '(' +# in '@interface className(categoryName)<ProtocolName>:BaseClass' +sp_oc_classname_paren = ignore # ignore/add/remove/force + +# (D) Add or remove space between 'version' and '(' +# in 'version (something) { }'. If set to ignore, sp_before_sparen is used. +sp_version_paren = ignore # ignore/add/remove/force + +# (D) Add or remove space between 'scope' and '(' +# in 'scope (something) { }'. If set to ignore, sp_before_sparen is used. +sp_scope_paren = ignore # ignore/add/remove/force + +# Add or remove space between 'super' and '(' in 'super (something)'. +# +# Default: remove +sp_super_paren = remove # ignore/add/remove/force + +# Add or remove space between 'this' and '(' in 'this (something)'. +# +# Default: remove +sp_this_paren = remove # ignore/add/remove/force + +# Add or remove space between a macro name and its definition. +sp_macro = ignore # ignore/add/remove/force + +# Add or remove space between a macro function ')' and its definition. +sp_macro_func = ignore # ignore/add/remove/force + +# Add or remove space between 'else' and '{' if on the same line. +sp_else_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'else' if on the same line. +sp_brace_else = ignore # ignore/add/remove/force + +# Add or remove space between '}' and the name of a typedef on the same line. +sp_brace_typedef = ignore # ignore/add/remove/force + +# Add or remove space before the '{' of a 'catch' statement, if the '{' and +# 'catch' are on the same line, as in 'catch (decl) <here> {'. +sp_catch_brace = ignore # ignore/add/remove/force + +# (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. +sp_oc_catch_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'catch' if on the same line. +sp_brace_catch = ignore # ignore/add/remove/force + +# (OC) Add or remove space between '}' and '@catch' if on the same line. +# If set to ignore, sp_brace_catch is used. +sp_oc_brace_catch = ignore # ignore/add/remove/force + +# Add or remove space between 'finally' and '{' if on the same line. +sp_finally_brace = ignore # ignore/add/remove/force + +# Add or remove space between '}' and 'finally' if on the same line. +sp_brace_finally = ignore # ignore/add/remove/force + +# Add or remove space between 'try' and '{' if on the same line. +sp_try_brace = ignore # ignore/add/remove/force + +# Add or remove space between get/set and '{' if on the same line. +sp_getset_brace = ignore # ignore/add/remove/force + +# Add or remove space between a variable and '{' for C++ uniform +# initialization. +sp_word_brace_init_lst = ignore # ignore/add/remove/force + +# Add or remove space between a variable and '{' for a namespace. +# +# Default: add +sp_word_brace_ns = add # ignore/add/remove/force + +# Add or remove space before the '::' operator. +sp_before_dc = ignore # ignore/add/remove/force + +# Add or remove space after the '::' operator. +sp_after_dc = ignore # ignore/add/remove/force + +# (D) Add or remove around the D named array initializer ':' operator. +sp_d_array_colon = ignore # ignore/add/remove/force + +# Add or remove space after the '!' (not) unary operator. +# +# Default: remove +sp_not = remove # ignore/add/remove/force + +# Add or remove space after the '~' (invert) unary operator. +# +# Default: remove +sp_inv = remove # ignore/add/remove/force + +# 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 +sp_addr = remove # ignore/add/remove/force + +# Add or remove space around the '.' or '->' operators. +# +# Default: remove +sp_member = remove # ignore/add/remove/force + +# 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 +sp_deref = remove # ignore/add/remove/force + +# Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. +# +# Default: remove +sp_sign = remove # ignore/add/remove/force + +# Add or remove space between '++' and '--' the word to which it is being +# applied, as in '(--x)' or 'y++;'. +# +# Default: remove +sp_incdec = remove # ignore/add/remove/force + +# Add or remove space before a backslash-newline at the end of a line. +# +# Default: add +sp_before_nl_cont = add # ignore/add/remove/force + +# (OC) Add or remove space after the scope '+' or '-', as in '-(void) foo;' +# or '+(int) bar;'. +sp_after_oc_scope = ignore # ignore/add/remove/force + +# (OC) Add or remove space after the colon in message specs, +# i.e. '-(int) f:(int) x;' vs. '-(int) f: (int) x;'. +sp_after_oc_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space before the colon in message specs, +# i.e. '-(int) f: (int) x;' vs. '-(int) f : (int) x;'. +sp_before_oc_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space after the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};'. +sp_after_oc_dict_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space before the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};'. +sp_before_oc_dict_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space after the colon in message specs, +# i.e. '[object setValue:1];' vs. '[object setValue: 1];'. +sp_after_send_oc_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space before the colon in message specs, +# i.e. '[object setValue:1];' vs. '[object setValue :1];'. +sp_before_send_oc_colon = ignore # ignore/add/remove/force + +# (OC) Add or remove space after the (type) in message specs, +# i.e. '-(int)f: (int) x;' vs. '-(int)f: (int)x;'. +sp_after_oc_type = ignore # ignore/add/remove/force + +# (OC) Add or remove space after the first (type) in message specs, +# i.e. '-(int) f:(int)x;' vs. '-(int)f:(int)x;'. +sp_after_oc_return_type = ignore # ignore/add/remove/force + +# (OC) Add or remove space between '@selector' and '(', +# i.e. '@selector(msgName)' vs. '@selector (msgName)'. +# Also applies to '@protocol()' constructs. +sp_after_oc_at_sel = ignore # ignore/add/remove/force + +# (OC) Add or remove space between '@selector(x)' and the following word, +# i.e. '@selector(foo) a:' vs. '@selector(foo)a:'. +sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force + +# (OC) Add or remove space inside '@selector' parentheses, +# i.e. '@selector(foo)' vs. '@selector( foo )'. +# Also applies to '@protocol()' constructs. +sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force + +# (OC) Add or remove space before a block pointer caret, +# i.e. '^int (int arg){...}' vs. ' ^int (int arg){...}'. +sp_before_oc_block_caret = ignore # ignore/add/remove/force + +# (OC) Add or remove space after a block pointer caret, +# i.e. '^int (int arg){...}' vs. '^ int (int arg){...}'. +sp_after_oc_block_caret = ignore # ignore/add/remove/force + +# (OC) Add or remove space between the receiver and selector in a message, +# as in '[receiver selector ...]'. +sp_after_oc_msg_receiver = ignore # ignore/add/remove/force + +# (OC) Add or remove space after '@property'. +sp_after_oc_property = ignore # ignore/add/remove/force + +# (OC) Add or remove space between '@synchronized' and the open parenthesis, +# i.e. '@synchronized(foo)' vs. '@synchronized (foo)'. +sp_after_oc_synchronized = ignore # ignore/add/remove/force + +# Add or remove space around the ':' in 'b ? t : f'. +sp_cond_colon = ignore # ignore/add/remove/force + +# Add or remove space before the ':' in 'b ? t : f'. +# +# Overrides sp_cond_colon. +sp_cond_colon_before = ignore # ignore/add/remove/force + +# Add or remove space after the ':' in 'b ? t : f'. +# +# Overrides sp_cond_colon. +sp_cond_colon_after = ignore # ignore/add/remove/force + +# Add or remove space around the '?' in 'b ? t : f'. +sp_cond_question = ignore # ignore/add/remove/force + +# Add or remove space before the '?' in 'b ? t : f'. +# +# Overrides sp_cond_question. +sp_cond_question_before = ignore # ignore/add/remove/force + +# Add or remove space after the '?' in 'b ? t : f'. +# +# Overrides sp_cond_question. +sp_cond_question_after = ignore # ignore/add/remove/force + +# In the abbreviated ternary form '(a ?: b)', add or remove space between '?' +# and ':'. +# +# Overrides all other sp_cond_* options. +sp_cond_ternary_short = ignore # ignore/add/remove/force + +# Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make +# sense here. +sp_case_label = ignore # ignore/add/remove/force + +# (D) Add or remove space around the D '..' operator. +sp_range = ignore # ignore/add/remove/force + +# Add or remove space after ':' in a Java/C++11 range-based 'for', +# as in 'for (Type var : expr)'. +sp_after_for_colon = ignore # ignore/add/remove/force + +# Add or remove space before ':' in a Java/C++11 range-based 'for', +# as in 'for (Type var : expr)'. +sp_before_for_colon = ignore # ignore/add/remove/force + +# (D) Add or remove space between 'extern' and '(' as in 'extern (C)'. +sp_extern_paren = ignore # ignore/add/remove/force + +# Add or remove space after the opening of a C++ comment, +# i.e. '// A' vs. '//A'. +sp_cmt_cpp_start = ignore # ignore/add/remove/force + +# If true, space is added with sp_cmt_cpp_start will be added after doxygen +# sequences like '///', '///<', '//!' and '//!<'. +sp_cmt_cpp_doxygen = false # true/false + +# If true, space is added with sp_cmt_cpp_start will be added after Qt +# translator or meta-data comments like '//:', '//=', and '//~'. +sp_cmt_cpp_qttr = false # true/false + +# Add or remove space between #else or #endif and a trailing comment. +sp_endif_cmt = ignore # ignore/add/remove/force + +# Add or remove space after 'new', 'delete' and 'delete[]'. +sp_after_new = ignore # ignore/add/remove/force + +# Add or remove space between 'new' and '(' in 'new()'. +sp_between_new_paren = ignore # ignore/add/remove/force + +# Add or remove space between ')' and type in 'new(foo) BAR'. +sp_after_newop_paren = ignore # ignore/add/remove/force + +# Add or remove space inside parenthesis of the new operator +# as in 'new(foo) BAR'. +sp_inside_newop_paren = ignore # ignore/add/remove/force + +# Add or remove space after the open parenthesis of the new operator, +# as in 'new(foo) BAR'. +# +# Overrides sp_inside_newop_paren. +sp_inside_newop_paren_open = ignore # ignore/add/remove/force + +# Add or remove space before the close parenthesis of the new operator, +# as in 'new(foo) BAR'. +# +# Overrides sp_inside_newop_paren. +sp_inside_newop_paren_close = ignore # ignore/add/remove/force + +# Add or remove space before a trailing or embedded comment. +sp_before_tr_emb_cmt = ignore # ignore/add/remove/force + +# Number of spaces before a trailing or embedded comment. +sp_num_before_tr_emb_cmt = 0 # unsigned number + +# (Java) Add or remove space between an annotation and the open parenthesis. +sp_annotation_paren = ignore # ignore/add/remove/force + +# If true, vbrace tokens are dropped to the previous token and skipped. +sp_skip_vbrace_tokens = false # true/false + +# Add or remove space after 'noexcept'. +sp_after_noexcept = ignore # ignore/add/remove/force + +# Add or remove space after '_'. +sp_vala_after_translation = ignore # ignore/add/remove/force + +# If true, a <TAB> is inserted after #define. +force_tab_after_define = false # true/false + +# +# Indenting options +# + +# The number of columns to indent per level. Usually 2, 3, 4, or 8. +# +# Default: 8 +indent_columns = 8 # unsigned number + +# 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. +indent_continue = 0 # number + +# The continuation indent, only for class header line(s). If non-zero, this +# overrides the indent of 'class' continuation indents. +indent_continue_class_head = 0 # unsigned number + +# Whether to indent empty lines (i.e. lines which contain only spaces before +# the newline character). +indent_single_newlines = false # true/false + +# The continuation indent for func_*_param if they are true. If non-zero, this +# overrides the indent. +indent_param = 0 # unsigned number + +# 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 +indent_with_tabs = 1 # unsigned number + +# 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. +indent_cmt_with_tabs = false # true/false + +# Whether to indent strings broken by '\' so that they line up. +indent_align_string = false # true/false + +# The number of spaces to indent multi-line XML strings. +# Requires indent_align_string=true. +indent_xml_string = 0 # unsigned number + +# Spaces to indent '{' from level. +indent_brace = 0 # unsigned number + +# Whether braces are indented to the body level. +indent_braces = false # true/false + +# Whether to disable indenting function braces if indent_braces=true. +indent_braces_no_func = false # true/false + +# Whether to disable indenting class braces if indent_braces=true. +indent_braces_no_class = false # true/false + +# Whether to disable indenting struct braces if indent_braces=true. +indent_braces_no_struct = false # true/false + +# Whether to indent based on the size of the brace parent, +# i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc. +indent_brace_parent = false # true/false + +# Whether to indent based on the open parenthesis instead of the open brace +# in '({\n'. +indent_paren_open_brace = false # true/false + +# (C#) Whether to indent the brace of a C# delegate by another level. +indent_cs_delegate_brace = false # true/false + +# (C#) Whether to indent a C# delegate (to handle delegates with no brace) by +# another level. +indent_cs_delegate_body = false # true/false + +# Whether to indent the body of a 'namespace'. +indent_namespace = false # true/false + +# Whether to indent only the first namespace, and not any nested namespaces. +# Requires indent_namespace=true. +indent_namespace_single_indent = false # true/false + +# The number of spaces to indent a namespace block. +# If set to zero, use the value indent_columns +indent_namespace_level = 0 # unsigned number + +# If the body of the namespace is longer than this number, it won't be +# indented. Requires indent_namespace=true. 0 means no limit. +indent_namespace_limit = 0 # unsigned number + +# Whether the 'extern "C"' body is indented. +indent_extern = false # true/false + +# Whether the 'class' body is indented. +indent_class = false # true/false + +# Whether to indent the stuff after a leading base class colon. +indent_class_colon = false # true/false + +# Whether to indent based on a class colon instead of the stuff after the +# colon. Requires indent_class_colon=true. +indent_class_on_colon = false # true/false + +# Whether to indent the stuff after a leading class initializer colon. +indent_constr_colon = false # true/false + +# Virtual indent from the ':' for member initializers. +# +# Default: 2 +indent_ctor_init_leading = 2 # unsigned number + +# Additional indent for constructor initializer list. +# Negative values decrease indent down to the first column. +indent_ctor_init = 0 # number + +# 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. +indent_else_if = false # true/false + +# Amount to indent variable declarations after a open brace. +# +# <0: Relative +# >=0: Absolute +indent_var_def_blk = 0 # number + +# Whether to indent continued variable declarations instead of aligning. +indent_var_def_cont = false # true/false + +# Whether to indent continued shift expressions ('<<' and '>>') instead of +# aligning. Set align_left_shift=false when enabling this. +indent_shift = false # true/false + +# Whether to force indentation of function definitions to start in column 1. +indent_func_def_force_col1 = false # true/false + +# Whether to indent continued function call parameters one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_call_param = false # true/false + +# Whether to indent continued function definition parameters one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_def_param = false # true/false + +# 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 +indent_func_def_param_paren_pos_threshold = 0 # unsigned number + +# Whether to indent continued function call prototype one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_proto_param = false # true/false + +# Whether to indent continued function call declaration one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_class_param = false # true/false + +# Whether to indent continued class variable constructors one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_ctor_var_param = false # true/false + +# Whether to indent continued template parameter list one indent level, +# rather than aligning parameters under the open parenthesis. +indent_template_param = false # true/false + +# Double the indent for indent_func_xxx_param options. +# Use both values of the options indent_columns and indent_param. +indent_func_param_double = false # true/false + +# Indentation column for standalone 'const' qualifier on a function +# prototype. +indent_func_const = 0 # unsigned number + +# Indentation column for standalone 'throw' qualifier on a function +# prototype. +indent_func_throw = 0 # unsigned number + +# 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 +indent_macro_brace = true # true/false + +# The number of spaces to indent a continued '->' or '.'. +# Usually set to 0, 1, or indent_columns. +indent_member = 0 # unsigned number + +# 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. +indent_member_single = false # true/false + +# Spaces to indent single line ('//') comments on lines before code. +indent_sing_line_comments = 0 # unsigned number + +# 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. +indent_sparen_extra = 0 # number + +# Whether to indent trailing single line ('//') comments relative to the code +# instead of trying to keep the same absolute column. +indent_relative_single_line_comments = false # true/false + +# Spaces to indent 'case' from 'switch'. Usually 0 or indent_columns. +indent_switch_case = 0 # unsigned number + +# indent 'break' with 'case' from 'switch'. +indent_switch_break_with_case = false # true/false + +# Whether to indent preprocessor statements inside of switch statements. +# +# Default: true +indent_switch_pp = true # true/false + +# Spaces to shift the 'case' line, without affecting any other lines. +# Usually 0. +indent_case_shift = 0 # unsigned number + +# 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. +indent_case_brace = 0 # number + +# Whether to indent comments found in first column. +indent_col1_comment = false # true/false + +# Whether to indent multi string literal in first column. +indent_col1_multi_string_literal = false # true/false + +# How to indent goto labels. +# +# >0: Absolute column where 1 is the leftmost column +# <=0: Subtract from brace indent +# +# Default: 1 +indent_label = 1 # number + +# 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 +indent_access_spec = 1 # number + +# Whether to indent the code after an access specifier by one level. +# If true, this option forces 'indent_access_spec=0'. +indent_access_spec_body = false # true/false + +# 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). +indent_paren_nl = false # true/false + +# 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 +indent_paren_close = 0 # unsigned number + +# Whether to indent the open parenthesis of a function definition, +# if the parenthesis is on its own line. +indent_paren_after_func_def = false # true/false + +# Whether to indent the open parenthesis of a function declaration, +# if the parenthesis is on its own line. +indent_paren_after_func_decl = false # true/false + +# Whether to indent the open parenthesis of a function call, +# if the parenthesis is on its own line. +indent_paren_after_func_call = false # true/false + +# Whether to indent a comma when inside a parenthesis. +# If true, aligns under the open parenthesis. +indent_comma_paren = false # true/false + +# Whether to indent a Boolean operator when inside a parenthesis. +# If true, aligns under the open parenthesis. +indent_bool_paren = false # true/false + +# Whether to indent a semicolon when inside a for parenthesis. +# If true, aligns under the open for parenthesis. +indent_semicolon_for_paren = false # true/false + +# Whether to align the first expression to following ones +# if indent_bool_paren=true. +indent_first_bool_expr = false # true/false + +# Whether to align the first expression to following ones +# if indent_semicolon_for_paren=true. +indent_first_for_expr = false # true/false + +# 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). +indent_square_nl = false # true/false + +# (ESQL/C) Whether to preserve the relative indent of 'EXEC SQL' bodies. +indent_preserve_sql = false # true/false + +# 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 +indent_align_assign = true # true/false + +# If true, the indentation of the chunks after a '=' sequence will be set at +# LHS token indentation column before '='. +indent_off_after_assign = false # true/false + +# 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 +indent_align_paren = true # true/false + +# (OC) Whether to indent Objective-C code inside message selectors. +indent_oc_inside_msg_sel = false # true/false + +# (OC) Whether to indent Objective-C blocks at brace level instead of usual +# rules. +indent_oc_block = false # true/false + +# (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 +indent_oc_block_msg = 0 # unsigned number + +# (OC) Minimum indent for subsequent parameters +indent_oc_msg_colon = 0 # unsigned number + +# (OC) Whether to prioritize aligning with initial colon (and stripping spaces +# from lines, if necessary). +# +# Default: true +indent_oc_msg_prioritize_first_colon = true # true/false + +# (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. +indent_oc_block_msg_xcode_style = false # true/false + +# (OC) Whether to indent blocks from where the brace is, relative to a +# message keyword. Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_keyword = false # true/false + +# (OC) Whether to indent blocks from where the brace is, relative to a message +# colon. Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_colon = false # true/false + +# (OC) Whether to indent blocks from where the block caret is. +# Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_caret = false # true/false + +# (OC) Whether to indent blocks from where the brace caret is. +# Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_brace = false # true/false + +# When indenting after virtual brace open and newline add further spaces to +# reach this minimum indent. +indent_min_vbrace_open = 0 # unsigned number + +# Whether to add further spaces after regular indent to reach next tabstop +# when indenting after virtual brace open and newline. +indent_vbrace_open_on_tabstop = false # true/false + +# 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 +indent_token_after_brace = true # true/false + +# Whether to indent the body of a C++11 lambda. +indent_cpp_lambda_body = false # true/false + +# How to indent compound literals that are being returned. +# true: add both the indent from return & the compound literal open brace (ie: +# 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 +indent_compound_literal_return = true # true/false + +# (C#) Whether to indent a 'using' block if no braces are used. +# +# Default: true +indent_using_block = true # true/false + +# How to indent the continuation of ternary operator. +# +# 0: Off (default) +# 1: When the `if_false` is a continuation, indent it under `if_false` +# 2: When the `:` is a continuation, indent it under `?` +indent_ternary_operator = 0 # unsigned number + +# Whether to indent the statments inside ternary operator. +indent_inside_ternary_operator = false # true/false + +# If true, the indentation of the chunks after a `return` sequence will be set at return indentation column. +indent_off_after_return = false # true/false + +# If true, the indentation of the chunks after a `return new` sequence will be set at return indentation column. +indent_off_after_return_new = false # true/false + +# If true, the tokens after return are indented with regular single indentation. By default (false) the indentation is after the return token. +indent_single_after_return = false # true/false + +# Whether to ignore indent and alignment for 'asm' blocks (i.e. assume they +# have their own indentation). +indent_ignore_asm_block = false # true/false + +# Don't indent the close parenthesis of a function definition, +# if the parenthesis is on its own line. +donot_indent_func_def_close_paren = false # true/false + +# +# Newline adding and removing options +# + +# Whether to collapse empty blocks between '{' and '}'. +# If true, overrides nl_inside_empty_func +nl_collapse_empty_body = false # true/false + +# Don't split one-line braced assignments, as in 'foo_t f = { 1, 2 };'. +nl_assign_leave_one_liners = false # true/false + +# Don't split one-line braced statements inside a 'class xx { }' body. +nl_class_leave_one_liners = false # true/false + +# Don't split one-line enums, as in 'enum foo { BAR = 15 };' +nl_enum_leave_one_liners = false # true/false + +# Don't split one-line get or set functions. +nl_getset_leave_one_liners = false # true/false + +# (C#) Don't split one-line property get or set functions. +nl_cs_property_leave_one_liners = false # true/false + +# Don't split one-line function definitions, as in 'int foo() { return 0; }'. +# might modify nl_func_type_name +nl_func_leave_one_liners = false # true/false + +# Don't split one-line C++11 lambdas, as in '[]() { return 0; }'. +nl_cpp_lambda_leave_one_liners = false # true/false + +# Don't split one-line if/else statements, as in 'if(...) b++;'. +nl_if_leave_one_liners = false # true/false + +# Don't split one-line while statements, as in 'while(...) b++;'. +nl_while_leave_one_liners = false # true/false + +# Don't split one-line for statements, as in 'for(...) b++;'. +nl_for_leave_one_liners = false # true/false + +# (OC) Don't split one-line Objective-C messages. +nl_oc_msg_leave_one_liner = false # true/false + +# (OC) Add or remove newline between method declaration and '{'. +nl_oc_mdef_brace = ignore # ignore/add/remove/force + +# (OC) Add or remove newline between Objective-C block signature and '{'. +nl_oc_block_brace = ignore # ignore/add/remove/force + +# (OC) Add or remove blank line before '@interface' statement. +nl_oc_before_interface = ignore # ignore/add/remove/force + +# (OC) Add or remove blank line before '@implementation' statement. +nl_oc_before_implementation = ignore # ignore/add/remove/force + +# (OC) Add or remove blank line before '@end' statement. +nl_oc_before_end = ignore # ignore/add/remove/force + +# (OC) Add or remove newline between '@interface' and '{'. +nl_oc_interface_brace = ignore # ignore/add/remove/force + +# (OC) Add or remove newline between '@implementation' and '{'. +nl_oc_implementation_brace = ignore # ignore/add/remove/force + +# Add or remove newlines at the start of the file. +nl_start_of_file = ignore # ignore/add/remove/force + +# The minimum number of newlines at the start of the file (only used if +# nl_start_of_file is 'add' or 'force'). +nl_start_of_file_min = 0 # unsigned number + +# Add or remove newline at the end of the file. +nl_end_of_file = ignore # ignore/add/remove/force + +# The minimum number of newlines at the end of the file (only used if +# nl_end_of_file is 'add' or 'force'). +nl_end_of_file_min = 0 # unsigned number + +# Add or remove newline between '=' and '{'. +nl_assign_brace = ignore # ignore/add/remove/force + +# (D) Add or remove newline between '=' and '['. +nl_assign_square = ignore # ignore/add/remove/force + +# Add or remove newline between '[]' and '{'. +nl_tsquare_brace = ignore # ignore/add/remove/force + +# (D) Add or remove newline after '= ['. Will also affect the newline before +# the ']'. +nl_after_square_assign = ignore # ignore/add/remove/force + +# Add or remove newline between a function call's ')' and '{', as in +# 'list_for_each(item, &list) { }'. +nl_fcall_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'enum' and '{'. +nl_enum_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'enum' and 'class'. +nl_enum_class = ignore # ignore/add/remove/force + +# Add or remove newline between 'enum class' and the identifier. +nl_enum_class_identifier = ignore # ignore/add/remove/force + +# Add or remove newline between 'enum class' type and ':'. +nl_enum_identifier_colon = ignore # ignore/add/remove/force + +# Add or remove newline between 'enum class identifier :' and type. +nl_enum_colon_type = ignore # ignore/add/remove/force + +# Add or remove newline between 'struct and '{'. +nl_struct_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'union' and '{'. +nl_union_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'if' and '{'. +nl_if_brace = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'else'. +nl_brace_else = ignore # ignore/add/remove/force + +# Add or remove newline between 'else if' and '{'. If set to ignore, +# nl_if_brace is used instead. +nl_elseif_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'else' and '{'. +nl_else_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'else' and 'if'. +nl_else_if = ignore # ignore/add/remove/force + +# Add or remove newline before '{' opening brace +nl_before_opening_brace_func_class_def = ignore # ignore/add/remove/force + +# Add or remove newline before 'if'/'else if' closing parenthesis. +nl_before_if_closing_paren = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'finally'. +nl_brace_finally = ignore # ignore/add/remove/force + +# Add or remove newline between 'finally' and '{'. +nl_finally_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'try' and '{'. +nl_try_brace = ignore # ignore/add/remove/force + +# Add or remove newline between get/set and '{'. +nl_getset_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'for' and '{'. +nl_for_brace = ignore # ignore/add/remove/force + +# Add or remove newline before the '{' of a 'catch' statement, as in +# 'catch (decl) <here> {'. +nl_catch_brace = ignore # ignore/add/remove/force + +# (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. +nl_oc_catch_brace = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'catch'. +nl_brace_catch = ignore # ignore/add/remove/force + +# (OC) Add or remove newline between '}' and '@catch'. If set to ignore, +# nl_brace_catch is used. +nl_oc_brace_catch = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and ']'. +nl_brace_square = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and ')' in a function invocation. +nl_brace_fparen = ignore # ignore/add/remove/force + +# Add or remove newline between 'while' and '{'. +nl_while_brace = ignore # ignore/add/remove/force + +# (D) Add or remove newline between 'scope (x)' and '{'. +nl_scope_brace = ignore # ignore/add/remove/force + +# (D) Add or remove newline between 'unittest' and '{'. +nl_unittest_brace = ignore # ignore/add/remove/force + +# (D) Add or remove newline between 'version (x)' and '{'. +nl_version_brace = ignore # ignore/add/remove/force + +# (C#) Add or remove newline between 'using' and '{'. +nl_using_brace = ignore # ignore/add/remove/force + +# Add or remove newline between two open or close braces. Due to general +# newline/brace handling, REMOVE may not work. +nl_brace_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'do' and '{'. +nl_do_brace = ignore # ignore/add/remove/force + +# Add or remove newline between '}' and 'while' of 'do' statement. +nl_brace_while = ignore # ignore/add/remove/force + +# Add or remove newline between 'switch' and '{'. +nl_switch_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'synchronized' and '{'. +nl_synchronized_brace = ignore # ignore/add/remove/force + +# 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. +nl_multi_line_cond = false # true/false + +# Add a newline after '(' if an if/for/while/switch condition spans multiple +# lines +nl_multi_line_sparen_open = ignore # ignore/add/remove/force + +# Add a newline before ')' if an if/for/while/switch condition spans multiple +# lines. Overrides nl_before_if_closing_paren if both are specified. +nl_multi_line_sparen_close = ignore # ignore/add/remove/force + +# Force a newline in a define after the macro name for multi-line defines. +nl_multi_line_define = false # true/false + +# Whether to add a newline before 'case', and a blank line before a 'case' +# statement that follows a ';' or '}'. +nl_before_case = false # true/false + +# Whether to add a newline after a 'case' statement. +nl_after_case = false # true/false + +# Add or remove newline between a case ':' and '{'. +# +# Overrides nl_after_case. +nl_case_colon_brace = ignore # ignore/add/remove/force + +# Add or remove newline between ')' and 'throw'. +nl_before_throw = ignore # ignore/add/remove/force + +# Add or remove newline between 'namespace' and '{'. +nl_namespace_brace = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template class. +nl_template_class = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template class declaration. +# +# Overrides nl_template_class. +nl_template_class_decl = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<>' of a specialized class declaration. +# +# Overrides nl_template_class_decl. +nl_template_class_decl_special = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template class definition. +# +# Overrides nl_template_class. +nl_template_class_def = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<>' of a specialized class definition. +# +# Overrides nl_template_class_def. +nl_template_class_def_special = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template function. +nl_template_func = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template function +# declaration. +# +# Overrides nl_template_func. +nl_template_func_decl = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<>' of a specialized function +# declaration. +# +# Overrides nl_template_func_decl. +nl_template_func_decl_special = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template function +# definition. +# +# Overrides nl_template_func. +nl_template_func_def = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<>' of a specialized function +# definition. +# +# Overrides nl_template_func_def. +nl_template_func_def_special = ignore # ignore/add/remove/force + +# Add or remove newline after 'template<...>' of a template variable. +nl_template_var = ignore # ignore/add/remove/force + +# Add or remove newline between 'template<...>' and 'using' of a templated +# type alias. +nl_template_using = ignore # ignore/add/remove/force + +# Add or remove newline between 'class' and '{'. +nl_class_brace = ignore # ignore/add/remove/force + +# Add or remove newline before or after (depending on pos_class_comma, +# may not be IGNORE) each',' in the base class list. +nl_class_init_args = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in the constructor member +# initialization. Related to nl_constr_colon, pos_constr_colon and +# pos_constr_comma. +nl_constr_init_args = ignore # ignore/add/remove/force + +# Add or remove newline before first element, after comma, and after last +# element, in 'enum'. +nl_enum_own_lines = ignore # ignore/add/remove/force + +# Add or remove newline between return type and function name in a function +# definition. +# might be modified by nl_func_leave_one_liners +nl_func_type_name = ignore # ignore/add/remove/force + +# 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. +nl_func_type_name_class = ignore # ignore/add/remove/force + +# 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). +nl_func_class_scope = ignore # ignore/add/remove/force + +# Add or remove newline between function scope and name, as in +# 'void A :: <here> f() { }'. +nl_func_scope_name = ignore # ignore/add/remove/force + +# Add or remove newline between return type and function name in a prototype. +nl_func_proto_type_name = ignore # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the +# declaration. +nl_func_paren = ignore # ignore/add/remove/force + +# Overrides nl_func_paren for functions with no parameters. +nl_func_paren_empty = ignore # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the +# definition. +nl_func_def_paren = ignore # ignore/add/remove/force + +# Overrides nl_func_def_paren for functions with no parameters. +nl_func_def_paren_empty = ignore # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the +# call. +nl_func_call_paren = ignore # ignore/add/remove/force + +# Overrides nl_func_call_paren for functions with no parameters. +nl_func_call_paren_empty = ignore # ignore/add/remove/force + +# Add or remove newline after '(' in a function declaration. +nl_func_decl_start = ignore # ignore/add/remove/force + +# Add or remove newline after '(' in a function definition. +nl_func_def_start = ignore # ignore/add/remove/force + +# Overrides nl_func_decl_start when there is only one parameter. +nl_func_decl_start_single = ignore # ignore/add/remove/force + +# Overrides nl_func_def_start when there is only one parameter. +nl_func_def_start_single = ignore # ignore/add/remove/force + +# 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. +nl_func_decl_start_multi_line = false # true/false + +# 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. +nl_func_def_start_multi_line = false # true/false + +# Add or remove newline after each ',' in a function declaration. +nl_func_decl_args = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in a function definition. +nl_func_def_args = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in a function call. +nl_func_call_args = ignore # ignore/add/remove/force + +# 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. +nl_func_decl_args_multi_line = false # true/false + +# 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. +nl_func_def_args_multi_line = false # true/false + +# Add or remove newline before the ')' in a function declaration. +nl_func_decl_end = ignore # ignore/add/remove/force + +# Add or remove newline before the ')' in a function definition. +nl_func_def_end = ignore # ignore/add/remove/force + +# Overrides nl_func_decl_end when there is only one parameter. +nl_func_decl_end_single = ignore # ignore/add/remove/force + +# Overrides nl_func_def_end when there is only one parameter. +nl_func_def_end_single = ignore # ignore/add/remove/force + +# 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. +nl_func_decl_end_multi_line = false # true/false + +# 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. +nl_func_def_end_multi_line = false # true/false + +# Add or remove newline between '()' in a function declaration. +nl_func_decl_empty = ignore # ignore/add/remove/force + +# Add or remove newline between '()' in a function definition. +nl_func_def_empty = ignore # ignore/add/remove/force + +# Add or remove newline between '()' in a function call. +nl_func_call_empty = ignore # ignore/add/remove/force + +# Whether to add a newline after '(' in a function call, +# has preference over nl_func_call_start_multi_line. +nl_func_call_start = ignore # ignore/add/remove/force + +# Whether to add a newline before ')' in a function call. +nl_func_call_end = ignore # ignore/add/remove/force + +# Whether to add a newline after '(' in a function call if '(' and ')' are in +# different lines. +nl_func_call_start_multi_line = false # true/false + +# Whether to add a newline after each ',' in a function call if '(' and ')' +# are in different lines. +nl_func_call_args_multi_line = false # true/false + +# Whether to add a newline before ')' in a function call if '(' and ')' are in +# different lines. +nl_func_call_end_multi_line = false # true/false + +# Whether to respect nl_func_call_XXX option incase of closure args. +nl_func_call_args_multi_line_ignore_closures = false # true/false + +# Whether to add a newline after '<' of a template parameter list. +nl_template_start = false # true/false + +# Whether to add a newline after each ',' in a template parameter list. +nl_template_args = false # true/false + +# Whether to add a newline before '>' of a template parameter list. +nl_template_end = false # true/false + +# (OC) Whether to put each Objective-C message parameter on a separate line. +# See nl_oc_msg_leave_one_liner. +nl_oc_msg_args = false # true/false + +# Add or remove newline between function signature and '{'. +nl_fdef_brace = ignore # ignore/add/remove/force + +# Add or remove newline between function signature and '{', +# if signature ends with ')'. Overrides nl_fdef_brace. +nl_fdef_brace_cond = ignore # ignore/add/remove/force + +# Add or remove newline between C++11 lambda signature and '{'. +nl_cpp_ldef_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'return' and the return expression. +nl_return_expr = ignore # ignore/add/remove/force + +# Whether to add a newline after semicolons, except in 'for' statements. +nl_after_semicolon = false # true/false + +# (Java) Add or remove newline between the ')' and '{{' of the double brace +# initializer. +nl_paren_dbrace_open = ignore # ignore/add/remove/force + +# Whether to add a newline after the type in an unnamed temporary +# direct-list-initialization. +nl_type_brace_init_lst = ignore # ignore/add/remove/force + +# Whether to add a newline after the open brace in an unnamed temporary +# direct-list-initialization. +nl_type_brace_init_lst_open = ignore # ignore/add/remove/force + +# Whether to add a newline before the close brace in an unnamed temporary +# direct-list-initialization. +nl_type_brace_init_lst_close = ignore # ignore/add/remove/force + +# Whether to add a newline after '{'. This also adds a newline before the +# matching '}'. +nl_after_brace_open = false # true/false + +# Whether to add a newline between the open brace and a trailing single-line +# comment. Requires nl_after_brace_open=true. +nl_after_brace_open_cmt = false # true/false + +# 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. +nl_after_vbrace_open = false # true/false + +# 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. +nl_after_vbrace_open_empty = false # true/false + +# Whether to add a newline after '}'. Does not apply if followed by a +# necessary ';'. +nl_after_brace_close = false # true/false + +# Whether to add a newline after a virtual brace close, +# as in 'if (foo) a++; <here> return;'. +nl_after_vbrace_close = false # true/false + +# 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. +nl_brace_struct_var = ignore # ignore/add/remove/force + +# Whether to alter newlines in '#define' macros. +nl_define_macro = false # true/false + +# Whether to alter newlines between consecutive parenthesis closes. The number +# of closing parentheses in a line will depend on respective open parenthesis +# lines. +nl_squeeze_paren_close = false # true/false + +# Whether to remove blanks after '#ifxx' and '#elxx', or before '#elxx' and +# '#endif'. Does not affect top-level #ifdefs. +nl_squeeze_ifdef = false # true/false + +# Makes the nl_squeeze_ifdef option affect the top-level #ifdefs as well. +nl_squeeze_ifdef_top_level = false # true/false + +# Add or remove blank line before 'if'. +nl_before_if = ignore # ignore/add/remove/force + +# Add or remove blank line after 'if' statement. Add/Force work only if the +# next token is not a closing brace. +nl_after_if = ignore # ignore/add/remove/force + +# Add or remove blank line before 'for'. +nl_before_for = ignore # ignore/add/remove/force + +# Add or remove blank line after 'for' statement. +nl_after_for = ignore # ignore/add/remove/force + +# Add or remove blank line before 'while'. +nl_before_while = ignore # ignore/add/remove/force + +# Add or remove blank line after 'while' statement. +nl_after_while = ignore # ignore/add/remove/force + +# Add or remove blank line before 'switch'. +nl_before_switch = ignore # ignore/add/remove/force + +# Add or remove blank line after 'switch' statement. +nl_after_switch = ignore # ignore/add/remove/force + +# Add or remove blank line before 'synchronized'. +nl_before_synchronized = ignore # ignore/add/remove/force + +# Add or remove blank line after 'synchronized' statement. +nl_after_synchronized = ignore # ignore/add/remove/force + +# Add or remove blank line before 'do'. +nl_before_do = ignore # ignore/add/remove/force + +# Add or remove blank line after 'do/while' statement. +nl_after_do = ignore # ignore/add/remove/force + +# Whether to put a blank line before 'return' statements, unless after an open +# brace. +nl_before_return = false # true/false + +# Whether to put a blank line after 'return' statements, unless followed by a +# close brace. +nl_after_return = false # true/false + +# Whether to put a blank line before a member '.' or '->' operators. +nl_before_member = ignore # ignore/add/remove/force + +# (Java) Whether to put a blank line after a member '.' or '->' operators. +nl_after_member = ignore # ignore/add/remove/force + +# Whether to double-space commented-entries in 'struct'/'union'/'enum'. +nl_ds_struct_enum_cmt = false # true/false + +# Whether to force a newline before '}' of a 'struct'/'union'/'enum'. +# (Lower priority than eat_blanks_before_close_brace.) +nl_ds_struct_enum_close_brace = false # true/false + +# Add or remove newline before or after (depending on pos_class_colon) a class +# colon, as in 'class Foo <here> : <or here> public Bar'. +nl_class_colon = ignore # ignore/add/remove/force + +# 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. +nl_constr_colon = ignore # ignore/add/remove/force + +# 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. +nl_namespace_two_to_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced if statements, turning them +# into one-liners, as in 'if(b)\n i++;' => 'if(b) i++;'. +nl_create_if_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced for statements, turning them +# into one-liners, as in 'for (...)\n stmt;' => 'for (...) stmt;'. +nl_create_for_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced while statements, turning +# them into one-liners, as in 'while (expr)\n stmt;' => 'while (expr) stmt;'. +nl_create_while_one_liner = false # true/false + +# 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. +nl_create_func_def_one_liner = false # true/false + +# 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. +nl_create_list_one_liner = false # true/false + +# Whether to split one-line simple unbraced if statements into two lines by +# adding a newline, as in 'if(b) <here> i++;'. +nl_split_if_one_liner = false # true/false + +# Whether to split one-line simple unbraced for statements into two lines by +# adding a newline, as in 'for (...) <here> stmt;'. +nl_split_for_one_liner = false # true/false + +# Whether to split one-line simple unbraced while statements into two lines by +# adding a newline, as in 'while (expr) <here> stmt;'. +nl_split_while_one_liner = false # true/false + +# Don't add a newline before a cpp-comment in a parameter list of a function +# call. +donot_add_nl_before_cpp_comment = false # true/false + +# +# Blank line options +# + +# The maximum number of consecutive newlines (3 = 2 blank lines). +nl_max = 0 # unsigned number + +# The maximum number of consecutive newlines in a function. +nl_max_blank_in_func = 0 # unsigned number + +# The number of newlines inside an empty function body. +# This option is overridden by nl_collapse_empty_body=true +nl_inside_empty_func = 0 # unsigned number + +# The number of newlines before a function prototype. +nl_before_func_body_proto = 0 # unsigned number + +# The number of newlines before a multi-line function definition. +nl_before_func_body_def = 0 # unsigned number + +# The number of newlines before a class constructor/destructor prototype. +nl_before_func_class_proto = 0 # unsigned number + +# The number of newlines before a class constructor/destructor definition. +nl_before_func_class_def = 0 # unsigned number + +# The number of newlines after a function prototype. +nl_after_func_proto = 0 # unsigned number + +# The number of newlines after a function prototype, if not followed by +# another function prototype. +nl_after_func_proto_group = 0 # unsigned number + +# The number of newlines after a class constructor/destructor prototype. +nl_after_func_class_proto = 0 # unsigned number + +# The number of newlines after a class constructor/destructor prototype, +# if not followed by another constructor/destructor prototype. +nl_after_func_class_proto_group = 0 # unsigned number + +# 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. +nl_class_leave_one_liner_groups = false # true/false + +# The number of newlines after '}' of a multi-line function body. +nl_after_func_body = 0 # unsigned number + +# 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. +nl_after_func_body_class = 0 # unsigned number + +# 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. +nl_after_func_body_one_liner = 0 # unsigned number + +# The number of blank lines after a block of variable definitions at the top +# of a function body. +# +# 0: No change (default). +nl_func_var_def_blk = 0 # unsigned number + +# 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). +nl_typedef_blk_start = 0 # unsigned number + +# The number of newlines after a block of typedefs. +# +# 0: No change (default). +nl_typedef_blk_end = 0 # unsigned number + +# The maximum number of consecutive newlines within a block of typedefs. +# +# 0: No change (default). +nl_typedef_blk_in = 0 # unsigned number + +# The number of 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. +# +# 0: No change (default). +nl_var_def_blk_start = 0 # unsigned number + +# The number of newlines after a block of variable definitions not at the top +# of a function body. +# +# 0: No change (default). +nl_var_def_blk_end = 0 # unsigned number + +# The maximum number of consecutive newlines within a block of variable +# definitions. +# +# 0: No change (default). +nl_var_def_blk_in = 0 # unsigned number + +# The minimum number of newlines before a multi-line comment. +# Doesn't apply if after a brace open or another multi-line comment. +nl_before_block_comment = 0 # unsigned number + +# 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. +nl_before_c_comment = 0 # unsigned number + +# The minimum number of newlines before a CPP comment. +# Doesn't apply if after a brace open or other CPP comments. +nl_before_cpp_comment = 0 # unsigned number + +# Whether to force a newline after a multi-line comment. +nl_after_multiline_comment = false # true/false + +# Whether to force a newline after a label's colon. +nl_after_label_colon = false # true/false + +# The number of newlines after '}' or ';' of a struct/enum/union definition. +nl_after_struct = 0 # unsigned number + +# The number of newlines before a class definition. +nl_before_class = 0 # unsigned number + +# The number of newlines after '}' or ';' of a class definition. +nl_after_class = 0 # unsigned number + +# The number of newlines before a namespace. +nl_before_namespace = 0 # unsigned number + +# 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. +nl_inside_namespace = 0 # unsigned number + +# The number of newlines after '}' of a namespace. +nl_after_namespace = 0 # unsigned number + +# 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). +nl_before_access_spec = 0 # unsigned number + +# 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. +nl_after_access_spec = 0 # unsigned number + +# The number of newlines between a function definition and the function +# comment, as in '// comment\n <here> void foo() {...}'. +# +# 0: No change (default). +nl_comment_func_def = 0 # unsigned number + +# The number of newlines after a try-catch-finally block that isn't followed +# by a brace close. +# +# 0: No change (default). +nl_after_try_catch_finally = 0 # unsigned number + +# (C#) The number of newlines before and after a property, indexer or event +# declaration. +# +# 0: No change (default). +nl_around_cs_property = 0 # unsigned number + +# (C#) The number of newlines between the get/set/add/remove handlers. +# +# 0: No change (default). +nl_between_get_set = 0 # unsigned number + +# (C#) Add or remove newline between property and the '{'. +nl_property_brace = ignore # ignore/add/remove/force + +# Whether to remove blank lines after '{'. +eat_blanks_after_open_brace = false # true/false + +# Whether to remove blank lines before '}'. +eat_blanks_before_close_brace = false # true/false + +# 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 +nl_remove_extra_newlines = 0 # unsigned number + +# (Java) Add or remove newline after an annotation statement. Only affects +# annotations that are after a newline. +nl_after_annotation = ignore # ignore/add/remove/force + +# (Java) Add or remove newline between two annotations. +nl_between_annotation = ignore # ignore/add/remove/force + +# The number of newlines before a whole-file #ifdef. +# +# 0: No change (default). +nl_before_whole_file_ifdef = 0 # unsigned number + +# The number of newlines after a whole-file #ifdef. +# +# 0: No change (default). +nl_after_whole_file_ifdef = 0 # unsigned number + +# The number of newlines before a whole-file #endif. +# +# 0: No change (default). +nl_before_whole_file_endif = 0 # unsigned number + +# The number of newlines after a whole-file #endif. +# +# 0: No change (default). +nl_after_whole_file_endif = 0 # unsigned number + +# +# Positioning options +# + +# The position of arithmetic operators in wrapped expressions. +pos_arith = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of assignment in wrapped expressions. Do not affect '=' +# followed by '{'. +pos_assign = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of Boolean operators in wrapped expressions. +pos_bool = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of comparison operators in wrapped expressions. +pos_compare = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of conditional operators, as in the '?' and ':' of +# 'expr ? stmt : stmt', in wrapped expressions. +pos_conditional = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in wrapped expressions. +pos_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in enum entries. +pos_enum_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in the base class list if there is more than one +# line. Affects nl_class_init_args. +pos_class_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in the constructor initialization list. +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_colon. +pos_constr_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of trailing/leading class colon, between class and base class +# list. Affects nl_class_colon. +pos_class_colon = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of colons between constructor and member initialization. +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_comma. +pos_constr_colon = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of shift operators in wrapped expressions. +pos_shift = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# +# Line splitting options +# + +# Try to limit code width to N columns. +code_width = 0 # unsigned number + +# Whether to fully split long 'for' statements at semi-colons. +ls_for_split_full = false # true/false + +# Whether to fully split long function prototypes/calls at commas. +# The option ls_code_width has priority over the option ls_func_split_full. +ls_func_split_full = false # true/false + +# 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. +ls_code_width = false # true/false + +# +# Code alignment options (not left column spaces/tabs) +# + +# Whether to keep non-indenting tabs. +align_keep_tabs = false # true/false + +# Whether to use tabs for aligning. +align_with_tabs = false # true/false + +# Whether to bump out to the next tab when aligning. +align_on_tabstop = false # true/false + +# Whether to right-align numbers. +align_number_right = false # true/false + +# Whether to keep whitespace not required for alignment. +align_keep_extra_space = false # true/false + +# Whether to align variable definitions in prototypes and functions. +align_func_params = false # true/false + +# The span for aligning parameter definitions in function on parameter name. +# +# 0: Don't align (default). +align_func_params_span = 0 # unsigned number + +# The threshold for aligning function parameter definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_func_params_thresh = 0 # number + +# The gap for aligning function parameter definitions. +align_func_params_gap = 0 # unsigned number + +# The span for aligning constructor value. +# +# 0: Don't align (default). +align_constr_value_span = 0 # unsigned number + +# The threshold for aligning constructor value. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_constr_value_thresh = 0 # number + +# The gap for aligning constructor value. +align_constr_value_gap = 0 # unsigned number + +# Whether to align parameters in single-line functions that have the same +# name. The function names must already be aligned with each other. +align_same_func_call_params = false # true/false + +# The span for aligning function-call parameters for single line functions. +# +# 0: Don't align (default). +align_same_func_call_params_span = 0 # unsigned number + +# The threshold for aligning function-call parameters for single line +# functions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_same_func_call_params_thresh = 0 # number + +# The span for aligning variable definitions. +# +# 0: Don't align (default). +align_var_def_span = 0 # unsigned number + +# 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. +align_var_def_star_style = 0 # unsigned number + +# 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. +align_var_def_amp_style = 0 # unsigned number + +# The threshold for aligning variable definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_def_thresh = 0 # number + +# The gap for aligning variable definitions. +align_var_def_gap = 0 # unsigned number + +# Whether to align the colon in struct bit fields. +align_var_def_colon = false # true/false + +# The gap for aligning the colon in struct bit fields. +align_var_def_colon_gap = 0 # unsigned number + +# Whether to align any attribute after the variable name. +align_var_def_attribute = false # true/false + +# Whether to align inline struct/enum/union variable definitions. +align_var_def_inline = false # true/false + +# The span for aligning on '=' in assignments. +# +# 0: Don't align (default). +align_assign_span = 0 # unsigned number + +# The span for aligning on '=' in function prototype modifier. +# +# 0: Don't align (default). +align_assign_func_proto_span = 0 # unsigned number + +# The threshold for aligning on '=' in assignments. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_assign_thresh = 0 # number + +# 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 +align_assign_decl_func = 0 # unsigned number + +# The span for aligning on '=' in enums. +# +# 0: Don't align (default). +align_enum_equ_span = 0 # unsigned number + +# The threshold for aligning on '=' in enums. +# Use a negative number for absolute thresholds. +# +# 0: no limit (default). +align_enum_equ_thresh = 0 # number + +# The span for aligning class member definitions. +# +# 0: Don't align (default). +align_var_class_span = 0 # unsigned number + +# The threshold for aligning class member definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_class_thresh = 0 # number + +# The gap for aligning class member definitions. +align_var_class_gap = 0 # unsigned number + +# The span for aligning struct/union member definitions. +# +# 0: Don't align (default). +align_var_struct_span = 0 # unsigned number + +# The threshold for aligning struct/union member definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_struct_thresh = 0 # number + +# The gap for aligning struct/union member definitions. +align_var_struct_gap = 0 # unsigned number + +# The span for aligning struct initializer values. +# +# 0: Don't align (default). +align_struct_init_span = 0 # unsigned number + +# The span for aligning single-line typedefs. +# +# 0: Don't align (default). +align_typedef_span = 0 # unsigned number + +# The minimum space between the type and the synonym of a typedef. +align_typedef_gap = 0 # unsigned number + +# 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 +align_typedef_func = 0 # unsigned number + +# 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. +align_typedef_star_style = 0 # unsigned number + +# 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. +align_typedef_amp_style = 0 # unsigned number + +# The span for aligning comments that end lines. +# +# 0: Don't align (default). +align_right_cmt_span = 0 # unsigned number + +# 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. +align_right_cmt_gap = 0 # unsigned number + +# If aligning comments, whether to mix with comments after '}' and #endif with +# less than three spaces before the comment. +align_right_cmt_mix = false # true/false + +# Whether to only align trailing comments that are at the same brace level. +align_right_cmt_same_level = false # true/false + +# 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). +align_right_cmt_at_col = 0 # unsigned number + +# The span for aligning function prototypes. +# +# 0: Don't align (default). +align_func_proto_span = 0 # unsigned number + +# The threshold for aligning function prototypes. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_func_proto_thresh = 0 # number + +# Minimum gap between the return type and the function name. +align_func_proto_gap = 0 # unsigned number + +# Whether to align function prototypes on the 'operator' keyword instead of +# what follows. +align_on_operator = false # true/false + +# Whether to mix aligning prototype and variable declarations. If true, +# align_var_def_XXX options are used instead of align_func_proto_XXX options. +align_mix_var_proto = false # true/false + +# Whether to align single-line functions with function prototypes. +# Uses align_func_proto_span. +align_single_line_func = false # true/false + +# Whether to align the open brace of single-line functions. +# Requires align_single_line_func=true. Uses align_func_proto_span. +align_single_line_brace = false # true/false + +# Gap for align_single_line_brace. +align_single_line_brace_gap = 0 # unsigned number + +# (OC) The span for aligning Objective-C message specifications. +# +# 0: Don't align (default). +align_oc_msg_spec_span = 0 # unsigned number + +# Whether to align macros wrapped with a backslash and a newline. This will +# not work right if the macro contains a multi-line comment. +align_nl_cont = false # true/false + +# Whether to align macro functions and variables together. +align_pp_define_together = false # true/false + +# The span for aligning on '#define' bodies. +# +# =0: Don't align (default) +# >0: Number of lines (including comments) between blocks +align_pp_define_span = 0 # unsigned number + +# The minimum space between label and value of a preprocessor define. +align_pp_define_gap = 0 # unsigned number + +# Whether to align lines that start with '<<' with previous '<<'. +# +# Default: true +align_left_shift = true # true/false + +# Whether to align comma-separated statements following '<<' (as used to +# initialize Eigen matrices). +align_eigen_comma_init = false # true/false + +# Whether to align text after 'asm volatile ()' colons. +align_asm_colon = false # true/false + +# (OC) Span for aligning parameters in an Objective-C message call +# on the ':'. +# +# 0: Don't align. +align_oc_msg_colon_span = 0 # unsigned number + +# (OC) Whether to always align with the first parameter, even if it is too +# short. +align_oc_msg_colon_first = false # true/false + +# (OC) Whether to align parameters in an Objective-C '+' or '-' declaration +# on the ':'. +align_oc_decl_colon = false # true/false + +# (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 +# aligment) +align_oc_msg_colon_xcode_like = false # true/false + +# +# Comment modification options +# + +# Try to wrap comments at N columns. +cmt_width = 0 # unsigned number + +# 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 +cmt_reflow_mode = 0 # unsigned number + +# Whether to convert all tabs to spaces in comments. If false, tabs in +# comments are left alone, unless used for indenting. +cmt_convert_tab_to_spaces = false # true/false + +# Whether to apply changes to multi-line comments, including cmt_width, +# keyword substitution and leading chars. +# +# Default: true +cmt_indent_multi = true # true/false + +# Whether to group c-comments that look like they are in a block. +cmt_c_group = false # true/false + +# Whether to put an empty '/*' on the first line of the combined c-comment. +cmt_c_nl_start = false # true/false + +# Whether to add a newline before the closing '*/' of the combined c-comment. +cmt_c_nl_end = false # true/false + +# Whether to change cpp-comments into c-comments. +cmt_cpp_to_c = false # true/false + +# Whether to group cpp-comments that look like they are in a block. Only +# meaningful if cmt_cpp_to_c=true. +cmt_cpp_group = false # true/false + +# 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. +cmt_cpp_nl_start = false # true/false + +# 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. +cmt_cpp_nl_end = false # true/false + +# Whether to put a star on subsequent comment lines. +cmt_star_cont = false # true/false + +# The number of spaces to insert at the start of subsequent comment lines. +cmt_sp_before_star_cont = 0 # unsigned number + +# The number of spaces to insert after the star on subsequent comment lines. +cmt_sp_after_star_cont = 0 # unsigned number + +# 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 +cmt_multi_check_last = true # true/false + +# 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 +cmt_multi_first_len_minimum = 4 # unsigned number + +# 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. +cmt_insert_file_header = "" # string + +# 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. +cmt_insert_file_footer = "" # string + +# 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. +cmt_insert_func_header = "" # string + +# 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. +cmt_insert_class_header = "" # string + +# 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. +cmt_insert_oc_msg_header = "" # string + +# 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. +cmt_insert_before_preproc = false # true/false + +# Whether a comment should be inserted if a function is declared inline to a +# class definition. +# +# Applies to cmt_insert_func_header. +# +# Default: true +cmt_insert_before_inlines = true # true/false + +# Whether a comment should be inserted if the function is a class constructor +# or destructor. +# +# Applies to cmt_insert_func_header. +cmt_insert_before_ctor_dtor = false # true/false + +# +# Code modifying options (non-whitespace) +# + +# Add or remove braces on a single-line 'do' statement. +mod_full_brace_do = ignore # ignore/add/remove/force + +# Add or remove braces on a single-line 'for' statement. +mod_full_brace_for = ignore # ignore/add/remove/force + +# (Pawn) Add or remove braces on a single-line function definition. +mod_full_brace_function = ignore # ignore/add/remove/force + +# Add or remove braces on a single-line 'if' statement. Braces will not be +# removed if the braced statement contains an 'else'. +mod_full_brace_if = ignore # ignore/add/remove/force + +# Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either +# have, or do not have, braces. If true, braces will be added if any block +# needs braces, and will only be removed if they can be removed from all +# blocks. +# +# Overrides mod_full_brace_if. +mod_full_brace_if_chain = false # true/false + +# 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'. +mod_full_brace_if_chain_only = false # true/false + +# Add or remove braces on single-line 'while' statement. +mod_full_brace_while = ignore # ignore/add/remove/force + +# Add or remove braces on single-line 'using ()' statement. +mod_full_brace_using = ignore # ignore/add/remove/force + +# Don't remove braces around statements that span N newlines +mod_full_brace_nl = 0 # unsigned number + +# 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 +mod_full_brace_nl_block_rem_mlcond = false # true/false + +# Add or remove unnecessary parenthesis on 'return' statement. +mod_paren_on_return = ignore # ignore/add/remove/force + +# (Pawn) Whether to change optional semicolons to real semicolons. +mod_pawn_semicolon = false # true/false + +# Whether to fully parenthesize Boolean expressions in 'while' and 'if' +# statement, as in 'if (a && b > c)' => 'if (a && (b > c))'. +mod_full_paren_if_bool = false # true/false + +# Whether to remove superfluous semicolons. +mod_remove_extra_semicolon = false # true/false + +# 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. +mod_add_long_function_closebrace_comment = 0 # unsigned number + +# 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. +mod_add_long_namespace_closebrace_comment = 0 # unsigned number + +# 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. +mod_add_long_class_closebrace_comment = 0 # unsigned number + +# 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. +mod_add_long_switch_closebrace_comment = 0 # unsigned number + +# If an #ifdef body exceeds the specified number of newlines and doesn't have +# a comment after the #endif, a comment will be added. +mod_add_long_ifdef_endif_comment = 0 # unsigned number + +# 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_add_long_ifdef_else_comment = 0 # unsigned number + +# Whether to take care of the case by the mod_sort_xx options. +mod_sort_case_sensitive = false # true/false + +# Whether to sort consecutive single-line 'import' statements. +mod_sort_import = false # true/false + +# (C#) Whether to sort consecutive single-line 'using' statements. +mod_sort_using = false # true/false + +# 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. +mod_sort_include = false # true/false + +# Whether to prioritize '#include' and '#import' statements that contain +# filename without extension when sorting is enabled. +mod_sort_incl_import_prioritize_filename = false # true/false + +# Whether to prioritize '#include' and '#import' statements that does not +# contain extensions when sorting is enabled. +mod_sort_incl_import_prioritize_extensionless = false # true/false + +# Whether to prioritize '#include' and '#import' statements that contain +# angle over quotes when sorting is enabled. +mod_sort_incl_import_prioritize_angle_over_quotes = false # true/false + +# Whether to ignore file extension in '#include' and '#import' statements +# for sorting comparison. +mod_sort_incl_import_ignore_extension = false # true/false + +# Whether to group '#include' and '#import' statements when sorting is enabled. +mod_sort_incl_import_grouping_enabled = false # true/false + +# Whether to move a 'break' that appears after a fully braced 'case' before +# the close brace, as in 'case X: { ... } break;' => 'case X: { ... break; }'. +mod_move_case_break = false # true/false + +# Add or remove braces around a fully braced case statement. Will only remove +# braces if there are no variable declarations in the block. +mod_case_brace = ignore # ignore/add/remove/force + +# Whether to remove a void 'return;' that appears as the last statement in a +# function. +mod_remove_empty_return = false # true/false + +# Add or remove the comma after the last value of an enumeration. +mod_enum_last_comma = ignore # ignore/add/remove/force + +# (OC) Whether to organize the properties. If true, properties will be +# rearranged according to the mod_sort_oc_property_*_weight factors. +mod_sort_oc_properties = false # true/false + +# (OC) Weight of a class property modifier. +mod_sort_oc_property_class_weight = 0 # number + +# (OC) Weight of 'atomic' and 'nonatomic'. +mod_sort_oc_property_thread_safe_weight = 0 # number + +# (OC) Weight of 'readwrite' when organizing properties. +mod_sort_oc_property_readwrite_weight = 0 # number + +# (OC) Weight of a reference type specifier ('retain', 'copy', 'assign', +# 'weak', 'strong') when organizing properties. +mod_sort_oc_property_reference_weight = 0 # number + +# (OC) Weight of getter type ('getter=') when organizing properties. +mod_sort_oc_property_getter_weight = 0 # number + +# (OC) Weight of setter type ('setter=') when organizing properties. +mod_sort_oc_property_setter_weight = 0 # number + +# (OC) Weight of nullability type ('nullable', 'nonnull', 'null_unspecified', +# 'null_resettable') when organizing properties. +mod_sort_oc_property_nullability_weight = 0 # number + +# +# Preprocessor options +# + +# Add or remove indentation of preprocessor directives inside #if blocks +# at brace level 0 (file-level). +pp_indent = ignore # ignore/add/remove/force + +# Whether to indent #if/#else/#endif at the brace level. If false, these are +# indented from column 1. +pp_indent_at_level = false # true/false + +# 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 +pp_indent_count = 1 # unsigned number + +# Add or remove space after # based on pp_level of #if blocks. +pp_space = ignore # ignore/add/remove/force + +# Sets the number of spaces per level added with pp_space. +pp_space_count = 0 # unsigned number + +# The indent for '#region' and '#endregion' in C# and '#pragma region' in +# C/C++. Negative values decrease indent down to the first column. +pp_indent_region = 0 # number + +# Whether to indent the code between #region and #endregion. +pp_region_indent_code = false # true/false + +# 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 +pp_indent_if = 0 # number + +# Whether to indent the code between #if, #else and #endif. +pp_if_indent_code = false # true/false + +# Whether to indent '#define' at the brace level. If false, these are +# indented from column 1. +pp_define_at_level = false # true/false + +# Whether to ignore the '#define' body while formatting. +pp_ignore_define_body = false # true/false + +# Whether to indent case statements between #if, #else, and #endif. +# Only applies to the indent of the preprocesser that the case statements +# directly inside of. +# +# Default: true +pp_indent_case = true # true/false + +# Whether to indent whole function definitions between #if, #else, and #endif. +# Only applies to the indent of the preprocesser that the function definition +# is directly inside of. +# +# Default: true +pp_indent_func_def = true # true/false + +# Whether to indent extern C blocks between #if, #else, and #endif. +# Only applies to the indent of the preprocesser that the extern block is +# directly inside of. +# +# Default: true +pp_indent_extern = true # true/false + +# Whether to indent braces directly inside #if, #else, and #endif. +# Only applies to the indent of the preprocesser that the braces are directly +# inside of. +# +# Default: true +pp_indent_brace = true # true/false + +# +# Sort includes options +# + +# The regex for include category with priority 0. +include_category_0 = "" # string + +# The regex for include category with priority 1. +include_category_1 = "" # string + +# The regex for include category with priority 2. +include_category_2 = "" # string + +# +# Use or Do not Use options +# + +# true: indent_func_call_param will be used (default) +# false: indent_func_call_param will NOT be used +# +# Default: true +use_indent_func_call_param = true # true/false + +# 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) +use_indent_continue_only_once = false # true/false + +# The value might be used twice: +# - at the assignment +# - at the opening brace +# +# To prevent the double use of the indentation value, use this option with the +# value 'true'. +# +# true: indentation will be used only once +# false: indentation will be used every time (default) +indent_cpp_lambda_only_once = false # true/false + +# 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. +use_sp_after_angle_always = false # true/false + +# 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 +use_options_overriding_for_qt_macros = true # true/false + +# If true: the form feed character is removed from the list +# of whitespace characters. +# See https://en.cppreference.com/w/cpp/string/byte/isspace +use_form_feed_no_more_as_whitespace_character = false # true/false + +# +# Warn levels - 1: error, 2: warning (default), 3: note +# + +# (C#) Warning is given if doing tab-to-\t replacement and we have found one +# in a C# verbatim string literal. +# +# Default: 2 +warn_level_tabs_found_in_verbatim_string_literals = 2 # unsigned number + +# Limit the number of loops. +# Used by uncrustify.cpp to exit from infinite loop. +# 0: no limit. +debug_max_number_of_loops = 0 # number + +# Set the number of the line to protocol; +# Used in the function prot_the_line if the 2. parameter is zero. +# 0: nothing protocol. +debug_line_number_to_protocol = 0 # number + +# Set the number of second(s) before terminating formatting the current file, +# 0: no timeout. +# only for linux +debug_timeout = 0 # number + +# Meaning of the settings: +# Ignore - do not do any changes +# Add - makes sure there is 1 or more space/brace/newline/etc +# Force - makes sure there is exactly 1 space/brace/newline/etc, +# behaves like Add in some contexts +# Remove - removes space/brace/newline/etc +# +# +# - Token(s) can be treated as specific type(s) with the 'set' option: +# `set tokenType tokenString [tokenString...]` +# +# Example: +# `set BOOL __AND__ __OR__` +# +# tokenTypes are defined in src/token_enum.h, use them without the +# 'CT_' prefix: 'CT_BOOL' => 'BOOL' +# +# +# - Token(s) can be treated as type(s) with the 'type' option. +# `type tokenString [tokenString...]` +# +# Example: +# `type int c_uint_8 Rectangle` +# +# This can also be achieved with `set TYPE int c_uint_8 Rectangle` +# +# +# To embed whitespace in tokenStrings use the '\' escape character, or quote +# the tokenStrings. These quotes are supported: "'` +# +# +# - Support for the auto detection of languages through the file ending can be +# added using the 'file_ext' command. +# `file_ext langType langString [langString..]` +# +# Example: +# `file_ext CPP .ch .cxx .cpp.in` +# +# langTypes are defined in uncrusify_types.h in the lang_flag_e enum, use +# them without the 'LANG_' prefix: 'LANG_CPP' => 'CPP' +# +# +# - Custom macro-based indentation can be set up using 'macro-open', +# 'macro-else' and 'macro-close'. +# `(macro-open | macro-else | macro-close) tokenString` +# +# Example: +# `macro-open BEGIN_TEMPLATE_MESSAGE_MAP` +# `macro-open BEGIN_MESSAGE_MAP` +# `macro-close END_MESSAGE_MAP` +# +# +# option(s) with 'not default' value: 0 +# diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/dofiles.sh b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/dofiles.sh new file mode 100644 index 00000000..e08fd6f7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/dofiles.sh @@ -0,0 +1,19 @@ +#! /bin/sh + +if [ -z "$1" ]; then + echo "specify the file that contains a list of files" + exit +fi + +files=$(cat $1) + +mkdir -p out + +for item in $files ; do + + dn=$(dirname $item) + mkdir -p out/$dn + src/uncrustify -f $item -c etc/ben.cfg > out/$item + +done + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/freebsd.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/freebsd.cfg new file mode 100644 index 00000000..985ab50c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/freebsd.cfg @@ -0,0 +1,381 @@ +# Uncrustify 0.55 +newlines = lf +input_tab_size = 8 +output_tab_size = 8 +string_escape_char = 92 +string_escape_char2 = 0 +indent_columns = 8 +indent_continue = 4 +indent_with_tabs = 2 +indent_align_string = false +indent_xml_string = 0 +indent_brace = 0 +indent_braces = false +indent_braces_no_func = false +indent_brace_parent = false +indent_namespace = false +indent_namespace_level = 0 +indent_namespace_limit = 0 +indent_extern = false +indent_class = true +indent_class_colon = true +indent_else_if = false +indent_var_def_blk = 0 +indent_func_call_param = false +indent_func_def_param = false +indent_func_proto_param = false +indent_func_class_param = false +indent_func_ctor_var_param = false +indent_template_param = false +indent_func_param_double = false +indent_func_const = 0 +indent_func_throw = 0 +indent_member = 0 +indent_sing_line_comments = 0 +indent_relative_single_line_comments = false +indent_switch_case = 0 +indent_case_shift = 0 +indent_case_brace = 0 +indent_col1_comment = false +indent_label = 1 +indent_access_spec = 1 +indent_access_spec_body = false +indent_paren_nl = false +indent_paren_close = 0 +indent_comma_paren = false +indent_bool_paren = false +indent_square_nl = false +indent_preserve_sql = false +indent_align_assign = true +indent_off_after_assign = false +sp_arith = ignore +sp_assign = force +sp_before_assign = ignore +sp_after_assign = ignore +sp_enum_assign = ignore +sp_enum_before_assign = ignore +sp_enum_after_assign = ignore +sp_pp_concat = add +sp_pp_stringify = add +sp_bool = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_balance_nested_parens = false +sp_paren_brace = ignore +sp_before_ptr_star = force +sp_before_unnamed_ptr_star = ignore +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = ignore +sp_before_ptr_star_func = ignore +sp_before_byref = remove +sp_before_unnamed_byref = ignore +sp_after_byref = force +sp_after_byref_func = ignore +sp_before_byref_func = ignore +sp_after_type = force +sp_template_angle = ignore +sp_before_angle = remove +sp_inside_angle = remove +sp_after_angle = force +sp_angle_paren = ignore +sp_angle_word = ignore +sp_before_sparen = force +sp_inside_sparen = remove +sp_inside_sparen_close = ignore +sp_after_sparen = force +sp_sparen_brace = add +sp_invariant_paren = ignore +sp_after_invariant_paren = ignore +sp_special_semi = ignore +sp_before_semi = remove +sp_before_semi_for = ignore +sp_before_semi_for_empty = force +sp_after_semi = add +sp_after_semi_for = force +sp_after_semi_for_empty = ignore +sp_before_square = ignore +sp_before_squares = ignore +sp_inside_square = remove +sp_after_comma = force +sp_before_comma = remove +sp_before_ellipsis = ignore +sp_after_class_colon = ignore +sp_before_class_colon = ignore +sp_before_case_colon = remove +sp_after_operator = ignore +sp_after_operator_sym = ignore +sp_after_cast = remove +sp_inside_paren_cast = ignore +sp_cpp_cast_paren = ignore +sp_sizeof_paren = remove +sp_after_tag = ignore +sp_inside_braces_enum = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_inside_braces_empty = ignore +sp_type_func = force +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparens = ignore +sp_inside_fparen = remove +sp_square_fparen = ignore +sp_fparen_brace = add +sp_func_call_paren = remove +sp_func_call_user_paren = ignore +sp_func_class_paren = remove +sp_return_paren = force +sp_attribute_paren = ignore +sp_defined_paren = ignore +sp_throw_paren = ignore +sp_macro = ignore +sp_macro_func = ignore +sp_else_brace = ignore +sp_brace_else = ignore +sp_brace_typedef = force +sp_catch_brace = ignore +sp_brace_catch = ignore +sp_finally_brace = ignore +sp_brace_finally = ignore +sp_try_brace = ignore +sp_getset_brace = ignore +sp_before_dc = remove +sp_after_dc = remove +sp_d_array_colon = ignore +sp_not = remove +sp_inv = remove +sp_addr = remove +sp_member = remove +sp_deref = remove +sp_sign = remove +sp_incdec = remove +sp_before_nl_cont = add +sp_after_oc_scope = ignore +sp_after_oc_colon = ignore +sp_before_oc_colon = ignore +sp_after_send_oc_colon = ignore +sp_before_send_oc_colon = ignore +sp_after_oc_type = ignore +sp_after_oc_return_type = ignore +sp_after_oc_at_sel = ignore +sp_before_oc_block_caret = ignore +sp_after_oc_block_caret = ignore +sp_cond_colon = ignore +sp_cond_question = ignore +sp_case_label = remove +sp_range = ignore +sp_cmt_cpp_start = ignore +sp_endif_cmt = ignore +align_keep_tabs = false +align_with_tabs = true +align_on_tabstop = true +align_number_right = true +align_func_params = false +align_same_func_call_params = false +align_same_func_call_params_span = 0 +align_same_func_call_params_thresh = 0 +align_var_def_span = 0 +align_var_def_star_style = 0 +align_var_def_amp_style = 0 +align_var_def_thresh = 0 +align_var_def_gap = 0 +align_var_def_colon = false +align_var_def_attribute = false +align_var_def_inline = false +align_assign_span = 0 +align_assign_thresh = 12 +align_enum_equ_span = 16 +align_enum_equ_thresh = 0 +align_var_struct_span = 99 +align_var_struct_thresh = 0 +align_var_struct_gap = 0 +align_struct_init_span = 3 +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_func = 0 +align_typedef_star_style = 0 +align_typedef_amp_style = 0 +align_right_cmt_span = 3 +align_right_cmt_mix = false +align_right_cmt_gap = 0 +align_right_cmt_at_col = 0 +align_func_proto_span = 0 +align_func_proto_gap = 0 +align_on_operator = false +align_mix_var_proto = false +align_single_line_func = false +align_single_line_brace = false +align_single_line_brace_gap = 0 +align_oc_msg_spec_span = 0 +align_nl_cont = true +align_pp_define_gap = 4 +align_pp_define_span = 3 +align_left_shift = true +align_oc_msg_colon_span = 0 +nl_collapse_empty_body = false +nl_assign_leave_one_liners = true +nl_class_leave_one_liners = true +nl_enum_leave_one_liners = false +nl_getset_leave_one_liners = false +nl_func_leave_one_liners = false +nl_if_leave_one_liners = false +nl_start_of_file = remove +nl_start_of_file_min = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_assign_brace = add +nl_assign_square = ignore +nl_after_square_assign = ignore +nl_func_var_def_blk = 1 +nl_fcall_brace = add +nl_enum_brace = remove +nl_struct_brace = remove +nl_union_brace = remove +nl_if_brace = remove +nl_brace_else = remove +nl_elseif_brace = ignore +nl_else_brace = remove +nl_else_if = remove +nl_brace_finally = ignore +nl_finally_brace = ignore +nl_try_brace = ignore +nl_getset_brace = force +nl_for_brace = add +nl_catch_brace = ignore +nl_brace_catch = ignore +nl_while_brace = add +nl_brace_brace = ignore +nl_do_brace = add +nl_brace_while = remove +nl_switch_brace = add +nl_multi_line_cond = false +nl_multi_line_define = true +nl_before_case = true +nl_before_throw = ignore +nl_after_case = true +nl_namespace_brace = ignore +nl_template_class = ignore +nl_class_brace = ignore +nl_class_init_args = ignore +nl_func_type_name = ignore +nl_func_type_name_class = ignore +nl_func_scope_name = ignore +nl_func_proto_type_name = ignore +nl_func_paren = remove +nl_func_decl_start = ignore +nl_func_decl_start_single = ignore +nl_func_decl_args = ignore +nl_func_decl_end = ignore +nl_func_decl_end_single = ignore +nl_func_decl_empty = ignore +nl_fdef_brace = add +nl_after_return = true +nl_return_expr = ignore +nl_after_semicolon = true +nl_after_brace_open = true +nl_after_brace_open_cmt = false +nl_after_vbrace_open = false +nl_after_vbrace_open_empty = false +nl_after_brace_close = true +nl_define_macro = false +nl_squeeze_ifdef = true +nl_before_if = ignore +nl_after_if = ignore +nl_before_for = ignore +nl_after_for = ignore +nl_before_while = ignore +nl_after_while = ignore +nl_before_switch = ignore +nl_after_switch = ignore +nl_before_do = ignore +nl_after_do = ignore +nl_ds_struct_enum_cmt = false +nl_ds_struct_enum_close_brace = false +nl_class_colon = ignore +nl_create_if_one_liner = false +nl_create_for_one_liner = false +nl_create_while_one_liner = false +pos_arith = ignore +pos_assign = ignore +pos_bool = trail +pos_compare = ignore +pos_conditional = ignore +pos_comma = ignore +pos_class_comma = ignore +pos_class_colon = ignore +code_width = 0 +ls_for_split_full = false +ls_func_split_full = false +nl_max = 4 +nl_after_func_proto = 0 +nl_after_func_proto_group = 2 +nl_after_func_body = 3 +nl_after_func_body_one_liner = 0 +nl_before_block_comment = 2 +nl_before_c_comment = 0 +nl_before_cpp_comment = 0 +nl_after_multiline_comment = false +nl_before_access_spec = 0 +nl_after_access_spec = 0 +nl_comment_func_def = 1 +nl_after_try_catch_finally = 0 +nl_around_cs_property = 0 +nl_between_get_set = 0 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +mod_full_brace_do = add +mod_full_brace_for = add +mod_full_brace_function = ignore +mod_full_brace_if = add +mod_full_brace_if_chain = false +mod_full_brace_nl = 0 +mod_full_brace_while = add +mod_paren_on_return = add +mod_pawn_semicolon = false +mod_full_paren_if_bool = true +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 0 +mod_add_long_switch_closebrace_comment = 0 +mod_add_long_ifdef_endif_comment = 0 +mod_add_long_ifdef_else_comment = 0 +mod_sort_import = false +mod_sort_using = false +mod_sort_include = false +mod_sort_incl_import_prioritize_filename = false +mod_sort_incl_import_prioritize_extensionless = false +mod_sort_incl_import_prioritize_angle_over_quotes = false +mod_sort_incl_import_ignore_extension = false +mod_sort_incl_import_grouping_enabled = false +mod_move_case_break = false +mod_case_brace = remove +mod_remove_empty_return = true +cmt_width = 0 +cmt_reflow_mode = 0 +cmt_indent_multi = true +cmt_c_group = false +cmt_c_nl_start = false +cmt_c_nl_end = false +cmt_cpp_group = false +cmt_cpp_nl_start = false +cmt_cpp_nl_end = false +cmt_cpp_to_c = false +cmt_star_cont = true +cmt_sp_before_star_cont = 0 +cmt_sp_after_star_cont = 0 +cmt_multi_check_last = true +cmt_insert_file_header = "" +cmt_insert_file_footer = "" +cmt_insert_func_header = "" +cmt_insert_class_header = "" +cmt_insert_before_preproc = false +pp_indent = remove +pp_indent_at_level = false +pp_indent_count = 1 +pp_space = ignore +pp_space_count = 0 +pp_indent_region = 0 +pp_region_indent_code = false +pp_indent_if = 0 +pp_if_indent_code = false +pp_define_at_level = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/gnu-indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/gnu-indent.cfg new file mode 100644 index 00000000..d4e8efea --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/gnu-indent.cfg @@ -0,0 +1,82 @@ +# +# GNU format (sorta) +# + +indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 8 # new tab size +indent_columns = 2 +# indent_label = 2 # pos: absolute col, neg: relative column +indent_align_string = False # align broken strings +indent_brace = 2 + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = add # "do {" vs "do \n {" +nl_if_brace = add # "if () {" vs "if () \n {" +nl_for_brace = add # "for () {" vs "for () \n {" +nl_else_brace = add # "else {" vs "else \n {" +nl_while_brace = add # "while () {" vs "while () \n {" +nl_switch_brace = add # "switch () {" vs "switch () \n {" +nl_func_var_def_blk = 1 +nl_before_case = 1 +nl_fcall_brace = add # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = add +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = ignore # "return 1;" vs "return (1);" +# mod_full_brace_if = ignore # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = ignore # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = ignore # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = ignore # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +#sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + +# align_with_tabs = FALSE # use tabs to align +# align_on_tabstop = FALSE # align on tabstops +# align_enum_equ_span = 4 +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = TRUE +# align_var_def_colon = TRUE +# align_assign_span = 1 +# align_struct_init_span = 3 +# align_var_struct_span = 3 +# align_right_cmt_span = 3 +# align_pp_define_span = 3 +# align_pp_define_gap = 4 +# align_number_right = TRUE +# align_typedef_span = 5 +# align_typedef_gap = 3 + +# cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/klaus.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/klaus.cfg new file mode 100644 index 00000000..97857198 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/klaus.cfg @@ -0,0 +1,501 @@ + +# +# General options +# + +# The type of line endings +newlines = lf # auto/lf/crlf/cr + +# The original size of tabs in the input +input_tab_size = 8 # number + +# The size of tabs in the output (only used if align_with_tabs=true) +output_tab_size = 3 # number + +# The ascii value of the string escape char, usually 92 (\). (Pawn) +string_escape_char = 92 # number + +# +# Indenting +# + +# The number of columns to indent per level (usually 2, 3, 4, or 8) +indent_columns = 3 # number + +# How to use tabs when indenting code +# 0=spaces only +# 1=indent with tabs, align with spaces +# 2=indent and align with tabs +indent_with_tabs = 0 # number + +# Whether to indent strings broken by '\' so that they line up +indent_align_string = false # false/true + +# Spaces to indent '{' from level +indent_brace = 0 # number + +# Whether braces are indented to the body level +indent_braces = false # false/true + +# Indent based on the size of the brace parent, ie 'if' => 3 spaces, 'for' => 4 spaces, etc. +indent_brace_parent = true # false/true + +# Whether the 'namespace' body is indented +indent_namespace = false # false/true + +# Whether the 'class' body is indented +indent_class = true # false/true + +# Whether to indent the stuff after a leading class colon +indent_class_colon = false # false/true + +# Whether to indent continued function call parameters one indent level (true) or aligns instead of indent (false) +indent_func_call_param = false # false/true + +# The number of spaces to indent a continued '->' or '.' +# Usually set to indent_columns. +indent_member = 3 # number + +# Spaces to indent 'case' from 'switch' +indent_switch_case = 0 # number + +# Spaces to indent '{' from 'case' +indent_case_brace = 0 # number + +# Whether to indent comments found in first column +indent_col1_comment = false # false/true + +# How to indent goto labels (>0=absolute column where 1 is the leftmost column, <=0=subtract from brace indent) +indent_label = 1 # number + +# If an open paren is followed by a newline, indent the next line so that it lines up after the open paren (not recommended) +indent_paren_nl = false # false/true + +# If an open square is followed by a newline, indent the next line so that it lines up after the open square (not recommended) +indent_square_nl = false # false/true + +# +# Spacing options +# + +# Add or remove space around arithmetic operator '+', '-', '/', '*', etc +sp_arith = force # ignore/add/remove/force + +# Add or remove space around assignment operator '=', '+=', etc +sp_assign = force # ignore/add/remove/force + +# Add or remove space around boolean operators '&&' and '||' +sp_bool = force # ignore/add/remove/force + +# Add or remove space around compare operator '<', '>', '==', etc +sp_compare = force # ignore/add/remove/force + +# Add or remove space inside '(' and ')' +sp_inside_paren = remove # ignore/add/remove/force + +# Add or remove space between nested parens +sp_paren_paren = remove # ignore/add/remove/force + +# Add or remove space between ')' and '{' +sp_paren_brace = ignore # ignore/add/remove/force + +# Add or remove space before pointer star '*' +sp_before_ptr_star = force # ignore/add/remove/force + +# Add or remove space between pointer stars '*' +sp_between_ptr_star = remove # ignore/add/remove/force + +# Add or remove space after pointer star '*' +sp_after_ptr_star = remove # ignore/add/remove/force + +# Add or remove space before reference sign '&' +sp_before_byref = remove # ignore/add/remove/force + +# Add or remove space after reference sign '&' +sp_after_byref = ignore # ignore/add/remove/force + +# Add or remove space before '<>' +sp_before_angle = force # ignore/add/remove/force + +# Add or remove space after '<>' +sp_after_angle = force # ignore/add/remove/force + +# Add or remove space before '(' of 'if', 'for', 'switch', and 'while' +sp_before_sparen = remove # ignore/add/remove/force + +# Add or remove space inside if-condition '(' and ')' +sp_inside_sparen = remove # ignore/add/remove/force + +# Add or remove space after ')' of 'if', 'for', 'switch', and 'while' +sp_after_sparen = remove # ignore/add/remove/force + +# Add or remove space between ')' and '{' of 'if', 'for', 'switch', and 'while' +sp_sparen_brace = remove # ignore/add/remove/force + +# Add or remove space before empty statement ';' on 'if', 'for' and 'while' +sp_special_semi = ignore # ignore/add/remove/force + +# Add or remove space before ';' +sp_before_semi = remove # ignore/add/remove/force + +# Add or remove space before '[' (except '[]') +sp_before_square = ignore # ignore/add/remove/force + +# Add or remove space before '[]' +sp_before_squares = ignore # ignore/add/remove/force + +# Add or remove space inside '[' and ']' +sp_inside_square = remove # ignore/add/remove/force + +# Add or remove space after ',' +sp_after_comma = force # ignore/add/remove/force + +# Add or remove space between 'operator' and operator sign +sp_after_operator = ignore # ignore/add/remove/force + +# Add or remove space after cast +sp_after_cast = remove # ignore/add/remove/force + +# Add or remove space between 'sizeof' and '(' +sp_sizeof_paren = remove # ignore/add/remove/force + +# Add or remove space after the tag keyword (Pawn) +sp_after_tag = ignore # ignore/add/remove/force + +# Add or remove space inside enum '{' and '}' +sp_inside_braces_enum = force # ignore/add/remove/force + +# Add or remove space inside struct/union '{' and '}' +sp_inside_braces_struct = force # ignore/add/remove/force + +# Add or remove space inside '{' and '}' +sp_inside_braces = force # ignore/add/remove/force + +# Add or remove space inside '<' and '>' +sp_inside_angle = remove # ignore/add/remove/force + +# Add or remove space between return type and function name (a minimum of 1 is forced except for pointer return types) +sp_type_func = ignore # ignore/add/remove/force + +# Add or remove space between function name and '(' on function declaration +sp_func_proto_paren = remove # ignore/add/remove/force + +# Add or remove space between function name and '(' on function definition +sp_func_def_paren = remove # ignore/add/remove/force + +# Add or remove space inside empty function '()' +sp_inside_fparens = ignore # ignore/add/remove/force + +# Add or remove space inside function '(' and ')' +sp_inside_fparen = remove # ignore/add/remove/force + +# Add or remove space between ']' and '(' when part of a function call. +sp_square_fparen = ignore # ignore/add/remove/force + +# Add or remove space between ')' and '{' of function +sp_fparen_brace = add # ignore/add/remove/force + +# Add or remove space between function name and '(' on function calls +sp_func_call_paren = remove # ignore/add/remove/force + +# Add or remove space between a constructor/destructor and the open paren +sp_func_class_paren = remove # ignore/add/remove/force + +# Add or remove space between 'return' and '(' +sp_return_paren = remove # ignore/add/remove/force + +# Add or remove space between macro and value +sp_macro = ignore # ignore/add/remove/force + +# Add or remove space between macro function ')' and value +sp_macro_func = ignore # ignore/add/remove/force + +# Add or remove space between 'else' and '{' if on the same line +sp_else_brace = remove # ignore/add/remove/force + +# Add or remove space between '}' and 'else' if on the same line +sp_brace_else = remove # ignore/add/remove/force + +# +# Code alignment (not left column spaces/tabs) +# + +# Whether to keep non-indenting tabs +align_keep_tabs = false # false/true + +# Whether to use tabs for alinging +align_with_tabs = false # false/true + +# Whether to bump out to the next tab when aligning +align_on_tabstop = false # false/true + +# Whether to right-align numbers +align_number_right = true # false/true + +# The span for aligning variable definitions (0=don't align) +align_var_def_span = 1 # number + +# Whether the pointer star is part of the variable name or not +align_var_def_star_style = 1 + +# The threshold for aligning variable definitions (0=no limit) +align_var_def_thresh = 12 # number + +# Whether to align the colon in struct bit fields +align_var_def_colon = true # false/true + +# Whether to align inline struct/enum/union variable definitions +align_var_def_inline = true # false/true + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 1 # number + +# The threshold for aligning on '=' in assignments (0=no limit) +align_assign_thresh = 12 # number + +# The span for aligning on '=' in enums (0=don't align) +align_enum_equ_span = 16 # number + +# The threshold for aligning on '=' in enums (0=no limit) +align_enum_equ_thresh = 0 # number + +# The span for aligning struct/union (0=don't align) +align_var_struct_span = 99 # number + +# The span for aligning struct initializer values (0=don't align) +align_struct_init_span = 3 # number + +# The minimum space between the type and the synonym of a typedef +align_typedef_gap = 3 # number + +# The span for aligning single-line typedefs (0=don't align) +align_typedef_span = 5 # number + +# Controls the positioning of the '*' in typedefs. Just try it. +# 0: Align on typdef type, ignore '*' +# 1: The '*' is part of type name: typedef int *pint; +# 2: The '*' is part of the type: typedef int * pint; +align_typedef_star_style = 0 # number + +# The span for aligning comments that end lines (0=don't align) +align_right_cmt_span = 3 # number + +# The span for aligning function prototypes (0=don't align) +align_func_proto_span = 0 # number + +# Whether to align macros wrapped with a backslash and a newline +align_nl_cont = true # false/true + +# The minimum space between label and value of a preprocessor define +align_pp_define_gap = 4 # number + +# The span for aligning on '#define' bodies (0=don't align) +align_pp_define_span = 3 # number + +# +# Newline adding and removing options +# + +# Try to limit code width to N number of columns +code_width = 0 # number + +# Whether to collapse empty blocks between '{' and '}' +nl_collapse_empty_body = false # false/true + +# Add or remove newlines at the start of the file +nl_start_of_file = remove # ignore/add/remove/force + +# The number of newlines at the start of the file (only used if nl_start_of_file is 'add' or 'force' +nl_start_of_file_min = 0 # number + +# Add or remove newline at the end of the file +nl_end_of_file = force # ignore/add/remove/force + +# The number of newlines at the end of the file (only used if nl_end_of_file is 'add' or 'force') +nl_end_of_file_min = 1 # number + +# Add or remove newline between '=' and '{' +nl_assign_brace = add # ignore/add/remove/force + +# The number of newlines after a block of variable definitions +nl_func_var_def_blk = 1 # number + +# Add or remove newline between function call and '(' +nl_fcall_brace = add # ignore/add/remove/force + +# Add or remove newline between 'enum' and '{' +nl_enum_brace = add # ignore/add/remove/force + +# Add or remove newline between 'struct and '{' +nl_struct_brace = add # ignore/add/remove/force + +# Add or remove newline between 'union' and '{' +nl_union_brace = add # ignore/add/remove/force + +# Add or remove newline between 'if' and '{' +nl_if_brace = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'else' +nl_brace_else = force # ignore/add/remove/force + +# Add or remove newline between 'else if' and '{' +# If set to ignore, nl_if_brace is used instead +nl_elseif_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'else' and '{' +nl_else_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'for' and '{' +nl_for_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'while' and '{' +nl_while_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'do' and '{' +nl_do_brace = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'while' of 'do' statement +nl_brace_while = remove # ignore/add/remove/force + +# Add or remove newline between 'switch' and '{' +nl_switch_brace = remove # ignore/add/remove/force + +# Whether to put a newline before 'case' statement +nl_before_case = true # false/true + +# Whether to put a newline after 'case' statement +nl_after_case = true # false/true + +# Newline between namespace and { +nl_namespace_brace = ignore # ignore/add/remove/force + +# Add or remove newline between 'template<>' and 'class' +nl_template_class = ignore # ignore/add/remove/force + +# Add or remove newline between 'class' and '{' +nl_class_brace = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in the constructor member initialization +nl_class_init_args = ignore # ignore/add/remove/force + +# Add or remove newline between return type and function name in definition +nl_func_type_name = ignore # ignore/add/remove/force + +# Add or remove newline after '(' in a function declaration +nl_func_decl_start = ignore # ignore/add/remove/force + +# Add or remove newline after each ',' in a function declaration +nl_func_decl_args = ignore # ignore/add/remove/force + +# Add or remove newline before the ')' in a function declaration +nl_func_decl_end = ignore # ignore/add/remove/force + +# Add or remove newline between function signature and '{' +nl_fdef_brace = add # ignore/add/remove/force + +# Whether to put a newline after 'return' statement +nl_after_return = true # false/true + +# Whether to put a newline after semicolons, except in 'for' statements +nl_after_semicolon = true # false/true + +# Whether to put a newline after brace open +nl_after_brace_open = true # false/true + +# Whether to alter newlines in '#define' macros +nl_define_macro = false # false/true + +# Whether to not put blanks after '#ifxx', '#elxx', or before '#endif' +nl_squeeze_ifdef = true # false/true + +# +# Positioning options +# + +# The position of boolean operators in wrapped expressions +pos_bool = trail # ignore/lead/trail + +# The position of colons between constructor and member initialization +pos_class_colon = ignore # ignore/lead/trail + +# +# Blank line options +# + +# The maximum consecutive newlines +nl_max = 4 # number + +# The number of newlines after a function prototype, if followed by another function prototype +nl_after_func_proto = 0 # number + +# The number of newlines after a function prototype, if not followed by another function prototype +nl_after_func_proto_group = 2 # number + +# The number of newlines after '}' of the function body +nl_after_func_body = 2 # number + +# The minimum number of newlines before a multi-line comment (doesn't apply if after a brace open) +nl_before_block_comment = 2 # number + +# Whether to remove blank lines after '{' +eat_blanks_after_open_brace = true # false/true + +# Whether to remove blank lines before '}' +eat_blanks_before_close_brace = true # false/true + +# +# Code modifying options (non-whitespace) +# + +# Add or remove braces on single-line 'do' statement +mod_full_brace_do = add # ignore/add/remove/force + +# Add or remove braces on single-line 'for' statement +mod_full_brace_for = add # ignore/add/remove/force + +# Add or remove braces on single-line function defintions. (Pawn) +mod_full_brace_function = ignore # ignore/add/remove/force + +# Add or remove braces on single-line 'if' statement +mod_full_brace_if = add # ignore/add/remove/force + +# Don't remove braces around statements that span N newlines +mod_full_brace_nl = 0 # number + +# Add or remove braces on single-line 'while' statement +mod_full_brace_while = add # ignore/add/remove/force + +# Add or remove unnecessary paren on 'return' statement +mod_paren_on_return = add # ignore/add/remove/force + +# Whether to change optional semicolons to real semicolons +mod_pawn_semicolon = false # false/true + +# +# Comment modifications +# + +# Whether to group cpp-comments that look like they are in a block +cmt_cpp_group = false # false/true + +# Whether to put an empty '/*' on the first line of the combined cpp-comment +cmt_cpp_nl_start = false # false/true + +# Whether to put a newline before the closing '*/' of the combined cpp-comment +cmt_cpp_nl_end = false # false/true + +# Whether to change cpp-comments into c-comments +cmt_cpp_to_c = false # false/true + +# Whether to put a star on subsequent comment lines +cmt_star_cont = true # false/true + +# +# Preprocessor options +# + +# Add or remove indent of preprocessor directives +pp_indent = ignore # ignore/add/remove/force + +# Add or remove space between # and, say, define +pp_space = ignore # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/kr-indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/kr-indent.cfg new file mode 100644 index 00000000..5eea56c3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/kr-indent.cfg @@ -0,0 +1,82 @@ +# +# K&R (sort-of) +# + +indent_with_tabs = 2 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 8 # new tab size +indent_columns = output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +# indent_align_string = False # align broken strings +# indent_brace = 0 + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = remove # "do {" vs "do \n {" +nl_if_brace = remove # "if () {" vs "if () \n {" +nl_for_brace = remove # "for () {" vs "for () \n {" +nl_else_brace = remove # "else {" vs "else \n {" +nl_while_brace = remove # "while () {" vs "while () \n {" +nl_switch_brace = remove # "switch () {" vs "switch () \n {" +# nl_func_var_def_blk = 1 +# nl_before_case = 1 +nl_fcall_brace = add # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = remove +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = add # "return 1;" vs "return (1);" +# mod_full_brace_if = add # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = add # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = add # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = add # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove # "( 1 )" vs "(1)" +sp_inside_fparen = remove # "( 1 )" vs "(1)" - functions +sp_inside_sparen = remove # "( 1 )" vs "(1)" - if/for/etc +# sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + +# align_with_tabs = FALSE # use tabs to align +# align_on_tabstop = FALSE # align on tabstops +# align_enum_equ_span = 4 +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = TRUE +# align_var_def_colon = TRUE +# align_assign_span = 1 +# align_struct_init_span = 3 +# align_var_struct_span = 3 +# align_right_cmt_span = 3 +# align_pp_define_span = 3 +# align_pp_define_gap = 4 +# align_number_right = TRUE +# align_typedef_span = 5 +# align_typedef_gap = 3 + +# cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux-indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux-indent.cfg new file mode 100644 index 00000000..d6baa165 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux-indent.cfg @@ -0,0 +1,90 @@ +# +# uncrustify config file for the linux kernel +# + +indent_with_tabs = 2 # 1=indent to level only, 2=indent with tabs +align_with_tabs = TRUE # use tabs to align +align_on_tabstop = TRUE # align on tabstops +input_tab_size = 8 # original tab size +output_tab_size = 8 # new tab size +indent_columns = output_tab_size + +indent_label = 2 # pos: absolute col, neg: relative column + + +# +# inter-symbol newlines +# + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = remove # "do {" vs "do \n {" +nl_if_brace = remove # "if () {" vs "if () \n {" +nl_for_brace = remove # "for () {" vs "for () \n {" +nl_else_brace = remove # "else {" vs "else \n {" +nl_while_brace = remove # "while () {" vs "while () \n {" +nl_switch_brace = remove # "switch () {" vs "switch () \n {" +nl_brace_while = remove # "} while" vs "} \n while" - cuddle while +nl_brace_else = remove # "} else" vs "} \n else" - cuddle else +nl_func_var_def_blk = 1 +nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE; +# nl_before_case = 1 + + +# +# Source code modifications +# + +# mod_paren_on_return = remove # "return 1;" vs "return (1);" +# mod_full_brace_if = remove # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = remove # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = remove # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = remove # "while (a) a--;" vs "while (a) { a--; }" + + +# +# inter-character spacing options +# + +# sp_return_paren = force # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = add # "{ 1 }" vs "{1}" +sp_inside_braces_struct = add # "{ 1 }" vs "{1}" +sp_inside_braces_enum = add # "{ 1 }" vs "{1}" +sp_assign = add +sp_arith = add +sp_bool = add +sp_compare = add +sp_assign = add +sp_after_comma = add +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + + +# +# Aligning stuff +# + +align_enum_equ_span = 4 # '=' in enum definition +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = FALSE +# align_var_def_colon = TRUE +# align_assign_span = 1 +align_struct_init_span = 3 # align stuff in a structure init '= { }' +align_right_cmt_span = 3 +# align_pp_define_span = 8; +# align_pp_define_gap = 4; + +# cmt_star_cont = FALSE + +# indent_brace = 0 + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux.cfg new file mode 100644 index 00000000..c3fb724b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/linux.cfg @@ -0,0 +1,121 @@ +# +# uncrustify config file for the linux kernel +# + +indent_with_tabs = 2 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 8 # new tab size +indent_columns = output_tab_size + +indent_label = 1 # pos: absolute col, neg: relative column + + +# +# inter-symbol newlines +# + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = remove # "do {" vs "do \n {" +nl_if_brace = remove # "if () {" vs "if () \n {" +nl_for_brace = remove # "for () {" vs "for () \n {" +nl_else_brace = remove # "else {" vs "else \n {" +nl_while_brace = remove # "while () {" vs "while () \n {" +nl_switch_brace = remove # "switch () {" vs "switch () \n {" +nl_brace_while = remove # "} while" vs "} \n while" - cuddle while +nl_brace_else = remove # "} else" vs "} \n else" - cuddle else +sp_brace_else = force +sp_else_brace = force +nl_func_var_def_blk = 1 +nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +nl_after_label_colon = true # "fail:\nfree(foo);" vs "fail: free(foo);" +# nl_after_return = TRUE; +# nl_before_case = 1 + + +# +# Source code modifications +# + +mod_paren_on_return = remove # "return 1;" vs "return (1);" +#mod_full_brace_if = remove # "if (a) a--;" vs "if (a) { a--; }" +mod_full_brace_if_chain = true +mod_full_brace_for = remove # "for () a--;" vs "for () { a--; }" +mod_full_brace_do = remove # "do a--; while ();" vs "do { a--; } while ();" +mod_full_brace_while = remove # "while (a) a--;" vs "while (a) { a--; }" +mod_full_brace_nl = 3 # don't remove if more than 3 newlines + + +# +# inter-character spacing options +# + +sp_return_paren = force # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_assign = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + + +# +# Aligning stuff +# + +align_with_tabs = TRUE # use tabs to align +align_on_tabstop = TRUE # align on tabstops +# align_keep_tabs = true +align_enum_equ_span = 4 # '=' in enum definition +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = FALSE +# align_var_def_colon = TRUE +# align_assign_span = 1 +align_struct_init_span = 3 # align stuff in a structure init '= { }' +align_right_cmt_span = 3 +# align_pp_define_span = 8; +# align_pp_define_gap = 4; + +cmt_star_cont = true + +# indent_brace = 0 + +nl_func_paren = remove +nl_func_decl_start = remove +nl_func_decl_empty = remove +nl_func_decl_args = remove +nl_func_decl_end = remove +sp_inside_paren = remove +sp_inside_square = remove +sp_inside_paren_cast = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_between_ptr_star = remove +align_func_params = true +align_var_struct_span = 6 + +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +pp_indent = remove + +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_comment_func_def = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/mono.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/mono.cfg new file mode 100644 index 00000000..9987e9d6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/mono.cfg @@ -0,0 +1,86 @@ +# +# Mono library format +# + +indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 8 # new tab size +indent_columns = output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +# indent_align_string = False # align broken strings +# indent_brace = 0 +indent_func_call_param = true # use indent tabstop + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = remove # "do {" vs "do \n {" +nl_if_brace = remove # "if () {" vs "if () \n {" +nl_for_brace = remove # "for () {" vs "for () \n {" +nl_else_brace = remove # "else {" vs "else \n {" +nl_while_brace = remove # "while () {" vs "while () \n {" +nl_switch_brace = remove # "switch () {" vs "switch () \n {" +nl_func_var_def_blk = 1 +nl_before_case = 1 +nl_fcall_brace = remove # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = add +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = add # "return 1;" vs "return (1);" +# mod_full_brace_if = add # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = add # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = add # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = add # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +sp_inside_square = remove +sp_before_square = add +#sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_assign = force +sp_after_comma = force +sp_func_def_paren = force # "int foo (){" vs "int foo(){" +sp_func_call_paren = force # "foo (" vs "foo(" +sp_func_proto_paren = force # "int foo ();" vs "int foo();" + +# align_with_tabs = FALSE # use tabs to align +# align_on_tabstop = FALSE # align on tabstops +# align_enum_equ_span = 4 +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = TRUE +# align_var_def_colon = TRUE +# align_assign_span = 1 +# align_struct_init_span = 3 +# align_var_struct_span = 3 +# align_right_cmt_span = 3 +# align_pp_define_span = 3 +# align_pp_define_gap = 4 +# align_number_right = TRUE +# align_typedef_span = 5 +# align_typedef_gap = 3 + +cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/msvc.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/msvc.cfg new file mode 100644 index 00000000..36e9e14f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/msvc.cfg @@ -0,0 +1,7 @@ +# bug 633 +set COMMENT __stdcall +set COMMENT __clrcall +set COMMENT __fastcall +set COMMENT __thiscall +set COMMENT __vectorcall +set COMMENT __cdecl diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/objc.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/objc.cfg new file mode 100644 index 00000000..d3321f09 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/objc.cfg @@ -0,0 +1,138 @@ +# +# uncrustify config file for objective-c and objective-c++ +# + +indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs +output_tab_size = 4 # new tab size +indent_columns = output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +indent_align_assign = FALSE + +# +# Indenting +# + +# indent_brace = 0 +indent_switch_case = indent_columns + +# +# Inter-symbol newlines +# + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = remove # "do {" vs "do \n {" +nl_if_brace = remove # "if () {" vs "if () \n {" +nl_for_brace = remove # "for () {" vs "for () \n {" +nl_else_brace = remove # "else {" vs "else \n {" +nl_while_brace = remove # "while () {" vs "while () \n {" +nl_switch_brace = remove # "switch () {" vs "switch () \n {" +nl_brace_while = remove # "} while" vs "} \n while" - cuddle while +nl_brace_else = remove # "} else" vs "} \n else" - cuddle else +nl_func_var_def_blk = 1 +nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{" +nl_fdef_brace = remove # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE; +# nl_before_case = 1 + + +# +# Source code modifications +# + +mod_paren_on_return = ignore # "return 1;" vs "return (1);" +mod_full_brace_if = ignore # "if (a) a--;" vs "if (a) { a--; }" +mod_full_brace_for = add # "for () a--;" vs "for () { a--; }" +mod_full_brace_do = ignore # "do a--; while ();" vs "do { a--; } while ();" +mod_full_brace_while = remove # "while (a) a--;" vs "while (a) { a--; }" +mod_full_brace_nl = 3 # don't remove if more than 3 newlines +mod_add_long_ifdef_endif_comment = 20 +mod_add_long_ifdef_else_comment = mod_add_long_ifdef_endif_comment +mod_add_long_switch_closebrace_comment = mod_add_long_ifdef_endif_comment +mod_add_long_function_closebrace_comment = mod_add_long_ifdef_endif_comment + +# +# Inter-character spacing options +# + +# sp_return_paren = force # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = add # "{ 1 }" vs "{1}" +sp_inside_braces_struct = add # "{ 1 }" vs "{1}" +sp_inside_braces_enum = add # "{ 1 }" vs "{1}" +sp_inside_fparen = remove # "func( param )" vs "func(param)" +sp_paren_brace = force +sp_assign = add +sp_arith = add +sp_bool = add +sp_compare = add +sp_after_comma = add +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" +sp_before_ptr_star = force +sp_after_ptr_star = force +sp_before_unnamed_ptr_star = ignore +sp_between_ptr_star = remove +sp_after_ptr_star_func = force +sp_before_ptr_star_func = force +sp_cmt_cpp_start = add +sp_cond_question = force +sp_cond_colon = force +sp_else_brace = force +sp_brace_else = force +sp_after_class_colon = force +sp_before_class_colon = force +sp_before_case_colon = remove +# Objective-C specifics +sp_before_oc_colon = remove +sp_after_oc_colon = remove +sp_after_oc_scope = force +sp_after_oc_type = remove +sp_after_oc_return_type = force +sp_before_send_oc_colon = remove +sp_after_send_oc_colon = remove +sp_after_oc_at_sel = remove +sp_before_oc_block_caret = ignore +sp_after_oc_block_caret = remove + +# +# Aligning stuff +# + +align_with_tabs = False # use tabs to align +align_on_tabstop = False # align on tabstops +# align_keep_tabs = True +align_enum_equ_span = 4 # '=' in enum definition +# align_nl_cont = True +# align_var_def_span = 2 +# align_var_def_inline = True +# align_var_def_star = False +# align_var_def_colon = True +# align_assign_span = 1 +align_struct_init_span = 4 # align stuff in a structure init '= { }' +align_right_cmt_span = 8 +align_right_cmt_gap = 8 +align_pp_define_span = 8 +#align_pp_define_gap = 8 +align_oc_msg_colon_span = 1 # align parameters in an Obj-C message on the ':' but stop after this many lines (0=don't align) +align_oc_msg_spec_span = 0 # the span for aligning ObjC msg spec (0=don't align) + +# +# Line Splitting options +# + +# ls_func_split_full = True # Whether to fully split long function protos/calls at commas + +# +# Comment modifications +# + +cmt_star_cont = True # Whether to put a star on subsequent comment lines + + + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/sun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/sun.cfg new file mode 100644 index 00000000..21e839ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/sun.cfg @@ -0,0 +1,1801 @@ +# Uncrustify 0.62 + +# +# Sun C/C++/Java +# https://www.cis.upenn.edu/~lee/06cse480/data/cstyle.ms.pdf +# http://www.oracle.com/technetwork/java/codeconventions-150003.pdf +# + +# The type of line endings +newlines = auto # auto/lf/crlf/cr + +# The original size of tabs in the input +input_tab_size = 8 # number + +# The size of tabs in the output (only used if align_with_tabs=true) +output_tab_size = 8 # number + +# The ASCII value of the string escape char, usually 92 (\) or 94 (^). (Pawn) +string_escape_char = 92 # number + +# Alternate string escape char for Pawn. Only works right before the quote char. +string_escape_char2 = 0 # number + +# Replace tab characters found in string literals with the escape sequence \t instead. +string_replace_tab_chars = true # false/true + +# 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. +tok_split_gte = false # false/true + +# Override the default ' *INDENT-OFF*' in comments for disabling processing of part of the file. +disable_processing_cmt = "" # string + +# Override the default ' *INDENT-ON*' in comments for enabling processing of part of the file. +enable_processing_cmt = "" # string + +# Enable parsing of digraphs. Default=false +enable_digraphs = false # false/true + +# Control what to do with the UTF-8 BOM (recommend 'remove') +utf8_bom = ignore # ignore/add/remove/force + +# If the file contains bytes with values between 128 and 255, but is not UTF-8, then output as UTF-8 +utf8_byte = false # false/true + +# Force the output encoding to UTF-8 +utf8_force = false # false/true + +# +# Indenting +# + +# The number of columns to indent per level. +# Usually 2, 3, 4, or 8. +indent_columns = 4 # number + +# The continuation indent. If non-zero, this overrides the indent of '(' and '=' continuation indents. +# For FreeBSD, this is set to 4. Negative value is absolute and not increased for each ( level +indent_continue = -4 # number + +# 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 +indent_with_tabs = 2 # number + +# Comments that are not a brace level are indented with tabs on a tabstop. +# Requires indent_with_tabs=2. If false, will use spaces. +indent_cmt_with_tabs = false # false/true + +# Whether to indent strings broken by '\' so that they line up +indent_align_string = false # false/true + +# The number of spaces to indent multi-line XML strings. +# Requires indent_align_string=True +indent_xml_string = 2 # number + +# Spaces to indent '{' from level +indent_brace = 0 # number + +# Whether braces are indented to the body level +indent_braces = false # false/true + +# Disabled indenting function braces if indent_braces is true +indent_braces_no_func = false # false/true + +# Disabled indenting class braces if indent_braces is true +indent_braces_no_class = false # false/true + +# Disabled indenting struct braces if indent_braces is true +indent_braces_no_struct = false # false/true + +# Indent based on the size of the brace parent, i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc. +indent_brace_parent = false # false/true + +# Indent based on the paren open instead of the brace open in '({\n', default is to indent by brace. +indent_paren_open_brace = false # false/true + +# Whether the 'namespace' body is indented +indent_namespace = false # false/true + +# Only indent one namespace and no sub-namespaces. +# Requires indent_namespace=true. +indent_namespace_single_indent = false # false/true + +# The number of spaces to indent a namespace block +indent_namespace_level = 0 # number + +# If the body of the namespace is longer than this number, it won't be indented. +# Requires indent_namespace=true. Default=0 (no limit) +indent_namespace_limit = 0 # number + +# Whether the 'extern "C"' body is indented +indent_extern = false # false/true + +# Whether the 'class' body is indented +indent_class = true # false/true + +# Whether to indent the stuff after a leading base class colon +indent_class_colon = false # false/true + +# Indent based on a class colon instead of the stuff after the colon. +# Requires indent_class_colon=true. Default=false +indent_class_on_colon = false # false/true + +# Whether to indent the stuff after a leading class initializer colon +indent_constr_colon = false # false/true + +# Virtual indent from the ':' for member initializers. Default is 2 +indent_ctor_init_leading = 0 # number + +# Additional indenting for constructor initializer list +indent_ctor_init = 0 # number + +# False=treat 'else\nif' as 'else if' for indenting purposes +# True=indent the 'if' one level +indent_else_if = false # false/true + +# Amount to indent variable declarations after a open brace. neg=relative, pos=absolute +indent_var_def_blk = 0 # number + +# Indent continued variable declarations instead of aligning. +indent_var_def_cont = true # false/true + +# Indent continued shift expressions ('<<' and '>>') instead of aligning. +# Turn align_left_shift off when enabling this. +indent_shift = true # false/true + +# True: force indentation of function definition to start in column 1 +# False: use the default behavior +indent_func_def_force_col1 = false # false/true + +# True: indent continued function call parameters one indent level +# False: align parameters under the open paren +indent_func_call_param = true # false/true + +# Same as indent_func_call_param, but for function defs +indent_func_def_param = true # false/true + +# Same as indent_func_call_param, but for function protos +indent_func_proto_param = true # false/true + +# Same as indent_func_call_param, but for class declarations +indent_func_class_param = true # false/true + +# Same as indent_func_call_param, but for class variable constructors +indent_func_ctor_var_param = true # false/true + +# Same as indent_func_call_param, but for templates +indent_template_param = true # false/true + +# Double the indent for indent_func_xxx_param options +indent_func_param_double = false # false/true + +# Indentation column for standalone 'const' function decl/proto qualifier +indent_func_const = 0 # number + +# Indentation column for standalone 'throw' function decl/proto qualifier +indent_func_throw = 0 # number + +# The number of spaces to indent a continued '->' or '.' +# Usually set to 0, 1, or indent_columns. +indent_member = 4 # number + +# Spaces to indent single line ('//') comments on lines before code +indent_sing_line_comments = 0 # number + +# If set, will indent trailing single line ('//') comments relative +# to the code instead of trying to keep the same absolute column +indent_relative_single_line_comments = false # false/true + +# Spaces to indent 'case' from 'switch' +# Usually 0 or indent_columns. +indent_switch_case = 0 # number + +# Spaces to shift the 'case' line, without affecting any other lines +# Usually 0. +indent_case_shift = 0 # number + +# Spaces to indent '{' from 'case'. +# By default, the brace will appear under the 'c' in case. +# Usually set to 0 or indent_columns. +indent_case_brace = 0 # number + +# Whether to indent comments found in first column +indent_col1_comment = false # false/true + +# How to indent goto labels +# >0: absolute column where 1 is the leftmost column +# <=0: subtract from brace indent +indent_label = -4 # number + +# Same as indent_label, but for access specifiers that are followed by a colon +indent_access_spec = -4 # number + +# Indent the code after an access specifier by one level. +# If set, this option forces 'indent_access_spec=0' +indent_access_spec_body = false # false/true + +# If an open paren is followed by a newline, indent the next line so that it lines up after the open paren (not recommended) +indent_paren_nl = false # false/true + +# 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 +indent_paren_close = 0 # number + +# Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren +indent_comma_paren = false # false/true + +# Controls the indent of a BOOL operator when inside a paren.If TRUE, aligns under the open paren +indent_bool_paren = false # false/true + +# If 'indent_bool_paren' is true, controls the indent of the first expression. If TRUE, aligns the first expression to the following ones +indent_first_bool_expr = false # false/true + +# If an open square is followed by a newline, indent the next line so that it lines up after the open square (not recommended) +indent_square_nl = false # false/true + +# Don't change the relative indent of ESQL/C 'EXEC SQL' bodies +indent_preserve_sql = false # false/true + +# Align continued statements at the '='. Default=True +# If FALSE or the '=' is followed by a newline, the next line is indent one tab. +indent_align_assign = false # false/true + +# If true, the indentation of the chunks after a '=' sequence will be set at +# LHS token indentation column before '='. +indent_off_after_assign = false # true/false + +# Indent OC blocks at brace level instead of usual rules. +indent_oc_block = false # false/true + +# Indent OC blocks in a message relative to the parameter name. +# 0=use indent_oc_block rules, 1+=spaces to indent +indent_oc_block_msg = 0 # number + +# Minimum indent for subsequent parameters +indent_oc_msg_colon = 0 # number + +# If true, prioritize aligning with initial colon (and stripping spaces from lines, if necessary). +# Default is true. +indent_oc_msg_prioritize_first_colon = true # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented the way that Xcode does by default (from keyword if the parameter is on its own line; otherwise, from the previous indentation level). +indent_oc_block_msg_xcode_style = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is relative to a msg keyword. +indent_oc_block_msg_from_keyword = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is relative to a msg colon. +indent_oc_block_msg_from_colon = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the block caret is. +indent_oc_block_msg_from_caret = false # false/true + +# If indent_oc_block_msg and this option are on, blocks will be indented from where the brace is. +indent_oc_block_msg_from_brace = false # false/true + +# When identing after virtual brace open and newline add further spaces to reach this min. indent. +indent_min_vbrace_open = 0 # number + +# TRUE: When identing after virtual brace open and newline add further spaces after regular indent to reach next tabstop. +indent_vbrace_open_on_tabstop = false # false/true + +# +# Spacing options +# + +# Add or remove space around arithmetic operator '+', '-', '/', '*', etc +# also '>>>' '<<' '>>' '%' '|' +sp_arith = force # ignore/add/remove/force + +# Add or remove space around assignment operator '=', '+=', etc +sp_assign = force # ignore/add/remove/force + +# Add or remove space around '=' in C++11 lambda capture specifications. Overrides sp_assign +sp_cpp_lambda_assign = force # ignore/add/remove/force + +# Add or remove space after the capture specification in C++11 lambda. +sp_cpp_lambda_paren = force # ignore/add/remove/force + +# Add or remove space around assignment operator '=' in a prototype +sp_assign_default = force # ignore/add/remove/force + +# Add or remove space before assignment operator '=', '+=', etc. Overrides sp_assign. +sp_before_assign = force # ignore/add/remove/force + +# Add or remove space after assignment operator '=', '+=', etc. Overrides sp_assign. +sp_after_assign = force # ignore/add/remove/force + +# Add or remove space in 'NS_ENUM (' +sp_enum_paren = force # ignore/add/remove/force + +# Add or remove space around assignment '=' in enum +sp_enum_assign = force # ignore/add/remove/force + +# Add or remove space before assignment '=' in enum. Overrides sp_enum_assign. +sp_enum_before_assign = force # ignore/add/remove/force + +# Add or remove space after assignment '=' in enum. Overrides sp_enum_assign. +sp_enum_after_assign = force # ignore/add/remove/force + +# Add or remove space around preprocessor '##' concatenation operator. Default=Add +sp_pp_concat = force # ignore/add/remove/force + +# Add or remove space after preprocessor '#' stringify operator. Also affects the '#@' charizing operator. +sp_pp_stringify = force # ignore/add/remove/force + +# Add or remove space before preprocessor '#' stringify operator as in '#define x(y) L#y'. +sp_before_pp_stringify = force # ignore/add/remove/force + +# Add or remove space around boolean operators '&&' and '||' +sp_bool = force # ignore/add/remove/force + +# Add or remove space around compare operator '<', '>', '==', etc +sp_compare = force # ignore/add/remove/force + +# Add or remove space inside '(' and ')' +sp_inside_paren = remove # ignore/add/remove/force + +# Add or remove space between nested parens: '((' vs ') )' +sp_paren_paren = remove # ignore/add/remove/force + +# Add or remove space between back-to-back parens: ')(' vs ') (' +sp_cparen_oparen = remove # ignore/add/remove/force + +# Whether to balance spaces inside nested parens +sp_balance_nested_parens = false # false/true + +# Add or remove space between ')' and '{' +sp_paren_brace = force # ignore/add/remove/force + +# Add or remove space before pointer star '*' +sp_before_ptr_star = force # ignore/add/remove/force + +# 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_before_unnamed_ptr_star = force # ignore/add/remove/force + +# Add or remove space between pointer stars '*' +sp_between_ptr_star = remove # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a word. +sp_after_ptr_star = remove # ignore/add/remove/force + +# Add or remove space after pointer star '*', if followed by a qualifier. +sp_after_ptr_star_qualifier = force # ignore/add/remove/force + +# Add or remove space after a pointer star '*', if followed by a func proto/def. +sp_after_ptr_star_func = remove # ignore/add/remove/force + +# Add or remove space after a pointer star '*', if followed by an open paren (function types). +sp_ptr_star_paren = remove # ignore/add/remove/force + +# Add or remove space before a pointer star '*', if followed by a func proto/def. +sp_before_ptr_star_func = force # ignore/add/remove/force + +# Add or remove space before a reference sign '&' +sp_before_byref = force # ignore/add/remove/force + +# 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_before_unnamed_byref = force # ignore/add/remove/force + +# Add or remove space after reference sign '&', if followed by a word. +sp_after_byref = remove # ignore/add/remove/force + +# Add or remove space after a reference sign '&', if followed by a func proto/def. +sp_after_byref_func = remove # ignore/add/remove/force + +# Add or remove space before a reference sign '&', if followed by a func proto/def. +sp_before_byref_func = force # ignore/add/remove/force + +# Add or remove space between type and word. Default=Force +sp_after_type = force # ignore/add/remove/force + +# Add or remove space before the paren in the D constructs 'template Foo(' and 'class Foo('. +sp_before_template_paren = remove # ignore/add/remove/force + +# Add or remove space in 'template <' vs 'template<'. +# If set to ignore, sp_before_angle is used. +sp_template_angle = remove # ignore/add/remove/force + +# Add or remove space before '<>' +sp_before_angle = remove # ignore/add/remove/force + +# Add or remove space inside '<' and '>' +sp_inside_angle = remove # ignore/add/remove/force + +# Add or remove space after '<>' +sp_after_angle = force # ignore/add/remove/force + +# Add or remove space between '<>' and '(' as found in 'new List<byte>();' +sp_angle_paren = remove # ignore/add/remove/force + +# Add or remove space between '<>' and a word as in 'List<byte> m;' or 'template <typename T> static ...' +sp_angle_word = force # ignore/add/remove/force + +# Add or remove space between '>' and '>' in '>>' (template stuff C++/C# only). Default=Add +sp_angle_shift = force # ignore/add/remove/force + +# Permit removal of the space between '>>' in 'foo<bar<int> >' (C++11 only). Default=False +# sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = false # false/true + +# Add or remove space before '(' of 'if', 'for', 'switch', 'while', etc. +sp_before_sparen = force # ignore/add/remove/force + +# Add or remove space inside if-condition '(' and ')' +sp_inside_sparen = remove # ignore/add/remove/force + +# Add or remove space before if-condition ')'. Overrides sp_inside_sparen. +sp_inside_sparen_close = remove # ignore/add/remove/force + +# Add or remove space after if-condition '('. Overrides sp_inside_sparen. +sp_inside_sparen_open = remove # ignore/add/remove/force + +# Add or remove space after ')' of 'if', 'for', 'switch', and 'while', etc. +sp_after_sparen = force # ignore/add/remove/force + +# Add or remove space between ')' and '{' of 'if', 'for', 'switch', and 'while', etc. +sp_sparen_brace = force # ignore/add/remove/force + +# Add or remove space between 'invariant' and '(' in the D language. +sp_invariant_paren = remove # ignore/add/remove/force + +# Add or remove space after the ')' in 'invariant (C) c' in the D language. +sp_after_invariant_paren = force # ignore/add/remove/force + +# Add or remove space before empty statement ';' on 'if', 'for' and 'while' +sp_special_semi = remove # ignore/add/remove/force + +# Add or remove space before ';'. Default=Remove +sp_before_semi = remove # ignore/add/remove/force + +# Add or remove space before ';' in non-empty 'for' statements +sp_before_semi_for = remove # ignore/add/remove/force + +# Add or remove space before a semicolon of an empty part of a for statement. +sp_before_semi_for_empty = remove # ignore/add/remove/force + +# Add or remove space after ';', except when followed by a comment. Default=Add +sp_after_semi = force # ignore/add/remove/force + +# Add or remove space after ';' in non-empty 'for' statements. Default=Force +sp_after_semi_for = force # ignore/add/remove/force + +# Add or remove space after the final semicolon of an empty part of a for statement: for ( ; ; <here> ). +sp_after_semi_for_empty = remove # ignore/add/remove/force + +# Add or remove space before '[' (except '[]') +sp_before_square = remove # ignore/add/remove/force + +# Add or remove space before '[]' +sp_before_squares = remove # ignore/add/remove/force + +# Add or remove space inside a non-empty '[' and ']' +sp_inside_square = remove # ignore/add/remove/force + +# Add or remove space after ',' +sp_after_comma = force # ignore/add/remove/force + +# Add or remove space before ',' +sp_before_comma = remove # ignore/add/remove/force + +# Add or remove space between ',' and ']' in multidimensional array type 'int[,,]' +sp_after_mdatype_commas = remove # ignore/add/remove/force + +# Add or remove space between '[' and ',' in multidimensional array type 'int[,,]' +sp_before_mdatype_commas = remove # ignore/add/remove/force + +# Add or remove space between ',' in multidimensional array type 'int[,,]' +sp_between_mdatype_commas = remove # ignore/add/remove/force + +# Add or remove space between an open paren and comma: '(,' vs '( ,' +sp_paren_comma = force # ignore/add/remove/force + +# Add or remove space before the variadic '...' when preceded by a non-punctuator +sp_before_ellipsis = force # ignore/add/remove/force + +# Add or remove space after class ':' +sp_after_class_colon = force # ignore/add/remove/force + +# Add or remove space before class ':' +sp_before_class_colon = remove # ignore/add/remove/force + +# Add or remove space after class constructor ':' +sp_after_constr_colon = force # ignore/add/remove/force + +# Add or remove space before class constructor ':' +sp_before_constr_colon = remove # ignore/add/remove/force + +# Add or remove space before case ':'. Default=Remove +sp_before_case_colon = remove # ignore/add/remove/force + +# Add or remove space between 'operator' and operator sign +sp_after_operator = force # ignore/add/remove/force + +# Add or remove space between the operator symbol and the open paren, as in 'operator ++(' +sp_after_operator_sym = remove # ignore/add/remove/force + +# 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_cast = remove # ignore/add/remove/force + +# Add or remove spaces inside cast parens +sp_inside_paren_cast = remove # ignore/add/remove/force + +# Add or remove space between the type and open paren in a C++ cast, i.e. 'int(exp)' vs 'int (exp)' +sp_cpp_cast_paren = remove # ignore/add/remove/force + +# Add or remove space between 'sizeof' and '(' +sp_sizeof_paren = force # ignore/add/remove/force + +# Add or remove space after the tag keyword (Pawn) +sp_after_tag = force # ignore/add/remove/force + +# Add or remove space inside enum '{' and '}' +sp_inside_braces_enum = force # ignore/add/remove/force + +# Add or remove space inside struct/union '{' and '}' +sp_inside_braces_struct = force # ignore/add/remove/force + +# Add or remove space inside '{' and '}' +sp_inside_braces = force # ignore/add/remove/force + +# Add or remove space inside '{}' +sp_inside_braces_empty = remove # ignore/add/remove/force + +# Add or remove space between return type and function name +# A minimum of 1 is forced except for pointer return types. +sp_type_func = remove # ignore/add/remove/force + +# Add or remove space between function name and '(' on function declaration +sp_func_proto_paren = remove # ignore/add/remove/force + +# Add or remove space between function name and '(' on function definition +sp_func_def_paren = remove # ignore/add/remove/force + +# Add or remove space inside empty function '()' +sp_inside_fparens = remove # ignore/add/remove/force + +# Add or remove space inside function '(' and ')' +sp_inside_fparen = remove # ignore/add/remove/force + +# Add or remove space inside the first parens in the function type: 'void (*x)(...)' +sp_inside_tparen = remove # ignore/add/remove/force + +# Add or remove between the parens in the function type: 'void (*x)(...)' +sp_after_tparen_close = remove # ignore/add/remove/force + +# Add or remove space between ']' and '(' when part of a function call. +sp_square_fparen = remove # ignore/add/remove/force + +# Add or remove space between ')' and '{' of function +sp_fparen_brace = force # ignore/add/remove/force + +# Java: Add or remove space between ')' and '{{' of double brace initializer. +sp_fparen_dbrace = force # ignore/add/remove/force + +# Add or remove space between function name and '(' on function calls +sp_func_call_paren = remove # ignore/add/remove/force + +# 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_func_call_paren_empty = remove # ignore/add/remove/force + +# 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_func_call_user_paren = remove # ignore/add/remove/force + +# Add or remove space between a constructor/destructor and the open paren +sp_func_class_paren = remove # ignore/add/remove/force + +# Add or remove space between 'return' and '(' +sp_return_paren = force # ignore/add/remove/force + +# Add or remove space between '__attribute__' and '(' +sp_attribute_paren = force # ignore/add/remove/force + +# Add or remove space between 'defined' and '(' in '#if defined (FOO)' +sp_defined_paren = remove # ignore/add/remove/force + +# Add or remove space between 'throw' and '(' in 'throw (something)' +sp_throw_paren = force # ignore/add/remove/force + +# Add or remove space between 'throw' and anything other than '(' as in '@throw [...];' +sp_after_throw = force # ignore/add/remove/force + +# Add or remove space between 'catch' and '(' in 'catch (something) { }' +# If set to ignore, sp_before_sparen is used. +sp_catch_paren = force # ignore/add/remove/force + +# Add or remove space between 'version' and '(' in 'version (something) { }' (D language) +# If set to ignore, sp_before_sparen is used. +sp_version_paren = force # ignore/add/remove/force + +# Add or remove space between 'scope' and '(' in 'scope (something) { }' (D language) +# If set to ignore, sp_before_sparen is used. +sp_scope_paren = force # ignore/add/remove/force + +# Add or remove space between macro and value +sp_macro = force # ignore/add/remove/force + +# Add or remove space between macro function ')' and value +sp_macro_func = force # ignore/add/remove/force + +# Add or remove space between 'else' and '{' if on the same line +sp_else_brace = force # ignore/add/remove/force + +# Add or remove space between '}' and 'else' if on the same line +sp_brace_else = force # ignore/add/remove/force + +# Add or remove space between '}' and the name of a typedef on the same line +sp_brace_typedef = force # ignore/add/remove/force + +# Add or remove space between 'catch' and '{' if on the same line +sp_catch_brace = force # ignore/add/remove/force + +# Add or remove space between '}' and 'catch' if on the same line +sp_brace_catch = force # ignore/add/remove/force + +# Add or remove space between 'finally' and '{' if on the same line +sp_finally_brace = force # ignore/add/remove/force + +# Add or remove space between '}' and 'finally' if on the same line +sp_brace_finally = force # ignore/add/remove/force + +# Add or remove space between 'try' and '{' if on the same line +sp_try_brace = force # ignore/add/remove/force + +# Add or remove space between get/set and '{' if on the same line +sp_getset_brace = force # ignore/add/remove/force + +# Add or remove space between a variable and '{' for C++ uniform initialization +sp_word_brace = force # ignore/add/remove/force + +# Add or remove space between a variable and '{' for a namespace +sp_word_brace_ns = force # ignore/add/remove/force + +# Add or remove space before the '::' operator +sp_before_dc = remove # ignore/add/remove/force + +# Add or remove space after the '::' operator +sp_after_dc = remove # ignore/add/remove/force + +# Add or remove around the D named array initializer ':' operator +sp_d_array_colon = force # ignore/add/remove/force + +# Add or remove space after the '!' (not) operator. Default=Remove +sp_not = remove # ignore/add/remove/force + +# Add or remove space after the '~' (invert) operator. Default=Remove +sp_inv = remove # ignore/add/remove/force + +# 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_addr = remove # ignore/add/remove/force + +# Add or remove space around the '.' or '->' operators. Default=Remove +sp_member = remove # ignore/add/remove/force + +# 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_deref = remove # ignore/add/remove/force + +# Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. Default=Remove +sp_sign = remove # ignore/add/remove/force + +# Add or remove space before or after '++' and '--', as in '(--x)' or 'y++;'. Default=Remove +sp_incdec = remove # ignore/add/remove/force + +# Add or remove space before a backslash-newline at the end of a line. Default=Add +sp_before_nl_cont = force # ignore/add/remove/force + +# Add or remove space after the scope '+' or '-', as in '-(void) foo;' or '+(int) bar;' +sp_after_oc_scope = remove # ignore/add/remove/force + +# Add or remove space after the colon in message specs +# '-(int) f:(int) x;' vs '-(int) f: (int) x;' +sp_after_oc_colon = force # ignore/add/remove/force + +# Add or remove space before the colon in message specs +# '-(int) f: (int) x;' vs '-(int) f : (int) x;' +sp_before_oc_colon = force # ignore/add/remove/force + +# Add or remove space after the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};' +sp_after_oc_dict_colon = force # ignore/add/remove/force + +# Add or remove space before the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};' +sp_before_oc_dict_colon = force # ignore/add/remove/force + +# Add or remove space after the colon in message specs +# '[object setValue:1];' vs '[object setValue: 1];' +sp_after_send_oc_colon = force # ignore/add/remove/force + +# Add or remove space before the colon in message specs +# '[object setValue:1];' vs '[object setValue :1];' +sp_before_send_oc_colon = remove # ignore/add/remove/force + +# Add or remove space after the (type) in message specs +# '-(int)f: (int) x;' vs '-(int)f: (int)x;' +sp_after_oc_type = remove # ignore/add/remove/force + +# Add or remove space after the first (type) in message specs +# '-(int) f:(int)x;' vs '-(int)f:(int)x;' +sp_after_oc_return_type = remove # ignore/add/remove/force + +# Add or remove space between '@selector' and '(' +# '@selector(msgName)' vs '@selector (msgName)' +# Also applies to @protocol() constructs +sp_after_oc_at_sel = remove # ignore/add/remove/force + +# Add or remove space between '@selector(x)' and the following word +# '@selector(foo) a:' vs '@selector(foo)a:' +sp_after_oc_at_sel_parens = force # ignore/add/remove/force + +# Add or remove space inside '@selector' parens +# '@selector(foo)' vs '@selector( foo )' +# Also applies to @protocol() constructs +sp_inside_oc_at_sel_parens = remove # ignore/add/remove/force + +# Add or remove space before a block pointer caret +# '^int (int arg){...}' vs. ' ^int (int arg){...}' +sp_before_oc_block_caret = remove # ignore/add/remove/force + +# Add or remove space after a block pointer caret +# '^int (int arg){...}' vs. '^ int (int arg){...}' +sp_after_oc_block_caret = remove # ignore/add/remove/force + +# Add or remove space between the receiver and selector in a message. +# '[receiver selector ...]' +sp_after_oc_msg_receiver = remove # ignore/add/remove/force + +# Add or remove space after @property. +sp_after_oc_property = force # ignore/add/remove/force + +# Add or remove space around the ':' in 'b ? t : f' +sp_cond_colon = force # ignore/add/remove/force + +# Add or remove space before the ':' in 'b ? t : f'. Overrides sp_cond_colon. +sp_cond_colon_before = force # ignore/add/remove/force + +# Add or remove space after the ':' in 'b ? t : f'. Overrides sp_cond_colon. +sp_cond_colon_after = force # ignore/add/remove/force + +# Add or remove space around the '?' in 'b ? t : f' +sp_cond_question = force # ignore/add/remove/force + +# Add or remove space before the '?' in 'b ? t : f'. Overrides sp_cond_question. +sp_cond_question_before = force # ignore/add/remove/force + +# Add or remove space after the '?' in 'b ? t : f'. Overrides sp_cond_question. +sp_cond_question_after = force # ignore/add/remove/force + +# In the abbreviated ternary form (a ?: b), add/remove space between ? and :.'. Overrides all other sp_cond_* options. +sp_cond_ternary_short = force # ignore/add/remove/force + +# Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make sense here. +sp_case_label = force # ignore/add/remove/force + +# Control the space around the D '..' operator. +sp_range = force # ignore/add/remove/force + +# Control the spacing after ':' in 'for (TYPE VAR : EXPR)' +sp_after_for_colon = force # ignore/add/remove/force + +# Control the spacing before ':' in 'for (TYPE VAR : EXPR)' +sp_before_for_colon = force # ignore/add/remove/force + +# Control the spacing in 'extern (C)' (D) +sp_extern_paren = force # ignore/add/remove/force + +# Control the space after the opening of a C++ comment '// A' vs '//A' +sp_cmt_cpp_start = force # ignore/add/remove/force + +# TRUE: If space is added with sp_cmt_cpp_start, do it after doxygen sequences like '///', '///<', '//!' and '//!<'. +sp_cmt_cpp_doxygen = false # false/true + +# TRUE: If space is added with sp_cmt_cpp_start, do it after Qt translator or meta-data comments like '//:', '//=', and '//~'. +sp_cmt_cpp_qttr = false # false/true + +# Controls the spaces between #else or #endif and a trailing comment +sp_endif_cmt = force # ignore/add/remove/force + +# Controls the spaces after 'new', 'delete' and 'delete[]' +sp_after_new = force # ignore/add/remove/force + +# Controls the spaces between new and '(' in 'new()' +sp_between_new_paren = remove # ignore/add/remove/force + +# Controls the spaces before a trailing or embedded comment +sp_before_tr_emb_cmt = force # ignore/add/remove/force + +# Number of spaces before a trailing or embedded comment +sp_num_before_tr_emb_cmt = 0 # number + +# Control space between a Java annotation and the open paren. +sp_annotation_paren = remove # ignore/add/remove/force + +# +# Code alignment (not left column spaces/tabs) +# + +# Whether to keep non-indenting tabs +align_keep_tabs = false # false/true + +# Whether to use tabs for aligning +align_with_tabs = true # false/true + +# Whether to bump out to the next tab when aligning +align_on_tabstop = true # false/true + +# Whether to right-align numbers +align_number_right = true # false/true + +# Whether to keep whitespace not required for alignment. +align_keep_extra_space = false # false/true + +# Align variable definitions in prototypes and functions +align_func_params = false # false/true + +# Align parameters in single-line functions that have the same name. +# The function names must already be aligned with each other. +align_same_func_call_params = false # false/true + +# The span for aligning parameters in single line functions with the same name (0=don't align). +align_same_func_call_params_span = 0 # unsigned number + +# The thresh for aligning function call parameters (0=no limit). +align_same_func_call_params_thresh = 0 # unsigned number + +# The span for aligning variable definitions (0=don't align) +align_var_def_span = 0 # number + +# 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;' +align_var_def_star_style = 1 # number + +# How to align the '&' in variable definitions. +# 0=Part of the type +# 1=Part of the variable +# 2=Dangling +align_var_def_amp_style = 1 # number + +# The threshold for aligning variable definitions (0=no limit) +align_var_def_thresh = 10 # number + +# The gap for aligning variable definitions +align_var_def_gap = 0 # number + +# Whether to align the colon in struct bit fields +align_var_def_colon = false # false/true + +# Whether to align any attribute after the variable name +align_var_def_attribute = false # false/true + +# Whether to align inline struct/enum/union variable definitions +align_var_def_inline = false # false/true + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 0 # number + +# The threshold for aligning on '=' in assignments (0=no limit) +align_assign_thresh = 0 # number + +# The span for aligning on '=' in enums (0=don't align) +align_enum_equ_span = 0 # number + +# The threshold for aligning on '=' in enums (0=no limit) +align_enum_equ_thresh = 0 # number + +# The span for aligning struct/union (0=don't align) +align_var_struct_span = 0 # number + +# The threshold for aligning struct/union member definitions (0=no limit) +align_var_struct_thresh = 0 # number + +# The gap for aligning struct/union member definitions +align_var_struct_gap = 0 # number + +# The span for aligning struct initializer values (0=don't align) +align_struct_init_span = 0 # number + +# The minimum space between the type and the synonym of a typedef +align_typedef_gap = 1 # number + +# The span for aligning single-line typedefs (0=don't align) +align_typedef_span = 0 # number + +# 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 +align_typedef_func = 0 # number + +# 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; +align_typedef_star_style = 1 # number + +# 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; +align_typedef_amp_style = 1 # number + +# The span for aligning comments that end lines (0=don't align) +align_right_cmt_span = 4 # number + +# If aligning comments, mix with comments after '}' and #endif with less than 3 spaces before the comment +align_right_cmt_mix = false # false/true + +# 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. +align_right_cmt_gap = 1 # number + +# Align trailing comment at or beyond column N; 'pulls in' comments as a bonus side effect (0=ignore) +align_right_cmt_at_col = 41 # number + +# The span for aligning function prototypes (0=don't align) +align_func_proto_span = 0 # number + +# Minimum gap between the return type and the function name. +align_func_proto_gap = 0 # number + +# Align function protos on the 'operator' keyword instead of what follows +align_on_operator = false # false/true + +# Whether to mix aligning prototype and variable declarations. +# If true, align_var_def_XXX options are used instead of align_func_proto_XXX options. +align_mix_var_proto = false # false/true + +# Align single-line functions with function prototypes, uses align_func_proto_span +align_single_line_func = true # false/true + +# Aligning the open brace of single-line functions. +# Requires align_single_line_func=true, uses align_func_proto_span +align_single_line_brace = false # false/true + +# Gap for align_single_line_brace. +align_single_line_brace_gap = 0 # number + +# The span for aligning ObjC msg spec (0=don't align) +align_oc_msg_spec_span = 1 # number + +# Whether to align macros wrapped with a backslash and a newline. +# This will not work right if the macro contains a multi-line comment. +align_nl_cont = false # false/true + +# # Align macro functions and variables together +align_pp_define_together = true # false/true + +# The minimum space between label and value of a preprocessor define +align_pp_define_gap = 1 # number + +# The span for aligning on '#define' bodies (0=don't align, other=number of lines including comments between blocks) +align_pp_define_span = 8 # number + +# Align lines that start with '<<' with previous '<<'. Default=true +align_left_shift = false # false/true + +# Align text after asm volatile () colons. +align_asm_colon = true # false/true + +# Span for aligning parameters in an Obj-C message call on the ':' (0=don't align) +align_oc_msg_colon_span = 0 # number + +# If true, always align with the first parameter, even if it is too short. +align_oc_msg_colon_first = false # false/true + +# Aligning parameters in an Obj-C '+' or '-' declaration on the ':' +align_oc_decl_colon = false # false/true + +# +# Newline adding and removing options +# + +# Whether to collapse empty blocks between '{' and '}' +nl_collapse_empty_body = true # false/true + +# Don't split one-line braced assignments - 'foo_t f = { 1, 2 };' +nl_assign_leave_one_liners = true # false/true + +# Don't split one-line braced statements inside a class xx { } body +nl_class_leave_one_liners = true # false/true + +# Don't split one-line enums: 'enum foo { BAR = 15 };' +nl_enum_leave_one_liners = true # false/true + +# Don't split one-line get or set functions +nl_getset_leave_one_liners = true # false/true + +# Don't split one-line function definitions - 'int foo() { return 0; }' +nl_func_leave_one_liners = true # false/true + +# Don't split one-line C++11 lambdas - '[]() { return 0; }' +nl_cpp_lambda_leave_one_liners = true # false/true + +# Don't split one-line if/else statements - 'if(a) b++;' +nl_if_leave_one_liners = false # false/true + +# Don't split one-line while statements - 'while(a) b++;' +nl_while_leave_one_liners = false # false/true + +# Don't split one-line OC messages +nl_oc_msg_leave_one_liner = true # false/true + +# Add or remove newlines at the start of the file +nl_start_of_file = remove # ignore/add/remove/force + +# The number of newlines at the start of the file (only used if nl_start_of_file is 'add' or 'force' +nl_start_of_file_min = 0 # number + +# Add or remove newline at the end of the file +nl_end_of_file = force # ignore/add/remove/force + +# The number of newlines at the end of the file (only used if nl_end_of_file is 'add' or 'force') +nl_end_of_file_min = 1 # number + +# Add or remove newline between '=' and '{' +nl_assign_brace = remove # ignore/add/remove/force + +# Add or remove newline between '=' and '[' (D only) +nl_assign_square = remove # ignore/add/remove/force + +# Add or remove newline after '= [' (D only). Will also affect the newline before the ']' +nl_after_square_assign = remove # ignore/add/remove/force + +# The number of blank lines after a block of variable definitions at the top of a function body +# 0 = No change (default) +nl_func_var_def_blk = 1 # number + +# The number of newlines before a block of typedefs +# 0 = No change (default) +# the option 'nl_after_access_spec' takes preference over 'nl_typedef_blk_start' +nl_typedef_blk_start = 2 # number + +# The number of newlines after a block of typedefs +# 0 = No change (default) +nl_typedef_blk_end = 2 # number + +# The maximum consecutive newlines within a block of typedefs +# 0 = No change (default) +nl_typedef_blk_in = 1 # number + +# The number of newlines before a block of variable definitions not at the top of a function body +# 0 = No change (default) +# the option 'nl_after_access_spec' takes preference over 'nl_var_def_blk_start' +nl_var_def_blk_start = 2 # number + +# The number of newlines after a block of variable definitions not at the top of a function body +# 0 = No change (default) +nl_var_def_blk_end = 2 # number + +# The maximum consecutive newlines within a block of variable definitions +# 0 = No change (default) +nl_var_def_blk_in = 1 # number + +# Add or remove newline between a function call's ')' and '{', as in: +# list_for_each(item, &list) { } +nl_fcall_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'enum' and '{' +nl_enum_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'struct and '{' +nl_struct_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'union' and '{' +nl_union_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'if' and '{' +nl_if_brace = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'else' +nl_brace_else = remove # ignore/add/remove/force + +# Add or remove newline between 'else if' and '{' +# If set to ignore, nl_if_brace is used instead +nl_elseif_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'else' and '{' +nl_else_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'else' and 'if' +nl_else_if = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'finally' +nl_brace_finally = remove # ignore/add/remove/force + +# Add or remove newline between 'finally' and '{' +nl_finally_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'try' and '{' +nl_try_brace = remove # ignore/add/remove/force + +# Add or remove newline between get/set and '{' +nl_getset_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'for' and '{' +nl_for_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'catch' and '{' +nl_catch_brace = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'catch' +nl_brace_catch = remove # ignore/add/remove/force + +# Add or remove newline between '}' and ']' +nl_brace_square = remove # ignore/add/remove/force + +# Add or remove newline between '}' and ')' in a function invocation +nl_brace_fparen = remove # ignore/add/remove/force + +# Add or remove newline between 'while' and '{' +nl_while_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'scope (x)' and '{' (D) +nl_scope_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'unittest' and '{' (D) +nl_unittest_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'version (x)' and '{' (D) +nl_version_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'using' and '{' +nl_using_brace = remove # ignore/add/remove/force + +# Add or remove newline between two open or close braces. +# Due to general newline/brace handling, REMOVE may not work. +nl_brace_brace = force # ignore/add/remove/force + +# Add or remove newline between 'do' and '{' +nl_do_brace = remove # ignore/add/remove/force + +# Add or remove newline between '}' and 'while' of 'do' statement +nl_brace_while = remove # ignore/add/remove/force + +# Add or remove newline between 'switch' and '{' +nl_switch_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'synchronized' and '{' +nl_synchronized_brace = remove # ignore/add/remove/force + +# 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. +nl_multi_line_cond = false # false/true + +# Force a newline in a define after the macro name for multi-line defines. +nl_multi_line_define = false # false/true + +# Whether to put a newline before 'case' statement, not after the first 'case' +nl_before_case = false # false/true + +# Add or remove newline between ')' and 'throw' +nl_before_throw = force # ignore/add/remove/force + +# Whether to put a newline after 'case' statement +nl_after_case = true # false/true + +# Add or remove a newline between a case ':' and '{'. Overrides nl_after_case. +nl_case_colon_brace = remove # ignore/add/remove/force + +# Newline between namespace and { +nl_namespace_brace = remove # ignore/add/remove/force + +# Add or remove newline between 'template<>' and whatever follows. +nl_template_class = force # ignore/add/remove/force + +# Add or remove newline between 'class' and '{' +nl_class_brace = remove # ignore/add/remove/force + +# Add or remove newline before/after each ',' in the base class list, +# (tied to pos_class_comma). +nl_class_init_args = remove # ignore/add/remove/force + +# Add or remove newline after each ',' in the constructor member initialization. +# Related to nl_constr_colon, pos_constr_colon and pos_constr_comma. +nl_constr_init_args = remove # ignore/add/remove/force + +# Add or remove newline between return type and function name in a function definition +nl_func_type_name = remove # ignore/add/remove/force + +# 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. +nl_func_type_name_class = remove # ignore/add/remove/force + +# Add or remove newline between function scope and name +# Controls the newline after '::' in 'void A::f() { }' +nl_func_scope_name = remove # ignore/add/remove/force + +# Add or remove newline between return type and function name in a prototype +nl_func_proto_type_name = remove # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the declaration +nl_func_paren = remove # ignore/add/remove/force + +# Add or remove newline between a function name and the opening '(' in the definition +nl_func_def_paren = remove # ignore/add/remove/force + +# Add or remove newline after '(' in a function declaration +nl_func_decl_start = remove # ignore/add/remove/force + +# Add or remove newline after '(' in a function definition +nl_func_def_start = remove # ignore/add/remove/force + +# Overrides nl_func_decl_start when there is only one parameter. +nl_func_decl_start_single = remove # ignore/add/remove/force + +# Overrides nl_func_def_start when there is only one parameter. +nl_func_def_start_single = remove # ignore/add/remove/force + +# Add or remove newline after each ',' in a function declaration +nl_func_decl_args = remove # ignore/add/remove/force + +# Add or remove newline after each ',' in a function definition +nl_func_def_args = remove # ignore/add/remove/force + +# Add or remove newline before the ')' in a function declaration +nl_func_decl_end = remove # ignore/add/remove/force + +# Add or remove newline before the ')' in a function definition +nl_func_def_end = remove # ignore/add/remove/force + +# Overrides nl_func_decl_end when there is only one parameter. +nl_func_decl_end_single = remove # ignore/add/remove/force + +# Overrides nl_func_def_end when there is only one parameter. +nl_func_def_end_single = remove # ignore/add/remove/force + +# Add or remove newline between '()' in a function declaration. +nl_func_decl_empty = remove # ignore/add/remove/force + +# Add or remove newline between '()' in a function definition. +nl_func_def_empty = remove # ignore/add/remove/force + +# Whether to put each OC message parameter on a separate line +# See nl_oc_msg_leave_one_liner +nl_oc_msg_args = false # false/true + +# Add or remove newline between function signature and '{' +nl_fdef_brace = remove # ignore/add/remove/force + +# Add or remove newline between C++11 lambda signature and '{' +nl_cpp_ldef_brace = remove # ignore/add/remove/force + +# Add or remove a newline between the return keyword and return expression. +nl_return_expr = remove # ignore/add/remove/force + +# Whether to put a newline after semicolons, except in 'for' statements +nl_after_semicolon = true # false/true + +# Java: Control the newline between the ')' and '{{' of the double brace initializer. +nl_paren_dbrace_open = remove # ignore/add/remove/force + +# Whether to put a newline after brace open. +# This also adds a newline before the matching brace close. +nl_after_brace_open = true # false/true + +# 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. +nl_after_brace_open_cmt = false # false/true + +# 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. +nl_after_vbrace_open = true # false/true + +# 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. +nl_after_vbrace_open_empty = true # false/true + +# Whether to put a newline after a brace close. +# Does not apply if followed by a necessary ';'. +nl_after_brace_close = true # false/true + +# Whether to put a newline after a virtual brace close. +# Would add a newline before return in: 'if (foo) a++; return;' +nl_after_vbrace_close = true # false/true + +# Control the newline between the close brace and 'b' in: 'struct { int a; } b;' +# Affects enums, unions and structures. If set to ignore, uses nl_after_brace_close +nl_brace_struct_var = remove # ignore/add/remove/force + +# Whether to alter newlines in '#define' macros +nl_define_macro = false # false/true + +# Whether to not put blanks after '#ifxx', '#elxx', or before '#endif'. Does not affect the whole-file #ifdef. +nl_squeeze_ifdef = true # false/true + +# Add or remove blank line before 'if' +nl_before_if = remove # ignore/add/remove/force + +# Add or remove blank line after 'if' statement +nl_after_if = remove # ignore/add/remove/force + +# Add or remove blank line before 'for' +nl_before_for = remove # ignore/add/remove/force + +# Add or remove blank line after 'for' statement +nl_after_for = remove # ignore/add/remove/force + +# Add or remove blank line before 'while' +nl_before_while = remove # ignore/add/remove/force + +# Add or remove blank line after 'while' statement +nl_after_while = remove # ignore/add/remove/force + +# Add or remove blank line before 'switch' +nl_before_switch = remove # ignore/add/remove/force + +# Add or remove blank line after 'switch' statement +nl_after_switch = remove # ignore/add/remove/force + +# Add or remove blank line before 'synchronized' +nl_before_synchronized = remove # ignore/add/remove/force + +# Add or remove blank line after 'synchronized' statement +nl_after_synchronized = remove # ignore/add/remove/force + +# Add or remove blank line before 'do' +nl_before_do = remove # ignore/add/remove/force + +# Add or remove blank line after 'do/while' statement +nl_after_do = remove # ignore/add/remove/force + +# Whether to double-space commented-entries in struct/union/enum +nl_ds_struct_enum_cmt = false # false/true + +# force nl before } of a struct/union/enum +# (lower priority than 'eat_blanks_before_close_brace') +nl_ds_struct_enum_close_brace = false # false/true + +# Add or remove a newline before/after a class colon, +# (tied to pos_class_colon). +nl_class_colon = remove # ignore/add/remove/force + +# Add or remove a newline around a class constructor colon. +# Related to nl_constr_init_args, pos_constr_colon and pos_constr_comma. +nl_constr_colon = remove # ignore/add/remove/force + +# Change simple unbraced if statements into a one-liner +# 'if(b)\n i++;' => 'if(b) i++;' +nl_create_if_one_liner = false # false/true + +# 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);' +nl_create_for_one_liner = false # false/true + +# Change simple unbraced while statements into a one-liner +# 'while (i<5)\n foo(i++);' => 'while (i<5) foo(i++);' +nl_create_while_one_liner = false # false/true + +# +# Positioning options +# + +# The position of arithmetic operators in wrapped expressions +pos_arith = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of assignment in wrapped expressions. +# Do not affect '=' followed by '{' +pos_assign = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of boolean operators in wrapped expressions +pos_bool = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of comparison operators in wrapped expressions +pos_compare = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of conditional (b ? t : f) operators in wrapped expressions +pos_conditional = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in wrapped expressions +pos_comma = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in the base class list if there are more than one line, +# (tied to nl_class_init_args). +pos_class_comma = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of the comma in the constructor initialization list. +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_colon. +pos_constr_comma = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of trailing/leading class colon, between class and base class list +# (tied to nl_class_colon). +pos_class_colon = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# The position of colons between constructor and member initialization, +# (tied to UO_nl_constr_colon). +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_comma. +pos_constr_colon = join # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force + +# +# Line Splitting options +# + +# Try to limit code width to N number of columns +code_width = 80 # number + +# Whether to fully split long 'for' statements at semi-colons +ls_for_split_full = false # false/true + +# Whether to fully split long function protos/calls at commas +ls_func_split_full = false # false/true + +# Whether to split lines as close to code_width as possible and ignore some groupings +ls_code_width = true # false/true + +# +# Blank line options +# + +# The maximum consecutive newlines (3 = 2 blank lines) +nl_max = 2 # number + +# The number of newlines after a function prototype, if followed by another function prototype +nl_after_func_proto = 1 # number + +# The number of newlines after a function prototype, if not followed by another function prototype +nl_after_func_proto_group = 2 # number + +# The number of newlines after '}' of a multi-line function body +nl_after_func_body = 2 # number + +# The number of newlines after '}' of a multi-line function body in a class declaration +nl_after_func_body_class = 1 # number + +# The number of newlines after '}' of a single line function body +nl_after_func_body_one_liner = 1 # number + +# The minimum number of newlines before a multi-line comment. +# Doesn't apply if after a brace open or another multi-line comment. +nl_before_block_comment = 2 # number + +# 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. +nl_before_c_comment = 1 # number + +# The minimum number of newlines before a CPP comment. +# Doesn't apply if after a brace open or other CPP comments. +nl_before_cpp_comment = 1 # number + +# Whether to force a newline after a multi-line comment. +nl_after_multiline_comment = true # false/true + +# Whether to force a newline after a label's colon. +nl_after_label_colon = false # false/true + +# The number of newlines after '}' or ';' of a struct/enum/union definition +nl_after_struct = 2 # number + +# The number of newlines after '}' or ';' of a class definition +nl_after_class = 2 # number + +# The number of newlines after '}' of a namespace +nl_after_namespace = 2 # number + +# 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. +nl_before_access_spec = 2 # number + +# The number of newlines after a 'private:', 'public:', 'protected:', 'signals:' or 'slots:' label. +# 0 = No change. +# the option 'nl_after_access_spec' takes preference over 'nl_typedef_blk_start' and 'nl_var_def_blk_start' +nl_after_access_spec = 1 # number + +# The number of newlines between a function def and the function comment. +# 0 = No change. +nl_comment_func_def = 1 # number + +# The number of newlines after a try-catch-finally block that isn't followed by a brace close. +# 0 = No change. +nl_after_try_catch_finally = 1 # number + +# The number of newlines before and after a property, indexer or event decl. +# 0 = No change. +nl_around_cs_property = 1 # number + +# The number of newlines between the get/set/add/remove handlers in C#. +# 0 = No change. +nl_between_get_set = 1 # number + +# Add or remove newline between C# property and the '{' +nl_property_brace = remove # ignore/add/remove/force + +# Whether to remove blank lines after '{' +eat_blanks_after_open_brace = true # false/true + +# Whether to remove blank lines before '}' +eat_blanks_before_close_brace = true # false/true + +# How aggressively to remove extra newlines not in preproc. +# 0: No change +# 1: Remove most newlines not handled by other config +# 2: Remove all newlines and reformat completely by config +nl_remove_extra_newlines = 1 # number + +# Whether to put a blank line before 'return' statements, unless after an open brace. +nl_before_return = false # false/true + +# Whether to put a blank line after 'return' statements, unless followed by a close brace. +nl_after_return = false # false/true + +# Whether to put a newline after a Java annotation statement. +# Only affects annotations that are after a newline. +nl_after_annotation = force # ignore/add/remove/force + +# Controls the newline between two annotations. +nl_between_annotation = ignore # ignore/add/remove/force + +# +# Code modifying options (non-whitespace) +# + +# Add or remove braces on single-line 'do' statement +mod_full_brace_do = force # ignore/add/remove/force + +# Add or remove braces on single-line 'for' statement +mod_full_brace_for = remove # ignore/add/remove/force + +# Add or remove braces on single-line function definitions. (Pawn) +mod_full_brace_function = ignore # ignore/add/remove/force + +# Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'. +mod_full_brace_if = remove # ignore/add/remove/force + +# 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. +mod_full_brace_if_chain = true # false/true + +# Don't remove braces around statements that span N newlines +mod_full_brace_nl = 2 # number + +# Add or remove braces on single-line 'while' statement +mod_full_brace_while = remove # ignore/add/remove/force + +# Add or remove braces on single-line 'using ()' statement +mod_full_brace_using = remove # ignore/add/remove/force + +# Add or remove unnecessary paren on 'return' statement +mod_paren_on_return = remove # ignore/add/remove/force + +# Whether to change optional semicolons to real semicolons +mod_pawn_semicolon = false # false/true + +# Add parens on 'while' and 'if' statement around bools +mod_full_paren_if_bool = false # false/true + +# Whether to remove superfluous semicolons +mod_remove_extra_semicolon = true # false/true + +# 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. +mod_add_long_function_closebrace_comment = 0 # number + +# 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. +mod_add_long_namespace_closebrace_comment = 0 # number + +# 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. +mod_add_long_switch_closebrace_comment = 0 # number + +# If an #ifdef body exceeds the specified number of newlines and doesn't have a comment after +# the #endif, a comment will be added. +mod_add_long_ifdef_endif_comment = 0 # number + +# 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_add_long_ifdef_else_comment = 0 # number + +# If TRUE, will sort consecutive single-line 'import' statements [Java, D] +mod_sort_import = true # false/true + +# If TRUE, will sort consecutive single-line 'using' statements [C#] +mod_sort_using = true # false/true + +# 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_include = false # false/true + +# If TRUE, it will move a 'break' that appears after a fully braced 'case' before the close brace. +mod_move_case_break = false # false/true + +# 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. +mod_case_brace = ignore # ignore/add/remove/force + +# If TRUE, it will remove a void 'return;' that appears as the last statement in a function. +mod_remove_empty_return = true # false/true + +# +# Comment modifications +# + +# Try to wrap comments at cmt_width columns +cmt_width = 80 # number + +# 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 +cmt_reflow_mode = 1 # number + +# Whether to convert all tabs to spaces in comments. Default is to leave tabs inside comments alone, unless used for indenting. +cmt_convert_tab_to_spaces = false # false/true + +# If false, disable all multi-line comment changes, including cmt_width. keyword substitution and leading chars. +# Default is true. +cmt_indent_multi = true # false/true + +# Whether to group c-comments that look like they are in a block +cmt_c_group = true # false/true + +# Whether to put an empty '/*' on the first line of the combined c-comment +cmt_c_nl_start = true # false/true + +# Whether to put a newline before the closing '*/' of the combined c-comment +cmt_c_nl_end = true # false/true + +# Whether to group cpp-comments that look like they are in a block +cmt_cpp_group = true # false/true + +# Whether to put an empty '/*' on the first line of the combined cpp-comment +cmt_cpp_nl_start = true # false/true + +# Whether to put a newline before the closing '*/' of the combined cpp-comment +cmt_cpp_nl_end = true # false/true + +# Whether to change cpp-comments into c-comments +cmt_cpp_to_c = false # false/true + +# Whether to put a star on subsequent comment lines +cmt_star_cont = true # false/true + +# The number of spaces to insert at the start of subsequent comment lines +cmt_sp_before_star_cont = 0 # number + +# The number of spaces to insert after the star on subsequent comment lines +cmt_sp_after_star_cont = 0 # number + +# 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 +cmt_multi_check_last = false # false/true + +# 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. +cmt_insert_file_header = "" # string + +# 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. +cmt_insert_file_footer = "" # string + +# 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() { ... } +cmt_insert_func_header = "" # string + +# 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. +cmt_insert_class_header = "" # string + +# The filename that contains text to insert before a Obj-C message specification if the method isn't preceded with a C/C++ comment. +# Will substitute $(message) with the function name and $(javaparam) with the javadoc @param and @return stuff. +cmt_insert_oc_msg_header = "" # string + +# 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. +cmt_insert_before_preproc = false # false/true + +# +# Preprocessor options +# + +# Control indent of preprocessors inside #if blocks at brace level 0 (file-level) +pp_indent = ignore # ignore/add/remove/force + +# Whether to indent #if/#else/#endif at the brace level (true) or from column 1 (false) +pp_indent_at_level = false # false/true + +# Specifies the number of columns to indent preprocessors per level at brace level 0 (file-level). +# If pp_indent_at_level=false, specifies the number of columns to indent preprocessors per level at brace level > 0 (function-level). +# Default=1. +pp_indent_count = 1 # number + +# Add or remove space after # based on pp_level of #if blocks +pp_space = remove # ignore/add/remove/force + +# Sets the number of spaces added with pp_space +pp_space_count = 1 # number + +# The indent for #region and #endregion in C# and '#pragma region' in C/C++ +pp_indent_region = 0 # number + +# Whether to indent the code between #region and #endregion +pp_region_indent_code = false # false/true + +# If pp_indent_at_level=true, sets the indent for #if, #else and #endif when not at file-level. +# 0: indent preprocessors using output_tab_size. +# >0: column at which all preprocessors will be indented. +pp_indent_if = 0 # number + +# Control whether to indent the code between #if, #else and #endif. +pp_if_indent_code = false # false/true + +# Whether to indent '#define' at the brace level (true) or from column 1 (false) +pp_define_at_level = false # false/true + +# Use or Do not Use options +# + +# True: indent_func_call_param will be used +# False: indent_func_call_param will NOT be used +use_indent_func_call_param = true # false/true + +# True: indent_continue will be used only once +# False: indent_continue will be used every time (default) +use_indent_continue_only_once = false # false/true + +# You can force a token to be a type with the 'type' option. +# Example: +# type myfoo1 myfoo2 +# +# You can create custom macro-based indentation using macro-open, +# macro-else and macro-close. +# Example: +# macro-open BEGIN_TEMPLATE_MESSAGE_MAP +# macro-open BEGIN_MESSAGE_MAP +# macro-close END_MESSAGE_MAP +# +# You can assign any keyword to any type with the set option. +# set func_call_user _ N_ +# +# The full syntax description of all custom definition config entries +# is shown below: +# +# define custom tokens as: +# - embed whitespace in token using '' escape character, or +# put token in quotes +# - these: ' " and ` are recognized as quote delimiters +# +# type token1 token2 token3 ... +# ^ optionally specify multiple tokens on a single line +# define def_token output_token +# ^ output_token is optional, then NULL is assumed +# macro-open token +# macro-close token +# macro-else token +# set id token1 token2 ... +# ^ optionally specify multiple tokens on a single line +# ^ id is one of the names in token_enum.h sans the CT_ prefix, +# e.g. PP_PRAGMA +# +# all tokens are separated by any mix of ',' commas, '=' equal signs +# and whitespace (space, tab) +# +# You can add support for other file extensions using the 'file_ext' command. +# The first arg is the language name used with the '-l' option. +# The remaining args are file extensions, matched with 'endswith'. +# file_ext CPP .ch .cxx .cpp.in +# +type byte cchar uchar ushort word uint ulong llong ullong +type int8 uint8 int16 uint16 int32 uint32 int64 uint64 +type FILE size_t ssize_t va_list wchar_t +type BOOL BSTR BYTE CHAR DOUBLE DWORD DWORD64 DWORD_PTR FALSE FLOAT +type HANDLE HKEY HRESULT HWND INT INT8 INT16 INT32 INT64 LONG LONG64 LONG_PTR +type LPARAM LPSTR LPCSTR LPCWSTR LPTSTR LPVOID LPWSTR PSZ SHORT TRUE +type UCHAR UINT UINT8 UINT16 UINT32 UINT64 UINT_PTR ULONG ULONG64 ULONG_PTR +type USHORT WCHAR WORD WORD_PTR WPARAM + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/types.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/types.txt new file mode 100644 index 00000000..0df27c78 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/types.txt @@ -0,0 +1,26 @@ +# +# a simple list of stuff that should be detected as a CT_TYPE +# this usually isn't necessary because types are detected from the context. +# +# In the future, I may allow arbitrary CT_xxx stuff to be specified, as +# well as a language +# + +INT8 +UINT8 +INT16 +UINT16 +INT32 +UINT32 +INT64 +UINT64 +FLOAT +CHAR +DOUBLE +TRUE +FALSE +BOOL +FILE +DIR +bat + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uigui_uncrustify.ini b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uigui_uncrustify.ini new file mode 100644 index 00000000..4257057b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uigui_uncrustify.ini @@ -0,0 +1,6616 @@ +[header] +categories=(0)General options|(17)Spacing options|(240)Indenting options|(338)Newline adding and removing options|(517)Blank line options|(566)Positioning options|(578)Line splitting options|(582)Code alignment options (not left column spaces/tabs)|(649)Comment modification options|(673)Code modifying options (non-whitespace)|(714)Preprocessor options|(729)Sort includes options|(732)Use or Do not Use options|(738)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|*.cp|*.C|*.CPP|*.c++|*.di|*.m|*.mm|*.sqc|*.es +indenterFileName=uncrustify +indenterName=Uncrustify (C, C++, C#, ObjectiveC, D, Java, Pawn, VALA) +inputFileName=indentinput +inputFileParameter="-f " +manual=http://uncrustify.sourceforge.net/config.txt +outputFileName=indentoutput +outputFileParameter="-o " +stringparaminquotes=false +parameterOrder=ipo +showHelpParameter=-h +stringparaminquotes=false +useCfgFileParameter="-c " +version=Uncrustify_d-0.71.0-250-9c62bb00 + +[Newlines] +Category=0 +Description="<html>(0)The type of line endings.<br/><br/>Default: auto</html>" +Enabled=false +EditorType=multiple +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="<html>(1)The original size of tabs in the input.<br/><br/>Default: 8</html>" +Enabled=false +EditorType=numeric +CallName="input_tab_size=" +MinVal=1 +MaxVal=32 +ValueDefault=8 + +[Output Tab Size] +Category=0 +Description="<html>(2)The size of tabs in the output (only used if align_with_tabs=true).<br/><br/>Default: 8</html>" +Enabled=false +EditorType=numeric +CallName="output_tab_size=" +MinVal=1 +MaxVal=32 +ValueDefault=8 + +[String Escape Char] +Category=0 +Description="<html>(3)The ASCII value of the string escape char, usually 92 (\) or (Pawn) 94 (^).<br/><br/>Default: 92</html>" +Enabled=false +EditorType=numeric +CallName="string_escape_char=" +MinVal=0 +MaxVal=255 +ValueDefault=92 + +[String Escape Char2] +Category=0 +Description="<html>(4)Alternate string escape char (usually only used for Pawn).<br/>Only works right before the quote char.</html>" +Enabled=false +EditorType=numeric +CallName="string_escape_char2=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[String Replace Tab Chars] +Category=0 +Description="<html>(5)Replace tab characters found in string literals with the escape sequence \t<br/>instead.</html>" +Enabled=false +EditorType=boolean +TrueFalse=string_replace_tab_chars=true|string_replace_tab_chars=false +ValueDefault=false + +[Tok Split Gte] +Category=0 +Description="<html>(6)Allow interpreting '>=' and '>>=' as part of a template in code like<br/>'void f(list<list<B>>=val);'. If true, 'assert(x<0 && y>=3)' will be broken.<br/>Improvements to template detection may make this option obsolete.</html>" +Enabled=false +EditorType=boolean +TrueFalse=tok_split_gte=true|tok_split_gte=false +ValueDefault=false + +[Disable Processing Nl Cont] +Category=0 +Description="<html>(7)Disable formatting of NL_CONT ('\\n') ended lines (e.g. multiline macros)</html>" +Enabled=false +EditorType=boolean +TrueFalse=disable_processing_nl_cont=true|disable_processing_nl_cont=false +ValueDefault=false + +[Disable Processing Cmt] +Category=0 +Description="<html>(8)Specify the marker used in comments to disable processing of part of the<br/>file.<br/>The comment should be used alone in one line.<br/><br/>Default: *INDENT-OFF*</html>" +Enabled=false +CallName=disable_processing_cmt= +EditorType=string +ValueDefault= *INDENT-OFF* + +[Enable Processing Cmt] +Category=0 +Description="<html>(9)Specify the marker used in comments to (re)enable processing in a file.<br/>The comment should be used alone in one line.<br/><br/>Default: *INDENT-ON*</html>" +Enabled=false +CallName=enable_processing_cmt= +EditorType=string +ValueDefault= *INDENT-ON* + +[Enable Digraphs] +Category=0 +Description="<html>(10)Enable parsing of digraphs.</html>" +Enabled=false +EditorType=boolean +TrueFalse=enable_digraphs=true|enable_digraphs=false +ValueDefault=false + +[Utf8 Bom] +Category=0 +Description="<html>(11)Add or remove the UTF-8 BOM (recommend 'remove').</html>" +Enabled=false +EditorType=multiple +Choices=utf8_bom=ignore|utf8_bom=add|utf8_bom=remove|utf8_bom=force +ChoicesReadable="(11)Ignore Utf8 Bom|(11)Add Utf8 Bom|(11)Remove Utf8 Bom|(11)Force Utf8 Bom" +ValueDefault=ignore + +[Utf8 Byte] +Category=0 +Description="<html>(12)If the file contains bytes with values between 128 and 255, but is not<br/>UTF-8, then output as UTF-8.</html>" +Enabled=false +EditorType=boolean +TrueFalse=utf8_byte=true|utf8_byte=false +ValueDefault=false + +[Utf8 Force] +Category=0 +Description="<html>(13)Force the output encoding to UTF-8.</html>" +Enabled=false +EditorType=boolean +TrueFalse=utf8_force=true|utf8_force=false +ValueDefault=false + +[Sp Do Brace Open] +Category=0 +Description="<html>(14)Add or remove space between 'do' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_do_brace_open=ignore|sp_do_brace_open=add|sp_do_brace_open=remove|sp_do_brace_open=force +ChoicesReadable="(14)Ignore Sp Do Brace Open|(14)Add Sp Do Brace Open|(14)Remove Sp Do Brace Open|(14)Force Sp Do Brace Open" +ValueDefault=ignore + +[Sp Brace Close While] +Category=0 +Description="<html>(15)Add or remove space between '}' and 'while'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_close_while=ignore|sp_brace_close_while=add|sp_brace_close_while=remove|sp_brace_close_while=force +ChoicesReadable="(15)Ignore Sp Brace Close While|(15)Add Sp Brace Close While|(15)Remove Sp Brace Close While|(15)Force Sp Brace Close While" +ValueDefault=ignore + +[Sp While Paren Open] +Category=0 +Description="<html>(16)Add or remove space between 'while' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_while_paren_open=ignore|sp_while_paren_open=add|sp_while_paren_open=remove|sp_while_paren_open=force +ChoicesReadable="(16)Ignore Sp While Paren Open|(16)Add Sp While Paren Open|(16)Remove Sp While Paren Open|(16)Force Sp While Paren Open" +ValueDefault=ignore + +[Sp Arith] +Category=1 +Description="<html>(17)Add or remove space around non-assignment symbolic operators ('+', '/', '%',<br/>'<<', and so forth).</html>" +Enabled=false +EditorType=multiple +Choices=sp_arith=ignore|sp_arith=add|sp_arith=remove|sp_arith=force +ChoicesReadable="(17)Ignore Sp Arith|(17)Add Sp Arith|(17)Remove Sp Arith|(17)Force Sp Arith" +ValueDefault=ignore + +[Sp Arith Additive] +Category=1 +Description="<html>(18)Add or remove space around arithmetic operators '+' and '-'.<br/><br/>Overrides sp_arith.</html>" +Enabled=false +EditorType=multiple +Choices=sp_arith_additive=ignore|sp_arith_additive=add|sp_arith_additive=remove|sp_arith_additive=force +ChoicesReadable="(18)Ignore Sp Arith Additive|(18)Add Sp Arith Additive|(18)Remove Sp Arith Additive|(18)Force Sp Arith Additive" +ValueDefault=ignore + +[Sp Assign] +Category=1 +Description="<html>(19)Add or remove space around assignment operator '=', '+=', etc.</html>" +Enabled=false +EditorType=multiple +Choices=sp_assign=ignore|sp_assign=add|sp_assign=remove|sp_assign=force +ChoicesReadable="(19)Ignore Sp Assign|(19)Add Sp Assign|(19)Remove Sp Assign|(19)Force Sp Assign" +ValueDefault=ignore + +[Sp Cpp Lambda Assign] +Category=1 +Description="<html>(20)Add or remove space around '=' in C++11 lambda capture specifications.<br/><br/>Overrides sp_assign.</html>" +Enabled=false +EditorType=multiple +Choices=sp_cpp_lambda_assign=ignore|sp_cpp_lambda_assign=add|sp_cpp_lambda_assign=remove|sp_cpp_lambda_assign=force +ChoicesReadable="(20)Ignore Sp Cpp Lambda Assign|(20)Add Sp Cpp Lambda Assign|(20)Remove Sp Cpp Lambda Assign|(20)Force Sp Cpp Lambda Assign" +ValueDefault=ignore + +[Sp Cpp Lambda Square Paren] +Category=1 +Description="<html>(21)Add or remove space after the capture specification of a C++11 lambda when<br/>an argument list is present, as in '[] <here> (int x){ ... }'.</html>" +Enabled=false +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 +ChoicesReadable="(21)Ignore Sp Cpp Lambda Square Paren|(21)Add Sp Cpp Lambda Square Paren|(21)Remove Sp Cpp Lambda Square Paren|(21)Force Sp Cpp Lambda Square Paren" +ValueDefault=ignore + +[Sp Cpp Lambda Square Brace] +Category=1 +Description="<html>(22)Add or remove space after the capture specification of a C++11 lambda with<br/>no argument list is present, as in '[] <here> { ... }'.</html>" +Enabled=false +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 +ChoicesReadable="(22)Ignore Sp Cpp Lambda Square Brace|(22)Add Sp Cpp Lambda Square Brace|(22)Remove Sp Cpp Lambda Square Brace|(22)Force Sp Cpp Lambda Square Brace" +ValueDefault=ignore + +[Sp Cpp Lambda Paren Brace] +Category=1 +Description="<html>(23)Add or remove space after the argument list of a C++11 lambda, as in<br/>'[](int x) <here> { ... }'.</html>" +Enabled=false +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 +ChoicesReadable="(23)Ignore Sp Cpp Lambda Paren Brace|(23)Add Sp Cpp Lambda Paren Brace|(23)Remove Sp Cpp Lambda Paren Brace|(23)Force Sp Cpp Lambda Paren Brace" +ValueDefault=ignore + +[Sp Cpp Lambda Fparen] +Category=1 +Description="<html>(24)Add or remove space between a lambda body and its call operator of an<br/>immediately invoked lambda, as in '[]( ... ){ ... } <here> ( ... )'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_cpp_lambda_fparen=ignore|sp_cpp_lambda_fparen=add|sp_cpp_lambda_fparen=remove|sp_cpp_lambda_fparen=force +ChoicesReadable="(24)Ignore Sp Cpp Lambda Fparen|(24)Add Sp Cpp Lambda Fparen|(24)Remove Sp Cpp Lambda Fparen|(24)Force Sp Cpp Lambda Fparen" +ValueDefault=ignore + +[Sp Assign Default] +Category=1 +Description="<html>(25)Add or remove space around assignment operator '=' in a prototype.<br/><br/>If set to ignore, use sp_assign.</html>" +Enabled=false +EditorType=multiple +Choices=sp_assign_default=ignore|sp_assign_default=add|sp_assign_default=remove|sp_assign_default=force +ChoicesReadable="(25)Ignore Sp Assign Default|(25)Add Sp Assign Default|(25)Remove Sp Assign Default|(25)Force Sp Assign Default" +ValueDefault=ignore + +[Sp Before Assign] +Category=1 +Description="<html>(26)Add or remove space before assignment operator '=', '+=', etc.<br/><br/>Overrides sp_assign.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_assign=ignore|sp_before_assign=add|sp_before_assign=remove|sp_before_assign=force +ChoicesReadable="(26)Ignore Sp Before Assign|(26)Add Sp Before Assign|(26)Remove Sp Before Assign|(26)Force Sp Before Assign" +ValueDefault=ignore + +[Sp After Assign] +Category=1 +Description="<html>(27)Add or remove space after assignment operator '=', '+=', etc.<br/><br/>Overrides sp_assign.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_assign=ignore|sp_after_assign=add|sp_after_assign=remove|sp_after_assign=force +ChoicesReadable="(27)Ignore Sp After Assign|(27)Add Sp After Assign|(27)Remove Sp After Assign|(27)Force Sp After Assign" +ValueDefault=ignore + +[Sp Enum Paren] +Category=1 +Description="<html>(28)Add or remove space in 'NS_ENUM ('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_enum_paren=ignore|sp_enum_paren=add|sp_enum_paren=remove|sp_enum_paren=force +ChoicesReadable="(28)Ignore Sp Enum Paren|(28)Add Sp Enum Paren|(28)Remove Sp Enum Paren|(28)Force Sp Enum Paren" +ValueDefault=ignore + +[Sp Enum Assign] +Category=1 +Description="<html>(29)Add or remove space around assignment '=' in enum.</html>" +Enabled=false +EditorType=multiple +Choices=sp_enum_assign=ignore|sp_enum_assign=add|sp_enum_assign=remove|sp_enum_assign=force +ChoicesReadable="(29)Ignore Sp Enum Assign|(29)Add Sp Enum Assign|(29)Remove Sp Enum Assign|(29)Force Sp Enum Assign" +ValueDefault=ignore + +[Sp Enum Before Assign] +Category=1 +Description="<html>(30)Add or remove space before assignment '=' in enum.<br/><br/>Overrides sp_enum_assign.</html>" +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="(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 + +[Sp Enum After Assign] +Category=1 +Description="<html>(31)Add or remove space after assignment '=' in enum.<br/><br/>Overrides sp_enum_assign.</html>" +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="(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 + +[Sp Enum Colon] +Category=1 +Description="<html>(32)Add or remove space around assignment ':' in enum.</html>" +Enabled=false +EditorType=multiple +Choices=sp_enum_colon=ignore|sp_enum_colon=add|sp_enum_colon=remove|sp_enum_colon=force +ChoicesReadable="(32)Ignore Sp Enum Colon|(32)Add Sp Enum Colon|(32)Remove Sp Enum Colon|(32)Force Sp Enum Colon" +ValueDefault=ignore + +[Sp Pp Concat] +Category=1 +Description="<html>(33)Add or remove space around preprocessor '##' concatenation operator.<br/><br/>Default: add</html>" +Enabled=false +EditorType=multiple +Choices=sp_pp_concat=ignore|sp_pp_concat=add|sp_pp_concat=remove|sp_pp_concat=force +ChoicesReadable="(33)Ignore Sp Pp Concat|(33)Add Sp Pp Concat|(33)Remove Sp Pp Concat|(33)Force Sp Pp Concat" +ValueDefault=add + +[Sp Pp Stringify] +Category=1 +Description="<html>(34)Add or remove space after preprocessor '#' stringify operator.<br/>Also affects the '#@' charizing operator.</html>" +Enabled=false +EditorType=multiple +Choices=sp_pp_stringify=ignore|sp_pp_stringify=add|sp_pp_stringify=remove|sp_pp_stringify=force +ChoicesReadable="(34)Ignore Sp Pp Stringify|(34)Add Sp Pp Stringify|(34)Remove Sp Pp Stringify|(34)Force Sp Pp Stringify" +ValueDefault=ignore + +[Sp Before Pp Stringify] +Category=1 +Description="<html>(35)Add or remove space before preprocessor '#' stringify operator<br/>as in '#define x(y) L#y'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_pp_stringify=ignore|sp_before_pp_stringify=add|sp_before_pp_stringify=remove|sp_before_pp_stringify=force +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 + +[Sp Bool] +Category=1 +Description="<html>(36)Add or remove space around boolean operators '&&' and '||'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_bool=ignore|sp_bool=add|sp_bool=remove|sp_bool=force +ChoicesReadable="(36)Ignore Sp Bool|(36)Add Sp Bool|(36)Remove Sp Bool|(36)Force Sp Bool" +ValueDefault=ignore + +[Sp Compare] +Category=1 +Description="<html>(37)Add or remove space around compare operator '<', '>', '==', etc.</html>" +Enabled=false +EditorType=multiple +Choices=sp_compare=ignore|sp_compare=add|sp_compare=remove|sp_compare=force +ChoicesReadable="(37)Ignore Sp Compare|(37)Add Sp Compare|(37)Remove Sp Compare|(37)Force Sp Compare" +ValueDefault=ignore + +[Sp Inside Paren] +Category=1 +Description="<html>(38)Add or remove space inside '(' and ')'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_paren=ignore|sp_inside_paren=add|sp_inside_paren=remove|sp_inside_paren=force +ChoicesReadable="(38)Ignore Sp Inside Paren|(38)Add Sp Inside Paren|(38)Remove Sp Inside Paren|(38)Force Sp Inside Paren" +ValueDefault=ignore + +[Sp Paren Paren] +Category=1 +Description="<html>(39)Add or remove space between nested parentheses, i.e. '((' vs. ') )'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_paren=ignore|sp_paren_paren=add|sp_paren_paren=remove|sp_paren_paren=force +ChoicesReadable="(39)Ignore Sp Paren Paren|(39)Add Sp Paren Paren|(39)Remove Sp Paren Paren|(39)Force Sp Paren Paren" +ValueDefault=ignore + +[Sp Cparen Oparen] +Category=1 +Description="<html>(40)Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_cparen_oparen=ignore|sp_cparen_oparen=add|sp_cparen_oparen=remove|sp_cparen_oparen=force +ChoicesReadable="(40)Ignore Sp Cparen Oparen|(40)Add Sp Cparen Oparen|(40)Remove Sp Cparen Oparen|(40)Force Sp Cparen Oparen" +ValueDefault=ignore + +[Sp Balance Nested Parens] +Category=1 +Description="<html>(41)Whether to balance spaces inside nested parentheses.</html>" +Enabled=false +EditorType=boolean +TrueFalse=sp_balance_nested_parens=true|sp_balance_nested_parens=false +ValueDefault=false + +[Sp Paren Brace] +Category=1 +Description="<html>(42)Add or remove space between ')' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_brace=ignore|sp_paren_brace=add|sp_paren_brace=remove|sp_paren_brace=force +ChoicesReadable="(42)Ignore Sp Paren Brace|(42)Add Sp Paren Brace|(42)Remove Sp Paren Brace|(42)Force Sp Paren Brace" +ValueDefault=ignore + +[Sp Brace Brace] +Category=1 +Description="<html>(43)Add or remove space between nested braces, i.e. '{{' vs '{ {'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_brace=ignore|sp_brace_brace=add|sp_brace_brace=remove|sp_brace_brace=force +ChoicesReadable="(43)Ignore Sp Brace Brace|(43)Add Sp Brace Brace|(43)Remove Sp Brace Brace|(43)Force Sp Brace Brace" +ValueDefault=ignore + +[Sp Before Ptr Star] +Category=1 +Description="<html>(44)Add or remove space before pointer star '*'.</html>" +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="(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 + +[Sp Before Unnamed Ptr Star] +Category=1 +Description="<html>(45)Add or remove space before pointer star '*' that isn't followed by a<br/>variable name. If set to ignore, sp_before_ptr_star is used instead.</html>" +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="(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 + +[Sp Between Ptr Star] +Category=1 +Description="<html>(46)Add or remove space between pointer stars '*'.</html>" +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="(46)Ignore Sp Between Ptr Star|(46)Add Sp Between Ptr Star|(46)Remove Sp Between Ptr Star|(46)Force Sp Between Ptr Star" +ValueDefault=ignore + +[Sp After Ptr Star] +Category=1 +Description="<html>(47)Add or remove space after pointer star '*', if followed by a word.<br/><br/>Overrides sp_type_func.</html>" +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="(47)Ignore Sp After Ptr Star|(47)Add Sp After Ptr Star|(47)Remove Sp After Ptr Star|(47)Force Sp After Ptr Star" +ValueDefault=ignore + +[Sp After Ptr Block Caret] +Category=1 +Description="<html>(48)Add or remove space after pointer caret '^', if followed by a word.</html>" +Enabled=false +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 +ChoicesReadable="(48)Ignore Sp After Ptr Block Caret|(48)Add Sp After Ptr Block Caret|(48)Remove Sp After Ptr Block Caret|(48)Force Sp After Ptr Block Caret" +ValueDefault=ignore + +[Sp After Ptr Star Qualifier] +Category=1 +Description="<html>(49)Add or remove space after pointer star '*', if followed by a qualifier.</html>" +Enabled=false +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 +ChoicesReadable="(49)Ignore Sp After Ptr Star Qualifier|(49)Add Sp After Ptr Star Qualifier|(49)Remove Sp After Ptr Star Qualifier|(49)Force Sp After Ptr Star Qualifier" +ValueDefault=ignore + +[Sp After Ptr Star Func] +Category=1 +Description="<html>(50)Add or remove space after a pointer star '*', if followed by a function<br/>prototype or function definition.<br/><br/>Overrides sp_after_ptr_star and sp_type_func.</html>" +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="(50)Ignore Sp After Ptr Star Func|(50)Add Sp After Ptr Star Func|(50)Remove Sp After Ptr Star Func|(50)Force Sp After Ptr Star Func" +ValueDefault=ignore + +[Sp Ptr Star Paren] +Category=1 +Description="<html>(51)Add or remove space after a pointer star '*', if followed by an open<br/>parenthesis, as in 'void* (*)().</html>" +Enabled=false +EditorType=multiple +Choices=sp_ptr_star_paren=ignore|sp_ptr_star_paren=add|sp_ptr_star_paren=remove|sp_ptr_star_paren=force +ChoicesReadable="(51)Ignore Sp Ptr Star Paren|(51)Add Sp Ptr Star Paren|(51)Remove Sp Ptr Star Paren|(51)Force Sp Ptr Star Paren" +ValueDefault=ignore + +[Sp Before Ptr Star Func] +Category=1 +Description="<html>(52)Add or remove space before a pointer star '*', if followed by a function<br/>prototype or function definition.</html>" +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="(52)Ignore Sp Before Ptr Star Func|(52)Add Sp Before Ptr Star Func|(52)Remove Sp Before Ptr Star Func|(52)Force Sp Before Ptr Star Func" +ValueDefault=ignore + +[Sp Before Byref] +Category=1 +Description="<html>(53)Add or remove space before a reference sign '&'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_byref=ignore|sp_before_byref=add|sp_before_byref=remove|sp_before_byref=force +ChoicesReadable="(53)Ignore Sp Before Byref|(53)Add Sp Before Byref|(53)Remove Sp Before Byref|(53)Force Sp Before Byref" +ValueDefault=ignore + +[Sp Before Unnamed Byref] +Category=1 +Description="<html>(54)Add or remove space before a reference sign '&' that isn't followed by a<br/>variable name. If set to ignore, sp_before_byref is used instead.</html>" +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="(54)Ignore Sp Before Unnamed Byref|(54)Add Sp Before Unnamed Byref|(54)Remove Sp Before Unnamed Byref|(54)Force Sp Before Unnamed Byref" +ValueDefault=ignore + +[Sp After Byref] +Category=1 +Description="<html>(55)Add or remove space after reference sign '&', if followed by a word.<br/><br/>Overrides sp_type_func.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_byref=ignore|sp_after_byref=add|sp_after_byref=remove|sp_after_byref=force +ChoicesReadable="(55)Ignore Sp After Byref|(55)Add Sp After Byref|(55)Remove Sp After Byref|(55)Force Sp After Byref" +ValueDefault=ignore + +[Sp After Byref Func] +Category=1 +Description="<html>(56)Add or remove space after a reference sign '&', if followed by a function<br/>prototype or function definition.<br/><br/>Overrides sp_after_byref and sp_type_func.</html>" +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="(56)Ignore Sp After Byref Func|(56)Add Sp After Byref Func|(56)Remove Sp After Byref Func|(56)Force Sp After Byref Func" +ValueDefault=ignore + +[Sp Before Byref Func] +Category=1 +Description="<html>(57)Add or remove space before a reference sign '&', if followed by a function<br/>prototype or function definition.</html>" +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="(57)Ignore Sp Before Byref Func|(57)Add Sp Before Byref Func|(57)Remove Sp Before Byref Func|(57)Force Sp Before Byref Func" +ValueDefault=ignore + +[Sp After Type] +Category=1 +Description="<html>(58)Add or remove space between type and word. In cases where total removal of<br/>whitespace would be a syntax error, a value of 'remove' is treated the same<br/>as 'force'.<br/><br/>This also affects some other instances of space following a type that are<br/>not covered by other options; for example, between the return type and<br/>parenthesis of a function type template argument, between the type and<br/>parenthesis of an array parameter, or between 'decltype(...)' and the<br/>following word.<br/><br/>Default: force</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_type=ignore|sp_after_type=add|sp_after_type=remove|sp_after_type=force +ChoicesReadable="(58)Ignore Sp After Type|(58)Add Sp After Type|(58)Remove Sp After Type|(58)Force Sp After Type" +ValueDefault=force + +[Sp After Decltype] +Category=1 +Description="<html>(59)Add or remove space between 'decltype(...)' and word.<br/><br/>Overrides sp_after_type.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_decltype=ignore|sp_after_decltype=add|sp_after_decltype=remove|sp_after_decltype=force +ChoicesReadable="(59)Ignore Sp After Decltype|(59)Add Sp After Decltype|(59)Remove Sp After Decltype|(59)Force Sp After Decltype" +ValueDefault=ignore + +[Sp Before Template Paren] +Category=1 +Description="<html>(60)(D) Add or remove space before the parenthesis in the D constructs<br/>'template Foo(' and 'class Foo('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_template_paren=ignore|sp_before_template_paren=add|sp_before_template_paren=remove|sp_before_template_paren=force +ChoicesReadable="(60)Ignore Sp Before Template Paren|(60)Add Sp Before Template Paren|(60)Remove Sp Before Template Paren|(60)Force Sp Before Template Paren" +ValueDefault=ignore + +[Sp Template Angle] +Category=1 +Description="<html>(61)Add or remove space between 'template' and '<'.<br/>If set to ignore, sp_before_angle is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_template_angle=ignore|sp_template_angle=add|sp_template_angle=remove|sp_template_angle=force +ChoicesReadable="(61)Ignore Sp Template Angle|(61)Add Sp Template Angle|(61)Remove Sp Template Angle|(61)Force Sp Template Angle" +ValueDefault=ignore + +[Sp Before Angle] +Category=1 +Description="<html>(62)Add or remove space before '<'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_angle=ignore|sp_before_angle=add|sp_before_angle=remove|sp_before_angle=force +ChoicesReadable="(62)Ignore Sp Before Angle|(62)Add Sp Before Angle|(62)Remove Sp Before Angle|(62)Force Sp Before Angle" +ValueDefault=ignore + +[Sp Inside Angle] +Category=1 +Description="<html>(63)Add or remove space inside '<' and '>'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_angle=ignore|sp_inside_angle=add|sp_inside_angle=remove|sp_inside_angle=force +ChoicesReadable="(63)Ignore Sp Inside Angle|(63)Add Sp Inside Angle|(63)Remove Sp Inside Angle|(63)Force Sp Inside Angle" +ValueDefault=ignore + +[Sp Inside Angle Empty] +Category=1 +Description="<html>(64)Add or remove space inside '<>'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_angle_empty=ignore|sp_inside_angle_empty=add|sp_inside_angle_empty=remove|sp_inside_angle_empty=force +ChoicesReadable="(64)Ignore Sp Inside Angle Empty|(64)Add Sp Inside Angle Empty|(64)Remove Sp Inside Angle Empty|(64)Force Sp Inside Angle Empty" +ValueDefault=ignore + +[Sp Angle Colon] +Category=1 +Description="<html>(65)Add or remove space between '>' and ':'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_angle_colon=ignore|sp_angle_colon=add|sp_angle_colon=remove|sp_angle_colon=force +ChoicesReadable="(65)Ignore Sp Angle Colon|(65)Add Sp Angle Colon|(65)Remove Sp Angle Colon|(65)Force Sp Angle Colon" +ValueDefault=ignore + +[Sp After Angle] +Category=1 +Description="<html>(66)Add or remove space after '>'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_angle=ignore|sp_after_angle=add|sp_after_angle=remove|sp_after_angle=force +ChoicesReadable="(66)Ignore Sp After Angle|(66)Add Sp After Angle|(66)Remove Sp After Angle|(66)Force Sp After Angle" +ValueDefault=ignore + +[Sp Angle Paren] +Category=1 +Description="<html>(67)Add or remove space between '>' and '(' as found in 'new List<byte>(foo);'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_angle_paren=ignore|sp_angle_paren=add|sp_angle_paren=remove|sp_angle_paren=force +ChoicesReadable="(67)Ignore Sp Angle Paren|(67)Add Sp Angle Paren|(67)Remove Sp Angle Paren|(67)Force Sp Angle Paren" +ValueDefault=ignore + +[Sp Angle Paren Empty] +Category=1 +Description="<html>(68)Add or remove space between '>' and '()' as found in 'new List<byte>();'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_angle_paren_empty=ignore|sp_angle_paren_empty=add|sp_angle_paren_empty=remove|sp_angle_paren_empty=force +ChoicesReadable="(68)Ignore Sp Angle Paren Empty|(68)Add Sp Angle Paren Empty|(68)Remove Sp Angle Paren Empty|(68)Force Sp Angle Paren Empty" +ValueDefault=ignore + +[Sp Angle Word] +Category=1 +Description="<html>(69)Add or remove space between '>' and a word as in 'List<byte> m;' or<br/>'template <typename T> static ...'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_angle_word=ignore|sp_angle_word=add|sp_angle_word=remove|sp_angle_word=force +ChoicesReadable="(69)Ignore Sp Angle Word|(69)Add Sp Angle Word|(69)Remove Sp Angle Word|(69)Force Sp Angle Word" +ValueDefault=ignore + +[Sp Angle Shift] +Category=1 +Description="<html>(70)Add or remove space between '>' and '>' in '>>' (template stuff).<br/><br/>Default: add</html>" +Enabled=false +EditorType=multiple +Choices=sp_angle_shift=ignore|sp_angle_shift=add|sp_angle_shift=remove|sp_angle_shift=force +ChoicesReadable="(70)Ignore Sp Angle Shift|(70)Add Sp Angle Shift|(70)Remove Sp Angle Shift|(70)Force Sp Angle Shift" +ValueDefault=add + +[Sp Permit Cpp11 Shift] +Category=1 +Description="<html>(71)(C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note<br/>that sp_angle_shift cannot remove the space without this option.</html>" +Enabled=false +EditorType=boolean +TrueFalse=sp_permit_cpp11_shift=true|sp_permit_cpp11_shift=false +ValueDefault=false + +[Sp Before Sparen] +Category=1 +Description="<html>(72)Add or remove space before '(' of control statements ('if', 'for', 'switch',<br/>'while', etc.).</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_sparen=ignore|sp_before_sparen=add|sp_before_sparen=remove|sp_before_sparen=force +ChoicesReadable="(72)Ignore Sp Before Sparen|(72)Add Sp Before Sparen|(72)Remove Sp Before Sparen|(72)Force Sp Before Sparen" +ValueDefault=ignore + +[Sp Inside Sparen] +Category=1 +Description="<html>(73)Add or remove space inside '(' and ')' of control statements.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_sparen=ignore|sp_inside_sparen=add|sp_inside_sparen=remove|sp_inside_sparen=force +ChoicesReadable="(73)Ignore Sp Inside Sparen|(73)Add Sp Inside Sparen|(73)Remove Sp Inside Sparen|(73)Force Sp Inside Sparen" +ValueDefault=ignore + +[Sp Inside Sparen Open] +Category=1 +Description="<html>(74)Add or remove space after '(' of control statements.<br/><br/>Overrides sp_inside_sparen.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_sparen_open=ignore|sp_inside_sparen_open=add|sp_inside_sparen_open=remove|sp_inside_sparen_open=force +ChoicesReadable="(74)Ignore Sp Inside Sparen Open|(74)Add Sp Inside Sparen Open|(74)Remove Sp Inside Sparen Open|(74)Force Sp Inside Sparen Open" +ValueDefault=ignore + +[Sp Inside Sparen Close] +Category=1 +Description="<html>(75)Add or remove space before ')' of control statements.<br/><br/>Overrides sp_inside_sparen.</html>" +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="(75)Ignore Sp Inside Sparen Close|(75)Add Sp Inside Sparen Close|(75)Remove Sp Inside Sparen Close|(75)Force Sp Inside Sparen Close" +ValueDefault=ignore + +[Sp After Sparen] +Category=1 +Description="<html>(76)Add or remove space after ')' of control statements.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_sparen=ignore|sp_after_sparen=add|sp_after_sparen=remove|sp_after_sparen=force +ChoicesReadable="(76)Ignore Sp After Sparen|(76)Add Sp After Sparen|(76)Remove Sp After Sparen|(76)Force Sp After Sparen" +ValueDefault=ignore + +[Sp Sparen Brace] +Category=1 +Description="<html>(77)Add or remove space between ')' and '{' of of control statements.</html>" +Enabled=false +EditorType=multiple +Choices=sp_sparen_brace=ignore|sp_sparen_brace=add|sp_sparen_brace=remove|sp_sparen_brace=force +ChoicesReadable="(77)Ignore Sp Sparen Brace|(77)Add Sp Sparen Brace|(77)Remove Sp Sparen Brace|(77)Force Sp Sparen Brace" +ValueDefault=ignore + +[Sp Invariant Paren] +Category=1 +Description="<html>(78)(D) Add or remove space between 'invariant' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_invariant_paren=ignore|sp_invariant_paren=add|sp_invariant_paren=remove|sp_invariant_paren=force +ChoicesReadable="(78)Ignore Sp Invariant Paren|(78)Add Sp Invariant Paren|(78)Remove Sp Invariant Paren|(78)Force Sp Invariant Paren" +ValueDefault=ignore + +[Sp After Invariant Paren] +Category=1 +Description="<html>(79)(D) Add or remove space after the ')' in 'invariant (C) c'.</html>" +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="(79)Ignore Sp After Invariant Paren|(79)Add Sp After Invariant Paren|(79)Remove Sp After Invariant Paren|(79)Force Sp After Invariant Paren" +ValueDefault=ignore + +[Sp Special Semi] +Category=1 +Description="<html>(80)Add or remove space before empty statement ';' on 'if', 'for' and 'while'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_special_semi=ignore|sp_special_semi=add|sp_special_semi=remove|sp_special_semi=force +ChoicesReadable="(80)Ignore Sp Special Semi|(80)Add Sp Special Semi|(80)Remove Sp Special Semi|(80)Force Sp Special Semi" +ValueDefault=ignore + +[Sp Before Semi] +Category=1 +Description="<html>(81)Add or remove space before ';'.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_semi=ignore|sp_before_semi=add|sp_before_semi=remove|sp_before_semi=force +ChoicesReadable="(81)Ignore Sp Before Semi|(81)Add Sp Before Semi|(81)Remove Sp Before Semi|(81)Force Sp Before Semi" +ValueDefault=remove + +[Sp Before Semi For] +Category=1 +Description="<html>(82)Add or remove space before ';' in non-empty 'for' statements.</html>" +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="(82)Ignore Sp Before Semi For|(82)Add Sp Before Semi For|(82)Remove Sp Before Semi For|(82)Force Sp Before Semi For" +ValueDefault=ignore + +[Sp Before Semi For Empty] +Category=1 +Description="<html>(83)Add or remove space before a semicolon of an empty part of a for statement.</html>" +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="(83)Ignore Sp Before Semi For Empty|(83)Add Sp Before Semi For Empty|(83)Remove Sp Before Semi For Empty|(83)Force Sp Before Semi For Empty" +ValueDefault=ignore + +[Sp After Semi] +Category=1 +Description="<html>(84)Add or remove space after ';', except when followed by a comment.<br/><br/>Default: add</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_semi=ignore|sp_after_semi=add|sp_after_semi=remove|sp_after_semi=force +ChoicesReadable="(84)Ignore Sp After Semi|(84)Add Sp After Semi|(84)Remove Sp After Semi|(84)Force Sp After Semi" +ValueDefault=add + +[Sp After Semi For] +Category=1 +Description="<html>(85)Add or remove space after ';' in non-empty 'for' statements.<br/><br/>Default: force</html>" +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="(85)Ignore Sp After Semi For|(85)Add Sp After Semi For|(85)Remove Sp After Semi For|(85)Force Sp After Semi For" +ValueDefault=force + +[Sp After Semi For Empty] +Category=1 +Description="<html>(86)Add or remove space after the final semicolon of an empty part of a for<br/>statement, as in 'for ( ; ; <here> )'.</html>" +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="(86)Ignore Sp After Semi For Empty|(86)Add Sp After Semi For Empty|(86)Remove Sp After Semi For Empty|(86)Force Sp After Semi For Empty" +ValueDefault=ignore + +[Sp Before Square] +Category=1 +Description="<html>(87)Add or remove space before '[' (except '[]').</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_square=ignore|sp_before_square=add|sp_before_square=remove|sp_before_square=force +ChoicesReadable="(87)Ignore Sp Before Square|(87)Add Sp Before Square|(87)Remove Sp Before Square|(87)Force Sp Before Square" +ValueDefault=ignore + +[Sp Before Vardef Square] +Category=1 +Description="<html>(88)Add or remove space before '[' for a variable definition.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_vardef_square=ignore|sp_before_vardef_square=add|sp_before_vardef_square=remove|sp_before_vardef_square=force +ChoicesReadable="(88)Ignore Sp Before Vardef Square|(88)Add Sp Before Vardef Square|(88)Remove Sp Before Vardef Square|(88)Force Sp Before Vardef Square" +ValueDefault=remove + +[Sp Before Square Asm Block] +Category=1 +Description="<html>(89)Add or remove space before '[' for asm block.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(89)Ignore Sp Before Square Asm Block|(89)Add Sp Before Square Asm Block|(89)Remove Sp Before Square Asm Block|(89)Force Sp Before Square Asm Block" +ValueDefault=ignore + +[Sp Before Squares] +Category=1 +Description="<html>(90)Add or remove space before '[]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_squares=ignore|sp_before_squares=add|sp_before_squares=remove|sp_before_squares=force +ChoicesReadable="(90)Ignore Sp Before Squares|(90)Add Sp Before Squares|(90)Remove Sp Before Squares|(90)Force Sp Before Squares" +ValueDefault=ignore + +[Sp Cpp Before Struct Binding] +Category=1 +Description="<html>(91)Add or remove space before C++17 structured bindings.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(91)Ignore Sp Cpp Before Struct Binding|(91)Add Sp Cpp Before Struct Binding|(91)Remove Sp Cpp Before Struct Binding|(91)Force Sp Cpp Before Struct Binding" +ValueDefault=ignore + +[Sp Inside Square] +Category=1 +Description="<html>(92)Add or remove space inside a non-empty '[' and ']'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_square=ignore|sp_inside_square=add|sp_inside_square=remove|sp_inside_square=force +ChoicesReadable="(92)Ignore Sp Inside Square|(92)Add Sp Inside Square|(92)Remove Sp Inside Square|(92)Force Sp Inside Square" +ValueDefault=ignore + +[Sp Inside Square Empty] +Category=1 +Description="<html>(93)Add or remove space inside '[]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_square_empty=ignore|sp_inside_square_empty=add|sp_inside_square_empty=remove|sp_inside_square_empty=force +ChoicesReadable="(93)Ignore Sp Inside Square Empty|(93)Add Sp Inside Square Empty|(93)Remove Sp Inside Square Empty|(93)Force Sp Inside Square Empty" +ValueDefault=ignore + +[Sp Inside Square Oc Array] +Category=1 +Description="<html>(94)(OC) Add or remove space inside a non-empty Objective-C boxed array '@[' and<br/>']'. If set to ignore, sp_inside_square is used.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(94)Ignore Sp Inside Square Oc Array|(94)Add Sp Inside Square Oc Array|(94)Remove Sp Inside Square Oc Array|(94)Force Sp Inside Square Oc Array" +ValueDefault=ignore + +[Sp After Comma] +Category=1 +Description="<html>(95)Add or remove space after ',', i.e. 'a,b' vs. 'a, b'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_comma=ignore|sp_after_comma=add|sp_after_comma=remove|sp_after_comma=force +ChoicesReadable="(95)Ignore Sp After Comma|(95)Add Sp After Comma|(95)Remove Sp After Comma|(95)Force Sp After Comma" +ValueDefault=ignore + +[Sp Before Comma] +Category=1 +Description="<html>(96)Add or remove space before ','.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_comma=ignore|sp_before_comma=add|sp_before_comma=remove|sp_before_comma=force +ChoicesReadable="(96)Ignore Sp Before Comma|(96)Add Sp Before Comma|(96)Remove Sp Before Comma|(96)Force Sp Before Comma" +ValueDefault=remove + +[Sp After Mdatype Commas] +Category=1 +Description="<html>(97)(C#) Add or remove space between ',' and ']' in multidimensional array type<br/>like 'int[,,]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_mdatype_commas=ignore|sp_after_mdatype_commas=add|sp_after_mdatype_commas=remove|sp_after_mdatype_commas=force +ChoicesReadable="(97)Ignore Sp After Mdatype Commas|(97)Add Sp After Mdatype Commas|(97)Remove Sp After Mdatype Commas|(97)Force Sp After Mdatype Commas" +ValueDefault=ignore + +[Sp Before Mdatype Commas] +Category=1 +Description="<html>(98)(C#) Add or remove space between '[' and ',' in multidimensional array type<br/>like 'int[,,]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_mdatype_commas=ignore|sp_before_mdatype_commas=add|sp_before_mdatype_commas=remove|sp_before_mdatype_commas=force +ChoicesReadable="(98)Ignore Sp Before Mdatype Commas|(98)Add Sp Before Mdatype Commas|(98)Remove Sp Before Mdatype Commas|(98)Force Sp Before Mdatype Commas" +ValueDefault=ignore + +[Sp Between Mdatype Commas] +Category=1 +Description="<html>(99)(C#) Add or remove space between ',' in multidimensional array type<br/>like 'int[,,]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_between_mdatype_commas=ignore|sp_between_mdatype_commas=add|sp_between_mdatype_commas=remove|sp_between_mdatype_commas=force +ChoicesReadable="(99)Ignore Sp Between Mdatype Commas|(99)Add Sp Between Mdatype Commas|(99)Remove Sp Between Mdatype Commas|(99)Force Sp Between Mdatype Commas" +ValueDefault=ignore + +[Sp Paren Comma] +Category=1 +Description="<html>(100)Add or remove space between an open parenthesis and comma,<br/>i.e. '(,' vs. '( ,'.<br/><br/>Default: force</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_comma=ignore|sp_paren_comma=add|sp_paren_comma=remove|sp_paren_comma=force +ChoicesReadable="(100)Ignore Sp Paren Comma|(100)Add Sp Paren Comma|(100)Remove Sp Paren Comma|(100)Force Sp Paren Comma" +ValueDefault=force + +[Sp Before Ellipsis] +Category=1 +Description="<html>(101)Add or remove space before the variadic '...' when preceded by a<br/>non-punctuator.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_ellipsis=ignore|sp_before_ellipsis=add|sp_before_ellipsis=remove|sp_before_ellipsis=force +ChoicesReadable="(101)Ignore Sp Before Ellipsis|(101)Add Sp Before Ellipsis|(101)Remove Sp Before Ellipsis|(101)Force Sp Before Ellipsis" +ValueDefault=ignore + +[Sp Type Ellipsis] +Category=1 +Description="<html>(102)Add or remove space between a type and '...'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_type_ellipsis=ignore|sp_type_ellipsis=add|sp_type_ellipsis=remove|sp_type_ellipsis=force +ChoicesReadable="(102)Ignore Sp Type Ellipsis|(102)Add Sp Type Ellipsis|(102)Remove Sp Type Ellipsis|(102)Force Sp Type Ellipsis" +ValueDefault=ignore + +[Sp Type Question] +Category=1 +Description="<html>(103)(D) Add or remove space between a type and '?'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_type_question=ignore|sp_type_question=add|sp_type_question=remove|sp_type_question=force +ChoicesReadable="(103)Ignore Sp Type Question|(103)Add Sp Type Question|(103)Remove Sp Type Question|(103)Force Sp Type Question" +ValueDefault=ignore + +[Sp Paren Ellipsis] +Category=1 +Description="<html>(104)Add or remove space between ')' and '...'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_ellipsis=ignore|sp_paren_ellipsis=add|sp_paren_ellipsis=remove|sp_paren_ellipsis=force +ChoicesReadable="(104)Ignore Sp Paren Ellipsis|(104)Add Sp Paren Ellipsis|(104)Remove Sp Paren Ellipsis|(104)Force Sp Paren Ellipsis" +ValueDefault=ignore + +[Sp Paren Qualifier] +Category=1 +Description="<html>(105)Add or remove space between ')' and a qualifier such as 'const'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_qualifier=ignore|sp_paren_qualifier=add|sp_paren_qualifier=remove|sp_paren_qualifier=force +ChoicesReadable="(105)Ignore Sp Paren Qualifier|(105)Add Sp Paren Qualifier|(105)Remove Sp Paren Qualifier|(105)Force Sp Paren Qualifier" +ValueDefault=ignore + +[Sp Paren Noexcept] +Category=1 +Description="<html>(106)Add or remove space between ')' and 'noexcept'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_paren_noexcept=ignore|sp_paren_noexcept=add|sp_paren_noexcept=remove|sp_paren_noexcept=force +ChoicesReadable="(106)Ignore Sp Paren Noexcept|(106)Add Sp Paren Noexcept|(106)Remove Sp Paren Noexcept|(106)Force Sp Paren Noexcept" +ValueDefault=ignore + +[Sp After Class Colon] +Category=1 +Description="<html>(107)Add or remove space after class ':'.</html>" +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="(107)Ignore Sp After Class Colon|(107)Add Sp After Class Colon|(107)Remove Sp After Class Colon|(107)Force Sp After Class Colon" +ValueDefault=ignore + +[Sp Before Class Colon] +Category=1 +Description="<html>(108)Add or remove space before class ':'.</html>" +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="(108)Ignore Sp Before Class Colon|(108)Add Sp Before Class Colon|(108)Remove Sp Before Class Colon|(108)Force Sp Before Class Colon" +ValueDefault=ignore + +[Sp After Constr Colon] +Category=1 +Description="<html>(109)Add or remove space after class constructor ':'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_constr_colon=ignore|sp_after_constr_colon=add|sp_after_constr_colon=remove|sp_after_constr_colon=force +ChoicesReadable="(109)Ignore Sp After Constr Colon|(109)Add Sp After Constr Colon|(109)Remove Sp After Constr Colon|(109)Force Sp After Constr Colon" +ValueDefault=ignore + +[Sp Before Constr Colon] +Category=1 +Description="<html>(110)Add or remove space before class constructor ':'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_constr_colon=ignore|sp_before_constr_colon=add|sp_before_constr_colon=remove|sp_before_constr_colon=force +ChoicesReadable="(110)Ignore Sp Before Constr Colon|(110)Add Sp Before Constr Colon|(110)Remove Sp Before Constr Colon|(110)Force Sp Before Constr Colon" +ValueDefault=ignore + +[Sp Before Case Colon] +Category=1 +Description="<html>(111)Add or remove space before case ':'.<br/><br/>Default: remove</html>" +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="(111)Ignore Sp Before Case Colon|(111)Add Sp Before Case Colon|(111)Remove Sp Before Case Colon|(111)Force Sp Before Case Colon" +ValueDefault=remove + +[Sp After Operator] +Category=1 +Description="<html>(112)Add or remove space between 'operator' and operator sign.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_operator=ignore|sp_after_operator=add|sp_after_operator=remove|sp_after_operator=force +ChoicesReadable="(112)Ignore Sp After Operator|(112)Add Sp After Operator|(112)Remove Sp After Operator|(112)Force Sp After Operator" +ValueDefault=ignore + +[Sp After Operator Sym] +Category=1 +Description="<html>(113)Add or remove space between the operator symbol and the open parenthesis, as<br/>in 'operator ++('.</html>" +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="(113)Ignore Sp After Operator Sym|(113)Add Sp After Operator Sym|(113)Remove Sp After Operator Sym|(113)Force Sp After Operator Sym" +ValueDefault=ignore + +[Sp After Operator Sym Empty] +Category=1 +Description="<html>(114)Overrides sp_after_operator_sym when the operator has no arguments, as in<br/>'operator *()'.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(114)Ignore Sp After Operator Sym Empty|(114)Add Sp After Operator Sym Empty|(114)Remove Sp After Operator Sym Empty|(114)Force Sp After Operator Sym Empty" +ValueDefault=ignore + +[Sp After Cast] +Category=1 +Description="<html>(115)Add or remove space after C/D cast, i.e. 'cast(int)a' vs. 'cast(int) a' or<br/>'(int)a' vs. '(int) a'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_cast=ignore|sp_after_cast=add|sp_after_cast=remove|sp_after_cast=force +ChoicesReadable="(115)Ignore Sp After Cast|(115)Add Sp After Cast|(115)Remove Sp After Cast|(115)Force Sp After Cast" +ValueDefault=ignore + +[Sp Inside Paren Cast] +Category=1 +Description="<html>(116)Add or remove spaces inside cast parentheses.</html>" +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="(116)Ignore Sp Inside Paren Cast|(116)Add Sp Inside Paren Cast|(116)Remove Sp Inside Paren Cast|(116)Force Sp Inside Paren Cast" +ValueDefault=ignore + +[Sp Cpp Cast Paren] +Category=1 +Description="<html>(117)Add or remove space between the type and open parenthesis in a C++ cast,<br/>i.e. 'int(exp)' vs. 'int (exp)'.</html>" +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="(117)Ignore Sp Cpp Cast Paren|(117)Add Sp Cpp Cast Paren|(117)Remove Sp Cpp Cast Paren|(117)Force Sp Cpp Cast Paren" +ValueDefault=ignore + +[Sp Sizeof Paren] +Category=1 +Description="<html>(118)Add or remove space between 'sizeof' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_sizeof_paren=ignore|sp_sizeof_paren=add|sp_sizeof_paren=remove|sp_sizeof_paren=force +ChoicesReadable="(118)Ignore Sp Sizeof Paren|(118)Add Sp Sizeof Paren|(118)Remove Sp Sizeof Paren|(118)Force Sp Sizeof Paren" +ValueDefault=ignore + +[Sp Sizeof Ellipsis] +Category=1 +Description="<html>(119)Add or remove space between 'sizeof' and '...'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_sizeof_ellipsis=ignore|sp_sizeof_ellipsis=add|sp_sizeof_ellipsis=remove|sp_sizeof_ellipsis=force +ChoicesReadable="(119)Ignore Sp Sizeof Ellipsis|(119)Add Sp Sizeof Ellipsis|(119)Remove Sp Sizeof Ellipsis|(119)Force Sp Sizeof Ellipsis" +ValueDefault=ignore + +[Sp Sizeof Ellipsis Paren] +Category=1 +Description="<html>(120)Add or remove space between 'sizeof...' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_sizeof_ellipsis_paren=ignore|sp_sizeof_ellipsis_paren=add|sp_sizeof_ellipsis_paren=remove|sp_sizeof_ellipsis_paren=force +ChoicesReadable="(120)Ignore Sp Sizeof Ellipsis Paren|(120)Add Sp Sizeof Ellipsis Paren|(120)Remove Sp Sizeof Ellipsis Paren|(120)Force Sp Sizeof Ellipsis Paren" +ValueDefault=ignore + +[Sp Decltype Paren] +Category=1 +Description="<html>(121)Add or remove space between 'decltype' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_decltype_paren=ignore|sp_decltype_paren=add|sp_decltype_paren=remove|sp_decltype_paren=force +ChoicesReadable="(121)Ignore Sp Decltype Paren|(121)Add Sp Decltype Paren|(121)Remove Sp Decltype Paren|(121)Force Sp Decltype Paren" +ValueDefault=ignore + +[Sp After Tag] +Category=1 +Description="<html>(122)(Pawn) Add or remove space after the tag keyword.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_tag=ignore|sp_after_tag=add|sp_after_tag=remove|sp_after_tag=force +ChoicesReadable="(122)Ignore Sp After Tag|(122)Add Sp After Tag|(122)Remove Sp After Tag|(122)Force Sp After Tag" +ValueDefault=ignore + +[Sp Inside Braces Enum] +Category=1 +Description="<html>(123)Add or remove space inside enum '{' and '}'.</html>" +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="(123)Ignore Sp Inside Braces Enum|(123)Add Sp Inside Braces Enum|(123)Remove Sp Inside Braces Enum|(123)Force Sp Inside Braces Enum" +ValueDefault=ignore + +[Sp Inside Braces Struct] +Category=1 +Description="<html>(124)Add or remove space inside struct/union '{' and '}'.</html>" +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="(124)Ignore Sp Inside Braces Struct|(124)Add Sp Inside Braces Struct|(124)Remove Sp Inside Braces Struct|(124)Force Sp Inside Braces Struct" +ValueDefault=ignore + +[Sp Inside Braces Oc Dict] +Category=1 +Description="<html>(125)(OC) Add or remove space inside Objective-C boxed dictionary '{' and '}'</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(125)Ignore Sp Inside Braces Oc Dict|(125)Add Sp Inside Braces Oc Dict|(125)Remove Sp Inside Braces Oc Dict|(125)Force Sp Inside Braces Oc Dict" +ValueDefault=ignore + +[Sp After Type Brace Init Lst Open] +Category=1 +Description="<html>(126)Add or remove space after open brace in an unnamed temporary<br/>direct-list-initialization.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(126)Ignore Sp After Type Brace Init Lst Open|(126)Add Sp After Type Brace Init Lst Open|(126)Remove Sp After Type Brace Init Lst Open|(126)Force Sp After Type Brace Init Lst Open" +ValueDefault=ignore + +[Sp Before Type Brace Init Lst Close] +Category=1 +Description="<html>(127)Add or remove space before close brace in an unnamed temporary<br/>direct-list-initialization.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(127)Ignore Sp Before Type Brace Init Lst Close|(127)Add Sp Before Type Brace Init Lst Close|(127)Remove Sp Before Type Brace Init Lst Close|(127)Force Sp Before Type Brace Init Lst Close" +ValueDefault=ignore + +[Sp Inside Type Brace Init Lst] +Category=1 +Description="<html>(128)Add or remove space inside an unnamed temporary direct-list-initialization.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(128)Ignore Sp Inside Type Brace Init Lst|(128)Add Sp Inside Type Brace Init Lst|(128)Remove Sp Inside Type Brace Init Lst|(128)Force Sp Inside Type Brace Init Lst" +ValueDefault=ignore + +[Sp Inside Braces] +Category=1 +Description="<html>(129)Add or remove space inside '{' and '}'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_braces=ignore|sp_inside_braces=add|sp_inside_braces=remove|sp_inside_braces=force +ChoicesReadable="(129)Ignore Sp Inside Braces|(129)Add Sp Inside Braces|(129)Remove Sp Inside Braces|(129)Force Sp Inside Braces" +ValueDefault=ignore + +[Sp Inside Braces Empty] +Category=1 +Description="<html>(130)Add or remove space inside '{}'.</html>" +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="(130)Ignore Sp Inside Braces Empty|(130)Add Sp Inside Braces Empty|(130)Remove Sp Inside Braces Empty|(130)Force Sp Inside Braces Empty" +ValueDefault=ignore + +[Sp Trailing Return] +Category=1 +Description="<html>(131)Add or remove space around trailing return operator '->'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_trailing_return=ignore|sp_trailing_return=add|sp_trailing_return=remove|sp_trailing_return=force +ChoicesReadable="(131)Ignore Sp Trailing Return|(131)Add Sp Trailing Return|(131)Remove Sp Trailing Return|(131)Force Sp Trailing Return" +ValueDefault=ignore + +[Sp Type Func] +Category=1 +Description="<html>(132)Add or remove space between return type and function name. A minimum of 1<br/>is forced except for pointer return types.</html>" +Enabled=false +EditorType=multiple +Choices=sp_type_func=ignore|sp_type_func=add|sp_type_func=remove|sp_type_func=force +ChoicesReadable="(132)Ignore Sp Type Func|(132)Add Sp Type Func|(132)Remove Sp Type Func|(132)Force Sp Type Func" +ValueDefault=ignore + +[Sp Type Brace Init Lst] +Category=1 +Description="<html>(133)Add or remove space between type and open brace of an unnamed temporary<br/>direct-list-initialization.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(133)Ignore Sp Type Brace Init Lst|(133)Add Sp Type Brace Init Lst|(133)Remove Sp Type Brace Init Lst|(133)Force Sp Type Brace Init Lst" +ValueDefault=ignore + +[Sp Func Proto Paren] +Category=1 +Description="<html>(134)Add or remove space between function name and '(' on function declaration.</html>" +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="(134)Ignore Sp Func Proto Paren|(134)Add Sp Func Proto Paren|(134)Remove Sp Func Proto Paren|(134)Force Sp Func Proto Paren" +ValueDefault=ignore + +[Sp Func Proto Paren Empty] +Category=1 +Description="<html>(135)Add or remove space between function name and '()' on function declaration<br/>without parameters.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(135)Ignore Sp Func Proto Paren Empty|(135)Add Sp Func Proto Paren Empty|(135)Remove Sp Func Proto Paren Empty|(135)Force Sp Func Proto Paren Empty" +ValueDefault=ignore + +[Sp Func Type Paren] +Category=1 +Description="<html>(136)Add or remove space between function name and '(' with a typedef specifier.</html>" +Enabled=false +EditorType=multiple +Choices=sp_func_type_paren=ignore|sp_func_type_paren=add|sp_func_type_paren=remove|sp_func_type_paren=force +ChoicesReadable="(136)Ignore Sp Func Type Paren|(136)Add Sp Func Type Paren|(136)Remove Sp Func Type Paren|(136)Force Sp Func Type Paren" +ValueDefault=ignore + +[Sp Func Def Paren] +Category=1 +Description="<html>(137)Add or remove space between alias name and '(' of a non-pointer function type typedef.</html>" +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="(137)Ignore Sp Func Def Paren|(137)Add Sp Func Def Paren|(137)Remove Sp Func Def Paren|(137)Force Sp Func Def Paren" +ValueDefault=ignore + +[Sp Func Def Paren Empty] +Category=1 +Description="<html>(138)Add or remove space between function name and '()' on function definition<br/>without parameters.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(138)Ignore Sp Func Def Paren Empty|(138)Add Sp Func Def Paren Empty|(138)Remove Sp Func Def Paren Empty|(138)Force Sp Func Def Paren Empty" +ValueDefault=ignore + +[Sp Inside Fparens] +Category=1 +Description="<html>(139)Add or remove space inside empty function '()'.<br/>Overrides sp_after_angle unless use_sp_after_angle_always is set to true.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_fparens=ignore|sp_inside_fparens=add|sp_inside_fparens=remove|sp_inside_fparens=force +ChoicesReadable="(139)Ignore Sp Inside Fparens|(139)Add Sp Inside Fparens|(139)Remove Sp Inside Fparens|(139)Force Sp Inside Fparens" +ValueDefault=ignore + +[Sp Inside Fparen] +Category=1 +Description="<html>(140)Add or remove space inside function '(' and ')'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_fparen=ignore|sp_inside_fparen=add|sp_inside_fparen=remove|sp_inside_fparen=force +ChoicesReadable="(140)Ignore Sp Inside Fparen|(140)Add Sp Inside Fparen|(140)Remove Sp Inside Fparen|(140)Force Sp Inside Fparen" +ValueDefault=ignore + +[Sp Inside Tparen] +Category=1 +Description="<html>(141)Add or remove space inside the first parentheses in a function type, as in<br/>'void (*x)(...)'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_inside_tparen=ignore|sp_inside_tparen=add|sp_inside_tparen=remove|sp_inside_tparen=force +ChoicesReadable="(141)Ignore Sp Inside Tparen|(141)Add Sp Inside Tparen|(141)Remove Sp Inside Tparen|(141)Force Sp Inside Tparen" +ValueDefault=ignore + +[Sp After Tparen Close] +Category=1 +Description="<html>(142)Add or remove space between the ')' and '(' in a function type, as in<br/>'void (*x)(...)'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_tparen_close=ignore|sp_after_tparen_close=add|sp_after_tparen_close=remove|sp_after_tparen_close=force +ChoicesReadable="(142)Ignore Sp After Tparen Close|(142)Add Sp After Tparen Close|(142)Remove Sp After Tparen Close|(142)Force Sp After Tparen Close" +ValueDefault=ignore + +[Sp Square Fparen] +Category=1 +Description="<html>(143)Add or remove space between ']' and '(' when part of a function call.</html>" +Enabled=false +EditorType=multiple +Choices=sp_square_fparen=ignore|sp_square_fparen=add|sp_square_fparen=remove|sp_square_fparen=force +ChoicesReadable="(143)Ignore Sp Square Fparen|(143)Add Sp Square Fparen|(143)Remove Sp Square Fparen|(143)Force Sp Square Fparen" +ValueDefault=ignore + +[Sp Fparen Brace] +Category=1 +Description="<html>(144)Add or remove space between ')' and '{' of function.</html>" +Enabled=false +EditorType=multiple +Choices=sp_fparen_brace=ignore|sp_fparen_brace=add|sp_fparen_brace=remove|sp_fparen_brace=force +ChoicesReadable="(144)Ignore Sp Fparen Brace|(144)Add Sp Fparen Brace|(144)Remove Sp Fparen Brace|(144)Force Sp Fparen Brace" +ValueDefault=ignore + +[Sp Fparen Brace Initializer] +Category=1 +Description="<html>(145)Add or remove space between ')' and '{' of a function call in object<br/>initialization.<br/><br/>Overrides sp_fparen_brace.</html>" +Enabled=false +EditorType=multiple +Choices=sp_fparen_brace_initializer=ignore|sp_fparen_brace_initializer=add|sp_fparen_brace_initializer=remove|sp_fparen_brace_initializer=force +ChoicesReadable="(145)Ignore Sp Fparen Brace Initializer|(145)Add Sp Fparen Brace Initializer|(145)Remove Sp Fparen Brace Initializer|(145)Force Sp Fparen Brace Initializer" +ValueDefault=ignore + +[Sp Fparen Dbrace] +Category=1 +Description="<html>(146)(Java) Add or remove space between ')' and '{{' of double brace initializer.</html>" +Enabled=false +EditorType=multiple +Choices=sp_fparen_dbrace=ignore|sp_fparen_dbrace=add|sp_fparen_dbrace=remove|sp_fparen_dbrace=force +ChoicesReadable="(146)Ignore Sp Fparen Dbrace|(146)Add Sp Fparen Dbrace|(146)Remove Sp Fparen Dbrace|(146)Force Sp Fparen Dbrace" +ValueDefault=ignore + +[Sp Func Call Paren] +Category=1 +Description="<html>(147)Add or remove space between function name and '(' on function calls.</html>" +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="(147)Ignore Sp Func Call Paren|(147)Add Sp Func Call Paren|(147)Remove Sp Func Call Paren|(147)Force Sp Func Call Paren" +ValueDefault=ignore + +[Sp Func Call Paren Empty] +Category=1 +Description="<html>(148)Add or remove space between function name and '()' on function calls without<br/>parameters. If set to ignore (the default), sp_func_call_paren is used.</html>" +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="(148)Ignore Sp Func Call Paren Empty|(148)Add Sp Func Call Paren Empty|(148)Remove Sp Func Call Paren Empty|(148)Force Sp Func Call Paren Empty" +ValueDefault=ignore + +[Sp Func Call User Paren] +Category=1 +Description="<html>(149)Add or remove space between the user function name and '(' on function<br/>calls. You need to set a keyword to be a user function in the config file,<br/>like:<br/> set func_call_user tr _ i18n</html>" +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="(149)Ignore Sp Func Call User Paren|(149)Add Sp Func Call User Paren|(149)Remove Sp Func Call User Paren|(149)Force Sp Func Call User Paren" +ValueDefault=ignore + +[Sp Func Call User Inside Fparen] +Category=1 +Description="<html>(150)Add or remove space inside user function '(' and ')'.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(150)Ignore Sp Func Call User Inside Fparen|(150)Add Sp Func Call User Inside Fparen|(150)Remove Sp Func Call User Inside Fparen|(150)Force Sp Func Call User Inside Fparen" +ValueDefault=ignore + +[Sp Func Call User Paren Paren] +Category=1 +Description="<html>(151)Add or remove space between nested parentheses with user functions,<br/>i.e. '((' vs. '( ('.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(151)Ignore Sp Func Call User Paren Paren|(151)Add Sp Func Call User Paren Paren|(151)Remove Sp Func Call User Paren Paren|(151)Force Sp Func Call User Paren Paren" +ValueDefault=ignore + +[Sp Func Class Paren] +Category=1 +Description="<html>(152)Add or remove space between a constructor/destructor and the open<br/>parenthesis.</html>" +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="(152)Ignore Sp Func Class Paren|(152)Add Sp Func Class Paren|(152)Remove Sp Func Class Paren|(152)Force Sp Func Class Paren" +ValueDefault=ignore + +[Sp Func Class Paren Empty] +Category=1 +Description="<html>(153)Add or remove space between a constructor without parameters or destructor<br/>and '()'.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(153)Ignore Sp Func Class Paren Empty|(153)Add Sp Func Class Paren Empty|(153)Remove Sp Func Class Paren Empty|(153)Force Sp Func Class Paren Empty" +ValueDefault=ignore + +[Sp Return Paren] +Category=1 +Description="<html>(154)Add or remove space between 'return' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_return_paren=ignore|sp_return_paren=add|sp_return_paren=remove|sp_return_paren=force +ChoicesReadable="(154)Ignore Sp Return Paren|(154)Add Sp Return Paren|(154)Remove Sp Return Paren|(154)Force Sp Return Paren" +ValueDefault=ignore + +[Sp Return Brace] +Category=1 +Description="<html>(155)Add or remove space between 'return' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_return_brace=ignore|sp_return_brace=add|sp_return_brace=remove|sp_return_brace=force +ChoicesReadable="(155)Ignore Sp Return Brace|(155)Add Sp Return Brace|(155)Remove Sp Return Brace|(155)Force Sp Return Brace" +ValueDefault=ignore + +[Sp Attribute Paren] +Category=1 +Description="<html>(156)Add or remove space between '__attribute__' and '('.</html>" +Enabled=false +EditorType=multiple +Choices=sp_attribute_paren=ignore|sp_attribute_paren=add|sp_attribute_paren=remove|sp_attribute_paren=force +ChoicesReadable="(156)Ignore Sp Attribute Paren|(156)Add Sp Attribute Paren|(156)Remove Sp Attribute Paren|(156)Force Sp Attribute Paren" +ValueDefault=ignore + +[Sp Defined Paren] +Category=1 +Description="<html>(157)Add or remove space between 'defined' and '(' in '#if defined (FOO)'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_defined_paren=ignore|sp_defined_paren=add|sp_defined_paren=remove|sp_defined_paren=force +ChoicesReadable="(157)Ignore Sp Defined Paren|(157)Add Sp Defined Paren|(157)Remove Sp Defined Paren|(157)Force Sp Defined Paren" +ValueDefault=ignore + +[Sp Throw Paren] +Category=1 +Description="<html>(158)Add or remove space between 'throw' and '(' in 'throw (something)'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_throw_paren=ignore|sp_throw_paren=add|sp_throw_paren=remove|sp_throw_paren=force +ChoicesReadable="(158)Ignore Sp Throw Paren|(158)Add Sp Throw Paren|(158)Remove Sp Throw Paren|(158)Force Sp Throw Paren" +ValueDefault=ignore + +[Sp After Throw] +Category=1 +Description="<html>(159)Add or remove space between 'throw' and anything other than '(' as in<br/>'@throw [...];'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_throw=ignore|sp_after_throw=add|sp_after_throw=remove|sp_after_throw=force +ChoicesReadable="(159)Ignore Sp After Throw|(159)Add Sp After Throw|(159)Remove Sp After Throw|(159)Force Sp After Throw" +ValueDefault=ignore + +[Sp Catch Paren] +Category=1 +Description="<html>(160)Add or remove space between 'catch' and '(' in 'catch (something) { }'.<br/>If set to ignore, sp_before_sparen is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_catch_paren=ignore|sp_catch_paren=add|sp_catch_paren=remove|sp_catch_paren=force +ChoicesReadable="(160)Ignore Sp Catch Paren|(160)Add Sp Catch Paren|(160)Remove Sp Catch Paren|(160)Force Sp Catch Paren" +ValueDefault=ignore + +[Sp Oc Catch Paren] +Category=1 +Description="<html>(161)(OC) Add or remove space between '@catch' and '('<br/>in '@catch (something) { }'. If set to ignore, sp_catch_paren is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_oc_catch_paren=ignore|sp_oc_catch_paren=add|sp_oc_catch_paren=remove|sp_oc_catch_paren=force +ChoicesReadable="(161)Ignore Sp Oc Catch Paren|(161)Add Sp Oc Catch Paren|(161)Remove Sp Oc Catch Paren|(161)Force Sp Oc Catch Paren" +ValueDefault=ignore + +[Sp Before Oc Proto List] +Category=1 +Description="<html>(162)(OC) Add or remove space before Objective-C protocol list<br/>as in '@protocol Protocol<here><Protocol_A>' or '@interface MyClass : NSObject<here><MyProtocol>'.</html>" +Enabled=false +EditorType=multiple +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 +ChoicesReadable="(162)Ignore Sp Before Oc Proto List|(162)Add Sp Before Oc Proto List|(162)Remove Sp Before Oc Proto List|(162)Force Sp Before Oc Proto List" +ValueDefault=ignore + +[Sp Oc Classname Paren] +Category=1 +Description="<html>(163)(OC) Add or remove space between class name and '('<br/>in '@interface className(categoryName)<ProtocolName>:BaseClass'</html>" +Enabled=false +EditorType=multiple +Choices=sp_oc_classname_paren=ignore|sp_oc_classname_paren=add|sp_oc_classname_paren=remove|sp_oc_classname_paren=force +ChoicesReadable="(163)Ignore Sp Oc Classname Paren|(163)Add Sp Oc Classname Paren|(163)Remove Sp Oc Classname Paren|(163)Force Sp Oc Classname Paren" +ValueDefault=ignore + +[Sp Version Paren] +Category=1 +Description="<html>(164)(D) Add or remove space between 'version' and '('<br/>in 'version (something) { }'. If set to ignore, sp_before_sparen is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_version_paren=ignore|sp_version_paren=add|sp_version_paren=remove|sp_version_paren=force +ChoicesReadable="(164)Ignore Sp Version Paren|(164)Add Sp Version Paren|(164)Remove Sp Version Paren|(164)Force Sp Version Paren" +ValueDefault=ignore + +[Sp Scope Paren] +Category=1 +Description="<html>(165)(D) Add or remove space between 'scope' and '('<br/>in 'scope (something) { }'. If set to ignore, sp_before_sparen is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_scope_paren=ignore|sp_scope_paren=add|sp_scope_paren=remove|sp_scope_paren=force +ChoicesReadable="(165)Ignore Sp Scope Paren|(165)Add Sp Scope Paren|(165)Remove Sp Scope Paren|(165)Force Sp Scope Paren" +ValueDefault=ignore + +[Sp Super Paren] +Category=1 +Description="<html>(166)Add or remove space between 'super' and '(' in 'super (something)'.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_super_paren=ignore|sp_super_paren=add|sp_super_paren=remove|sp_super_paren=force +ChoicesReadable="(166)Ignore Sp Super Paren|(166)Add Sp Super Paren|(166)Remove Sp Super Paren|(166)Force Sp Super Paren" +ValueDefault=remove + +[Sp This Paren] +Category=1 +Description="<html>(167)Add or remove space between 'this' and '(' in 'this (something)'.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_this_paren=ignore|sp_this_paren=add|sp_this_paren=remove|sp_this_paren=force +ChoicesReadable="(167)Ignore Sp This Paren|(167)Add Sp This Paren|(167)Remove Sp This Paren|(167)Force Sp This Paren" +ValueDefault=remove + +[Sp Macro] +Category=1 +Description="<html>(168)Add or remove space between a macro name and its definition.</html>" +Enabled=false +EditorType=multiple +Choices=sp_macro=ignore|sp_macro=add|sp_macro=remove|sp_macro=force +ChoicesReadable="(168)Ignore Sp Macro|(168)Add Sp Macro|(168)Remove Sp Macro|(168)Force Sp Macro" +ValueDefault=ignore + +[Sp Macro Func] +Category=1 +Description="<html>(169)Add or remove space between a macro function ')' and its definition.</html>" +Enabled=false +EditorType=multiple +Choices=sp_macro_func=ignore|sp_macro_func=add|sp_macro_func=remove|sp_macro_func=force +ChoicesReadable="(169)Ignore Sp Macro Func|(169)Add Sp Macro Func|(169)Remove Sp Macro Func|(169)Force Sp Macro Func" +ValueDefault=ignore + +[Sp Else Brace] +Category=1 +Description="<html>(170)Add or remove space between 'else' and '{' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_else_brace=ignore|sp_else_brace=add|sp_else_brace=remove|sp_else_brace=force +ChoicesReadable="(170)Ignore Sp Else Brace|(170)Add Sp Else Brace|(170)Remove Sp Else Brace|(170)Force Sp Else Brace" +ValueDefault=ignore + +[Sp Brace Else] +Category=1 +Description="<html>(171)Add or remove space between '}' and 'else' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_else=ignore|sp_brace_else=add|sp_brace_else=remove|sp_brace_else=force +ChoicesReadable="(171)Ignore Sp Brace Else|(171)Add Sp Brace Else|(171)Remove Sp Brace Else|(171)Force Sp Brace Else" +ValueDefault=ignore + +[Sp Brace Typedef] +Category=1 +Description="<html>(172)Add or remove space between '}' and the name of a typedef on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_typedef=ignore|sp_brace_typedef=add|sp_brace_typedef=remove|sp_brace_typedef=force +ChoicesReadable="(172)Ignore Sp Brace Typedef|(172)Add Sp Brace Typedef|(172)Remove Sp Brace Typedef|(172)Force Sp Brace Typedef" +ValueDefault=ignore + +[Sp Catch Brace] +Category=1 +Description="<html>(173)Add or remove space before the '{' of a 'catch' statement, if the '{' and<br/>'catch' are on the same line, as in 'catch (decl) <here> {'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_catch_brace=ignore|sp_catch_brace=add|sp_catch_brace=remove|sp_catch_brace=force +ChoicesReadable="(173)Ignore Sp Catch Brace|(173)Add Sp Catch Brace|(173)Remove Sp Catch Brace|(173)Force Sp Catch Brace" +ValueDefault=ignore + +[Sp Oc Catch Brace] +Category=1 +Description="<html>(174)(OC) Add or remove space before the '{' of a '@catch' statement, if the '{'<br/>and '@catch' are on the same line, as in '@catch (decl) <here> {'.<br/>If set to ignore, sp_catch_brace is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_oc_catch_brace=ignore|sp_oc_catch_brace=add|sp_oc_catch_brace=remove|sp_oc_catch_brace=force +ChoicesReadable="(174)Ignore Sp Oc Catch Brace|(174)Add Sp Oc Catch Brace|(174)Remove Sp Oc Catch Brace|(174)Force Sp Oc Catch Brace" +ValueDefault=ignore + +[Sp Brace Catch] +Category=1 +Description="<html>(175)Add or remove space between '}' and 'catch' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_catch=ignore|sp_brace_catch=add|sp_brace_catch=remove|sp_brace_catch=force +ChoicesReadable="(175)Ignore Sp Brace Catch|(175)Add Sp Brace Catch|(175)Remove Sp Brace Catch|(175)Force Sp Brace Catch" +ValueDefault=ignore + +[Sp Oc Brace Catch] +Category=1 +Description="<html>(176)(OC) Add or remove space between '}' and '@catch' if on the same line.<br/>If set to ignore, sp_brace_catch is used.</html>" +Enabled=false +EditorType=multiple +Choices=sp_oc_brace_catch=ignore|sp_oc_brace_catch=add|sp_oc_brace_catch=remove|sp_oc_brace_catch=force +ChoicesReadable="(176)Ignore Sp Oc Brace Catch|(176)Add Sp Oc Brace Catch|(176)Remove Sp Oc Brace Catch|(176)Force Sp Oc Brace Catch" +ValueDefault=ignore + +[Sp Finally Brace] +Category=1 +Description="<html>(177)Add or remove space between 'finally' and '{' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_finally_brace=ignore|sp_finally_brace=add|sp_finally_brace=remove|sp_finally_brace=force +ChoicesReadable="(177)Ignore Sp Finally Brace|(177)Add Sp Finally Brace|(177)Remove Sp Finally Brace|(177)Force Sp Finally Brace" +ValueDefault=ignore + +[Sp Brace Finally] +Category=1 +Description="<html>(178)Add or remove space between '}' and 'finally' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_brace_finally=ignore|sp_brace_finally=add|sp_brace_finally=remove|sp_brace_finally=force +ChoicesReadable="(178)Ignore Sp Brace Finally|(178)Add Sp Brace Finally|(178)Remove Sp Brace Finally|(178)Force Sp Brace Finally" +ValueDefault=ignore + +[Sp Try Brace] +Category=1 +Description="<html>(179)Add or remove space between 'try' and '{' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_try_brace=ignore|sp_try_brace=add|sp_try_brace=remove|sp_try_brace=force +ChoicesReadable="(179)Ignore Sp Try Brace|(179)Add Sp Try Brace|(179)Remove Sp Try Brace|(179)Force Sp Try Brace" +ValueDefault=ignore + +[Sp Getset Brace] +Category=1 +Description="<html>(180)Add or remove space between get/set and '{' if on the same line.</html>" +Enabled=false +EditorType=multiple +Choices=sp_getset_brace=ignore|sp_getset_brace=add|sp_getset_brace=remove|sp_getset_brace=force +ChoicesReadable="(180)Ignore Sp Getset Brace|(180)Add Sp Getset Brace|(180)Remove Sp Getset Brace|(180)Force Sp Getset Brace" +ValueDefault=ignore + +[Sp Word Brace Init Lst] +Category=1 +Description="<html>(181)Add or remove space between a variable and '{' for C++ uniform<br/>initialization.</html>" +Enabled=false +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 +ChoicesReadable="(181)Ignore Sp Word Brace Init Lst|(181)Add Sp Word Brace Init Lst|(181)Remove Sp Word Brace Init Lst|(181)Force Sp Word Brace Init Lst" +ValueDefault=ignore + +[Sp Word Brace Ns] +Category=1 +Description="<html>(182)Add or remove space between a variable and '{' for a namespace.<br/><br/>Default: add</html>" +Enabled=false +EditorType=multiple +Choices=sp_word_brace_ns=ignore|sp_word_brace_ns=add|sp_word_brace_ns=remove|sp_word_brace_ns=force +ChoicesReadable="(182)Ignore Sp Word Brace Ns|(182)Add Sp Word Brace Ns|(182)Remove Sp Word Brace Ns|(182)Force Sp Word Brace Ns" +ValueDefault=add + +[Sp Before Dc] +Category=1 +Description="<html>(183)Add or remove space before the '::' operator.</html>" +Enabled=false +EditorType=multiple +Choices=sp_before_dc=ignore|sp_before_dc=add|sp_before_dc=remove|sp_before_dc=force +ChoicesReadable="(183)Ignore Sp Before Dc|(183)Add Sp Before Dc|(183)Remove Sp Before Dc|(183)Force Sp Before Dc" +ValueDefault=ignore + +[Sp After Dc] +Category=1 +Description="<html>(184)Add or remove space after the '::' operator.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_dc=ignore|sp_after_dc=add|sp_after_dc=remove|sp_after_dc=force +ChoicesReadable="(184)Ignore Sp After Dc|(184)Add Sp After Dc|(184)Remove Sp After Dc|(184)Force Sp After Dc" +ValueDefault=ignore + +[Sp D Array Colon] +Category=1 +Description="<html>(185)(D) Add or remove around the D named array initializer ':' operator.</html>" +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="(185)Ignore Sp D Array Colon|(185)Add Sp D Array Colon|(185)Remove Sp D Array Colon|(185)Force Sp D Array Colon" +ValueDefault=ignore + +[Sp Not] +Category=1 +Description="<html>(186)Add or remove space after the '!' (not) unary operator.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_not=ignore|sp_not=add|sp_not=remove|sp_not=force +ChoicesReadable="(186)Ignore Sp Not|(186)Add Sp Not|(186)Remove Sp Not|(186)Force Sp Not" +ValueDefault=remove + +[Sp Inv] +Category=1 +Description="<html>(187)Add or remove space after the '~' (invert) unary operator.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_inv=ignore|sp_inv=add|sp_inv=remove|sp_inv=force +ChoicesReadable="(187)Ignore Sp Inv|(187)Add Sp Inv|(187)Remove Sp Inv|(187)Force Sp Inv" +ValueDefault=remove + +[Sp Addr] +Category=1 +Description="<html>(188)Add or remove space after the '&' (address-of) unary operator. This does not<br/>affect the spacing after a '&' that is part of a type.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_addr=ignore|sp_addr=add|sp_addr=remove|sp_addr=force +ChoicesReadable="(188)Ignore Sp Addr|(188)Add Sp Addr|(188)Remove Sp Addr|(188)Force Sp Addr" +ValueDefault=remove + +[Sp Member] +Category=1 +Description="<html>(189)Add or remove space around the '.' or '->' operators.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_member=ignore|sp_member=add|sp_member=remove|sp_member=force +ChoicesReadable="(189)Ignore Sp Member|(189)Add Sp Member|(189)Remove Sp Member|(189)Force Sp Member" +ValueDefault=remove + +[Sp Deref] +Category=1 +Description="<html>(190)Add or remove space after the '*' (dereference) unary operator. This does<br/>not affect the spacing after a '*' that is part of a type.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_deref=ignore|sp_deref=add|sp_deref=remove|sp_deref=force +ChoicesReadable="(190)Ignore Sp Deref|(190)Add Sp Deref|(190)Remove Sp Deref|(190)Force Sp Deref" +ValueDefault=remove + +[Sp Sign] +Category=1 +Description="<html>(191)Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_sign=ignore|sp_sign=add|sp_sign=remove|sp_sign=force +ChoicesReadable="(191)Ignore Sp Sign|(191)Add Sp Sign|(191)Remove Sp Sign|(191)Force Sp Sign" +ValueDefault=remove + +[Sp Incdec] +Category=1 +Description="<html>(192)Add or remove space between '++' and '--' the word to which it is being<br/>applied, as in '(--x)' or 'y++;'.<br/><br/>Default: remove</html>" +Enabled=false +EditorType=multiple +Choices=sp_incdec=ignore|sp_incdec=add|sp_incdec=remove|sp_incdec=force +ChoicesReadable="(192)Ignore Sp Incdec|(192)Add Sp Incdec|(192)Remove Sp Incdec|(192)Force Sp Incdec" +ValueDefault=remove + +[Sp Before Nl Cont] +Category=1 +Description="<html>(193)Add or remove space before a backslash-newline at the end of a line.<br/><br/>Default: add</html>" +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="(193)Ignore Sp Before Nl Cont|(193)Add Sp Before Nl Cont|(193)Remove Sp Before Nl Cont|(193)Force Sp Before Nl Cont" +ValueDefault=add + +[Sp After Oc Scope] +Category=1 +Description="<html>(194)(OC) Add or remove space after the scope '+' or '-', as in '-(void) foo;'<br/>or '+(int) bar;'.</html>" +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="(194)Ignore Sp After Oc Scope|(194)Add Sp After Oc Scope|(194)Remove Sp After Oc Scope|(194)Force Sp After Oc Scope" +ValueDefault=ignore + +[Sp After Oc Colon] +Category=1 +Description="<html>(195)(OC) Add or remove space after the colon in message specs,<br/>i.e. '-(int) f:(int) x;' vs. '-(int) f: (int) x;'.</html>" +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="(195)Ignore Sp After Oc Colon|(195)Add Sp After Oc Colon|(195)Remove Sp After Oc Colon|(195)Force Sp After Oc Colon" +ValueDefault=ignore + +[Sp Before Oc Colon] +Category=1 +Description="<html>(196)(OC) Add or remove space before the colon in message specs,<br/>i.e. '-(int) f: (int) x;' vs. '-(int) f : (int) x;'.</html>" +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="(196)Ignore Sp Before Oc Colon|(196)Add Sp Before Oc Colon|(196)Remove Sp Before Oc Colon|(196)Force Sp Before Oc Colon" +ValueDefault=ignore + +[Sp After Oc Dict Colon] +Category=1 +Description="<html>(197)(OC) Add or remove space after the colon in immutable dictionary expression<br/>'NSDictionary *test = @{@"foo" :@"bar"};'.</html>" +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 +ChoicesReadable="(197)Ignore Sp After Oc Dict Colon|(197)Add Sp After Oc Dict Colon|(197)Remove Sp After Oc Dict Colon|(197)Force Sp After Oc Dict Colon" +ValueDefault=ignore + +[Sp Before Oc Dict Colon] +Category=1 +Description="<html>(198)(OC) Add or remove space before the colon in immutable dictionary expression<br/>'NSDictionary *test = @{@"foo" :@"bar"};'.</html>" +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 +ChoicesReadable="(198)Ignore Sp Before Oc Dict Colon|(198)Add Sp Before Oc Dict Colon|(198)Remove Sp Before Oc Dict Colon|(198)Force Sp Before Oc Dict Colon" +ValueDefault=ignore + +[Sp After Send Oc Colon] +Category=1 +Description="<html>(199)(OC) Add or remove space after the colon in message specs,<br/>i.e. '[object setValue:1];' vs. '[object setValue: 1];'.</html>" +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="(199)Ignore Sp After Send Oc Colon|(199)Add Sp After Send Oc Colon|(199)Remove Sp After Send Oc Colon|(199)Force Sp After Send Oc Colon" +ValueDefault=ignore + +[Sp Before Send Oc Colon] +Category=1 +Description="<html>(200)(OC) Add or remove space before the colon in message specs,<br/>i.e. '[object setValue:1];' vs. '[object setValue :1];'.</html>" +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="(200)Ignore Sp Before Send Oc Colon|(200)Add Sp Before Send Oc Colon|(200)Remove Sp Before Send Oc Colon|(200)Force Sp Before Send Oc Colon" +ValueDefault=ignore + +[Sp After Oc Type] +Category=1 +Description="<html>(201)(OC) Add or remove space after the (type) in message specs,<br/>i.e. '-(int)f: (int) x;' vs. '-(int)f: (int)x;'.</html>" +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="(201)Ignore Sp After Oc Type|(201)Add Sp After Oc Type|(201)Remove Sp After Oc Type|(201)Force Sp After Oc Type" +ValueDefault=ignore + +[Sp After Oc Return Type] +Category=1 +Description="<html>(202)(OC) Add or remove space after the first (type) in message specs,<br/>i.e. '-(int) f:(int)x;' vs. '-(int)f:(int)x;'.</html>" +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="(202)Ignore Sp After Oc Return Type|(202)Add Sp After Oc Return Type|(202)Remove Sp After Oc Return Type|(202)Force Sp After Oc Return Type" +ValueDefault=ignore + +[Sp After Oc At Sel] +Category=1 +Description="<html>(203)(OC) Add or remove space between '@selector' and '(',<br/>i.e. '@selector(msgName)' vs. '@selector (msgName)'.<br/>Also applies to '@protocol()' constructs.</html>" +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="(203)Ignore Sp After Oc At Sel|(203)Add Sp After Oc At Sel|(203)Remove Sp After Oc At Sel|(203)Force Sp After Oc At Sel" +ValueDefault=ignore + +[Sp After Oc At Sel Parens] +Category=1 +Description="<html>(204)(OC) Add or remove space between '@selector(x)' and the following word,<br/>i.e. '@selector(foo) a:' vs. '@selector(foo)a:'.</html>" +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="(204)Ignore Sp After Oc At Sel Parens|(204)Add Sp After Oc At Sel Parens|(204)Remove Sp After Oc At Sel Parens|(204)Force Sp After Oc At Sel Parens" +ValueDefault=ignore + +[Sp Inside Oc At Sel Parens] +Category=1 +Description="<html>(205)(OC) Add or remove space inside '@selector' parentheses,<br/>i.e. '@selector(foo)' vs. '@selector( foo )'.<br/>Also applies to '@protocol()' constructs.</html>" +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="(205)Ignore Sp Inside Oc At Sel Parens|(205)Add Sp Inside Oc At Sel Parens|(205)Remove Sp Inside Oc At Sel Parens|(205)Force Sp Inside Oc At Sel Parens" +ValueDefault=ignore + +[Sp Before Oc Block Caret] +Category=1 +Description="<html>(206)(OC) Add or remove space before a block pointer caret,<br/>i.e. '^int (int arg){...}' vs. ' ^int (int arg){...}'.</html>" +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="(206)Ignore Sp Before Oc Block Caret|(206)Add Sp Before Oc Block Caret|(206)Remove Sp Before Oc Block Caret|(206)Force Sp Before Oc Block Caret" +ValueDefault=ignore + +[Sp After Oc Block Caret] +Category=1 +Description="<html>(207)(OC) Add or remove space after a block pointer caret,<br/>i.e. '^int (int arg){...}' vs. '^ int (int arg){...}'.</html>" +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="(207)Ignore Sp After Oc Block Caret|(207)Add Sp After Oc Block Caret|(207)Remove Sp After Oc Block Caret|(207)Force Sp After Oc Block Caret" +ValueDefault=ignore + +[Sp After Oc Msg Receiver] +Category=1 +Description="<html>(208)(OC) Add or remove space between the receiver and selector in a message,<br/>as in '[receiver selector ...]'.</html>" +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 +ChoicesReadable="(208)Ignore Sp After Oc Msg Receiver|(208)Add Sp After Oc Msg Receiver|(208)Remove Sp After Oc Msg Receiver|(208)Force Sp After Oc Msg Receiver" +ValueDefault=ignore + +[Sp After Oc Property] +Category=1 +Description="<html>(209)(OC) Add or remove space after '@property'.</html>" +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 +ChoicesReadable="(209)Ignore Sp After Oc Property|(209)Add Sp After Oc Property|(209)Remove Sp After Oc Property|(209)Force Sp After Oc Property" +ValueDefault=ignore + +[Sp After Oc Synchronized] +Category=1 +Description="<html>(210)(OC) Add or remove space between '@synchronized' and the open parenthesis,<br/>i.e. '@synchronized(foo)' vs. '@synchronized (foo)'.</html>" +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 +ChoicesReadable="(210)Ignore Sp After Oc Synchronized|(210)Add Sp After Oc Synchronized|(210)Remove Sp After Oc Synchronized|(210)Force Sp After Oc Synchronized" +ValueDefault=ignore + +[Sp Cond Colon] +Category=1 +Description="<html>(211)Add or remove space around the ':' in 'b ? t : f'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_cond_colon=ignore|sp_cond_colon=add|sp_cond_colon=remove|sp_cond_colon=force +ChoicesReadable="(211)Ignore Sp Cond Colon|(211)Add Sp Cond Colon|(211)Remove Sp Cond Colon|(211)Force Sp Cond Colon" +ValueDefault=ignore + +[Sp Cond Colon Before] +Category=1 +Description="<html>(212)Add or remove space before the ':' in 'b ? t : f'.<br/><br/>Overrides sp_cond_colon.</html>" +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 +ChoicesReadable="(212)Ignore Sp Cond Colon Before|(212)Add Sp Cond Colon Before|(212)Remove Sp Cond Colon Before|(212)Force Sp Cond Colon Before" +ValueDefault=ignore + +[Sp Cond Colon After] +Category=1 +Description="<html>(213)Add or remove space after the ':' in 'b ? t : f'.<br/><br/>Overrides sp_cond_colon.</html>" +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 +ChoicesReadable="(213)Ignore Sp Cond Colon After|(213)Add Sp Cond Colon After|(213)Remove Sp Cond Colon After|(213)Force Sp Cond Colon After" +ValueDefault=ignore + +[Sp Cond Question] +Category=1 +Description="<html>(214)Add or remove space around the '?' in 'b ? t : f'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_cond_question=ignore|sp_cond_question=add|sp_cond_question=remove|sp_cond_question=force +ChoicesReadable="(214)Ignore Sp Cond Question|(214)Add Sp Cond Question|(214)Remove Sp Cond Question|(214)Force Sp Cond Question" +ValueDefault=ignore + +[Sp Cond Question Before] +Category=1 +Description="<html>(215)Add or remove space before the '?' in 'b ? t : f'.<br/><br/>Overrides sp_cond_question.</html>" +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 +ChoicesReadable="(215)Ignore Sp Cond Question Before|(215)Add Sp Cond Question Before|(215)Remove Sp Cond Question Before|(215)Force Sp Cond Question Before" +ValueDefault=ignore + +[Sp Cond Question After] +Category=1 +Description="<html>(216)Add or remove space after the '?' in 'b ? t : f'.<br/><br/>Overrides sp_cond_question.</html>" +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 +ChoicesReadable="(216)Ignore Sp Cond Question After|(216)Add Sp Cond Question After|(216)Remove Sp Cond Question After|(216)Force Sp Cond Question After" +ValueDefault=ignore + +[Sp Cond Ternary Short] +Category=1 +Description="<html>(217)In the abbreviated ternary form '(a ?: b)', add or remove space between '?'<br/>and ':'.<br/><br/>Overrides all other sp_cond_* options.</html>" +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 +ChoicesReadable="(217)Ignore Sp Cond Ternary Short|(217)Add Sp Cond Ternary Short|(217)Remove Sp Cond Ternary Short|(217)Force Sp Cond Ternary Short" +ValueDefault=ignore + +[Sp Case Label] +Category=1 +Description="<html>(218)Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make<br/>sense here.</html>" +Enabled=false +EditorType=multiple +Choices=sp_case_label=ignore|sp_case_label=add|sp_case_label=remove|sp_case_label=force +ChoicesReadable="(218)Ignore Sp Case Label|(218)Add Sp Case Label|(218)Remove Sp Case Label|(218)Force Sp Case Label" +ValueDefault=ignore + +[Sp Range] +Category=1 +Description="<html>(219)(D) Add or remove space around the D '..' operator.</html>" +Enabled=false +EditorType=multiple +Choices=sp_range=ignore|sp_range=add|sp_range=remove|sp_range=force +ChoicesReadable="(219)Ignore Sp Range|(219)Add Sp Range|(219)Remove Sp Range|(219)Force Sp Range" +ValueDefault=ignore + +[Sp After For Colon] +Category=1 +Description="<html>(220)Add or remove space after ':' in a Java/C++11 range-based 'for',<br/>as in 'for (Type var : expr)'.</html>" +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 +ChoicesReadable="(220)Ignore Sp After For Colon|(220)Add Sp After For Colon|(220)Remove Sp After For Colon|(220)Force Sp After For Colon" +ValueDefault=ignore + +[Sp Before For Colon] +Category=1 +Description="<html>(221)Add or remove space before ':' in a Java/C++11 range-based 'for',<br/>as in 'for (Type var : expr)'.</html>" +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 +ChoicesReadable="(221)Ignore Sp Before For Colon|(221)Add Sp Before For Colon|(221)Remove Sp Before For Colon|(221)Force Sp Before For Colon" +ValueDefault=ignore + +[Sp Extern Paren] +Category=1 +Description="<html>(222)(D) Add or remove space between 'extern' and '(' as in 'extern (C)'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_extern_paren=ignore|sp_extern_paren=add|sp_extern_paren=remove|sp_extern_paren=force +ChoicesReadable="(222)Ignore Sp Extern Paren|(222)Add Sp Extern Paren|(222)Remove Sp Extern Paren|(222)Force Sp Extern Paren" +ValueDefault=ignore + +[Sp Cmt Cpp Start] +Category=1 +Description="<html>(223)Add or remove space after the opening of a C++ comment,<br/>i.e. '// A' vs. '//A'.</html>" +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="(223)Ignore Sp Cmt Cpp Start|(223)Add Sp Cmt Cpp Start|(223)Remove Sp Cmt Cpp Start|(223)Force Sp Cmt Cpp Start" +ValueDefault=ignore + +[Sp Cmt Cpp Doxygen] +Category=1 +Description="<html>(224)If true, space is added with sp_cmt_cpp_start will be added after doxygen<br/>sequences like '///', '///<', '//!' and '//!<'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_doxygen=true|sp_cmt_cpp_doxygen=false +ValueDefault=false + +[Sp Cmt Cpp Qttr] +Category=1 +Description="<html>(225)If true, space is added with sp_cmt_cpp_start will be added after Qt<br/>translator or meta-data comments like '//:', '//=', and '//~'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=sp_cmt_cpp_qttr=true|sp_cmt_cpp_qttr=false +ValueDefault=false + +[Sp Endif Cmt] +Category=1 +Description="<html>(226)Add or remove space between #else or #endif and a trailing comment.</html>" +Enabled=false +EditorType=multiple +Choices=sp_endif_cmt=ignore|sp_endif_cmt=add|sp_endif_cmt=remove|sp_endif_cmt=force +ChoicesReadable="(226)Ignore Sp Endif Cmt|(226)Add Sp Endif Cmt|(226)Remove Sp Endif Cmt|(226)Force Sp Endif Cmt" +ValueDefault=ignore + +[Sp After New] +Category=1 +Description="<html>(227)Add or remove space after 'new', 'delete' and 'delete[]'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_new=ignore|sp_after_new=add|sp_after_new=remove|sp_after_new=force +ChoicesReadable="(227)Ignore Sp After New|(227)Add Sp After New|(227)Remove Sp After New|(227)Force Sp After New" +ValueDefault=ignore + +[Sp Between New Paren] +Category=1 +Description="<html>(228)Add or remove space between 'new' and '(' in 'new()'.</html>" +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 +ChoicesReadable="(228)Ignore Sp Between New Paren|(228)Add Sp Between New Paren|(228)Remove Sp Between New Paren|(228)Force Sp Between New Paren" +ValueDefault=ignore + +[Sp After Newop Paren] +Category=1 +Description="<html>(229)Add or remove space between ')' and type in 'new(foo) BAR'.</html>" +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 +ChoicesReadable="(229)Ignore Sp After Newop Paren|(229)Add Sp After Newop Paren|(229)Remove Sp After Newop Paren|(229)Force Sp After Newop Paren" +ValueDefault=ignore + +[Sp Inside Newop Paren] +Category=1 +Description="<html>(230)Add or remove space inside parenthesis of the new operator<br/>as in 'new(foo) BAR'.</html>" +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 +ChoicesReadable="(230)Ignore Sp Inside Newop Paren|(230)Add Sp Inside Newop Paren|(230)Remove Sp Inside Newop Paren|(230)Force Sp Inside Newop Paren" +ValueDefault=ignore + +[Sp Inside Newop Paren Open] +Category=1 +Description="<html>(231)Add or remove space after the open parenthesis of the new operator,<br/>as in 'new(foo) BAR'.<br/><br/>Overrides sp_inside_newop_paren.</html>" +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 +ChoicesReadable="(231)Ignore Sp Inside Newop Paren Open|(231)Add Sp Inside Newop Paren Open|(231)Remove Sp Inside Newop Paren Open|(231)Force Sp Inside Newop Paren Open" +ValueDefault=ignore + +[Sp Inside Newop Paren Close] +Category=1 +Description="<html>(232)Add or remove space before the close parenthesis of the new operator,<br/>as in 'new(foo) BAR'.<br/><br/>Overrides sp_inside_newop_paren.</html>" +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 +ChoicesReadable="(232)Ignore Sp Inside Newop Paren Close|(232)Add Sp Inside Newop Paren Close|(232)Remove Sp Inside Newop Paren Close|(232)Force Sp Inside Newop Paren Close" +ValueDefault=ignore + +[Sp Before Tr Emb Cmt] +Category=1 +Description="<html>(233)Add or remove space before a trailing or embedded comment.</html>" +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="(233)Ignore Sp Before Tr Emb Cmt|(233)Add Sp Before Tr Emb Cmt|(233)Remove Sp Before Tr Emb Cmt|(233)Force Sp Before Tr Emb Cmt" +ValueDefault=ignore + +[Sp Num Before Tr Emb Cmt] +Category=1 +Description="<html>(234)Number of spaces before a trailing or embedded comment.</html>" +Enabled=false +EditorType=numeric +CallName="sp_num_before_tr_emb_cmt=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Sp Annotation Paren] +Category=1 +Description="<html>(235)(Java) Add or remove space between an annotation and the open parenthesis.</html>" +Enabled=false +EditorType=multiple +Choices=sp_annotation_paren=ignore|sp_annotation_paren=add|sp_annotation_paren=remove|sp_annotation_paren=force +ChoicesReadable="(235)Ignore Sp Annotation Paren|(235)Add Sp Annotation Paren|(235)Remove Sp Annotation Paren|(235)Force Sp Annotation Paren" +ValueDefault=ignore + +[Sp Skip Vbrace Tokens] +Category=1 +Description="<html>(236)If true, vbrace tokens are dropped to the previous token and skipped.</html>" +Enabled=false +EditorType=boolean +TrueFalse=sp_skip_vbrace_tokens=true|sp_skip_vbrace_tokens=false +ValueDefault=false + +[Sp After Noexcept] +Category=1 +Description="<html>(237)Add or remove space after 'noexcept'.</html>" +Enabled=false +EditorType=multiple +Choices=sp_after_noexcept=ignore|sp_after_noexcept=add|sp_after_noexcept=remove|sp_after_noexcept=force +ChoicesReadable="(237)Ignore Sp After Noexcept|(237)Add Sp After Noexcept|(237)Remove Sp After Noexcept|(237)Force Sp After Noexcept" +ValueDefault=ignore + +[Sp Vala After Translation] +Category=1 +Description="<html>(238)Add or remove space after '_'.</html>" +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 +ChoicesReadable="(238)Ignore Sp Vala After Translation|(238)Add Sp Vala After Translation|(238)Remove Sp Vala After Translation|(238)Force Sp Vala After Translation" +ValueDefault=ignore + +[Force Tab After Define] +Category=1 +Description="<html>(239)If true, a <TAB> is inserted after #define.</html>" +Enabled=false +EditorType=boolean +TrueFalse=force_tab_after_define=true|force_tab_after_define=false +ValueDefault=false + +[Indent Columns] +Category=2 +Description="<html>(240)The number of columns to indent per level. Usually 2, 3, 4, or 8.<br/><br/>Default: 8</html>" +Enabled=false +EditorType=numeric +CallName="indent_columns=" +MinVal=0 +MaxVal=16 +ValueDefault=8 + +[Indent Continue] +Category=2 +Description="<html>(241)The continuation indent. If non-zero, this overrides the indent of '(', '['<br/>and '=' continuation indents. Negative values are OK; negative value is<br/>absolute and not increased for each '(' or '[' level.<br/><br/>For FreeBSD, this is set to 4.</html>" +Enabled=false +EditorType=numeric +CallName="indent_continue=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Continue Class Head] +Category=2 +Description="<html>(242)The continuation indent, only for class header line(s). If non-zero, this<br/>overrides the indent of 'class' continuation indents.</html>" +Enabled=false +EditorType=numeric +CallName="indent_continue_class_head=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Single Newlines] +Category=2 +Description="<html>(243)Whether to indent empty lines (i.e. lines which contain only spaces before<br/>the newline character).</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_single_newlines=true|indent_single_newlines=false +ValueDefault=false + +[Indent Param] +Category=2 +Description="<html>(244)The continuation indent for func_*_param if they are true. If non-zero, this<br/>overrides the indent.</html>" +Enabled=false +EditorType=numeric +CallName="indent_param=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent With Tabs] +Category=2 +Description="<html>(245)How to use tabs when indenting code.<br/><br/>0: Spaces only<br/>1: Indent with tabs to brace level, align with spaces (default)<br/>2: Indent and align with tabs, using spaces when not on a tabstop<br/><br/>Default: 1</html>" +Enabled=true +EditorType=multiple +Choices="indent_with_tabs=0|indent_with_tabs=1|indent_with_tabs=2" +ChoicesReadable="(245)Spaces only|(245)Indent with tabs, align with spaces|(245)Indent and align with tabs" +ValueDefault=1 + +[Indent Cmt With Tabs] +Category=2 +Description="<html>(246)Whether to indent comments that are not at a brace level with tabs on a<br/>tabstop. Requires indent_with_tabs=2. If false, will use spaces.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_cmt_with_tabs=true|indent_cmt_with_tabs=false +ValueDefault=false + +[Indent Align String] +Category=2 +Description="<html>(247)Whether to indent strings broken by '\' so that they line up.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_align_string=true|indent_align_string=false +ValueDefault=false + +[Indent Xml String] +Category=2 +Description="<html>(248)The number of spaces to indent multi-line XML strings.<br/>Requires indent_align_string=true.</html>" +Enabled=false +EditorType=numeric +CallName="indent_xml_string=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Brace] +Category=2 +Description="<html>(249)Spaces to indent '{' from level.</html>" +Enabled=false +EditorType=numeric +CallName="indent_brace=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Braces] +Category=2 +Description="<html>(250)Whether braces are indented to the body level.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_braces=true|indent_braces=false +ValueDefault=false + +[Indent Braces No Func] +Category=2 +Description="<html>(251)Whether to disable indenting function braces if indent_braces=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_func=true|indent_braces_no_func=false +ValueDefault=false + +[Indent Braces No Class] +Category=2 +Description="<html>(252)Whether to disable indenting class braces if indent_braces=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_class=true|indent_braces_no_class=false +ValueDefault=false + +[Indent Braces No Struct] +Category=2 +Description="<html>(253)Whether to disable indenting struct braces if indent_braces=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_braces_no_struct=true|indent_braces_no_struct=false +ValueDefault=false + +[Indent Brace Parent] +Category=2 +Description="<html>(254)Whether to indent based on the size of the brace parent,<br/>i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_brace_parent=true|indent_brace_parent=false +ValueDefault=false + +[Indent Paren Open Brace] +Category=2 +Description="<html>(255)Whether to indent based on the open parenthesis instead of the open brace<br/>in '({\n'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_open_brace=true|indent_paren_open_brace=false +ValueDefault=false + +[Indent Cs Delegate Brace] +Category=2 +Description="<html>(256)(C#) Whether to indent the brace of a C# delegate by another level.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_cs_delegate_brace=true|indent_cs_delegate_brace=false +ValueDefault=false + +[Indent Cs Delegate Body] +Category=2 +Description="<html>(257)(C#) Whether to indent a C# delegate (to handle delegates with no brace) by<br/>another level.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_cs_delegate_body=true|indent_cs_delegate_body=false +ValueDefault=false + +[Indent Namespace] +Category=2 +Description="<html>(258)Whether to indent the body of a 'namespace'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_namespace=true|indent_namespace=false +ValueDefault=false + +[Indent Namespace Single Indent] +Category=2 +Description="<html>(259)Whether to indent only the first namespace, and not any nested namespaces.<br/>Requires indent_namespace=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_namespace_single_indent=true|indent_namespace_single_indent=false +ValueDefault=false + +[Indent Namespace Level] +Category=2 +Description="<html>(260)The number of spaces to indent a namespace block.<br/>If set to zero, use the value indent_columns</html>" +Enabled=false +EditorType=numeric +CallName="indent_namespace_level=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Namespace Limit] +Category=2 +Description="<html>(261)If the body of the namespace is longer than this number, it won't be<br/>indented. Requires indent_namespace=true. 0 means no limit.</html>" +Enabled=false +EditorType=numeric +CallName="indent_namespace_limit=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Indent Extern] +Category=2 +Description="<html>(262)Whether the 'extern "C"' body is indented.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_extern=true|indent_extern=false +ValueDefault=false + +[Indent Class] +Category=2 +Description="<html>(263)Whether the 'class' body is indented.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_class=true|indent_class=false +ValueDefault=false + +[Indent Class Colon] +Category=2 +Description="<html>(264)Whether to indent the stuff after a leading base class colon.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_class_colon=true|indent_class_colon=false +ValueDefault=false + +[Indent Class On Colon] +Category=2 +Description="<html>(265)Whether to indent based on a class colon instead of the stuff after the<br/>colon. Requires indent_class_colon=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_class_on_colon=true|indent_class_on_colon=false +ValueDefault=false + +[Indent Constr Colon] +Category=2 +Description="<html>(266)Whether to indent the stuff after a leading class initializer colon.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_constr_colon=true|indent_constr_colon=false +ValueDefault=false + +[Indent Ctor Init Leading] +Category=2 +Description="<html>(267)Virtual indent from the ':' for member initializers.<br/><br/>Default: 2</html>" +Enabled=false +EditorType=numeric +CallName="indent_ctor_init_leading=" +MinVal=0 +MaxVal=16 +ValueDefault=2 + +[Indent Ctor Init] +Category=2 +Description="<html>(268)Additional indent for constructor initializer list.<br/>Negative values decrease indent down to the first column.</html>" +Enabled=false +EditorType=numeric +CallName="indent_ctor_init=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Else If] +Category=2 +Description="<html>(269)Whether to indent 'if' following 'else' as a new block under the 'else'.<br/>If false, 'else\nif' is treated as 'else if' for indenting purposes.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_else_if=true|indent_else_if=false +ValueDefault=false + +[Indent Var Def Blk] +Category=2 +Description="<html>(270)Amount to indent variable declarations after a open brace.<br/><br/> <0: Relative<br/>>=0: Absolute</html>" +Enabled=false +EditorType=numeric +CallName="indent_var_def_blk=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Var Def Cont] +Category=2 +Description="<html>(271)Whether to indent continued variable declarations instead of aligning.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_var_def_cont=true|indent_var_def_cont=false +ValueDefault=false + +[Indent Shift] +Category=2 +Description="<html>(272)Whether to indent continued shift expressions ('<<' and '>>') instead of<br/>aligning. Set align_left_shift=false when enabling this.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_shift=true|indent_shift=false +ValueDefault=false + +[Indent Func Def Force Col1] +Category=2 +Description="<html>(273)Whether to force indentation of function definitions to start in column 1.</html>" +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="<html>(274)Whether to indent continued function call parameters one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_func_call_param=true|indent_func_call_param=false +ValueDefault=false + +[Indent Func Def Param] +Category=2 +Description="<html>(275)Whether to indent continued function definition parameters one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +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="<html>(276)for function definitions, only if indent_func_def_param is false<br/>Allows to align params when appropriate and indent them when not<br/>behave as if it was true if paren position is more than this value<br/>if paren position is more than the option value</html>" +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="<html>(277)Whether to indent continued function call prototype one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_func_proto_param=true|indent_func_proto_param=false +ValueDefault=false + +[Indent Func Class Param] +Category=2 +Description="<html>(278)Whether to indent continued function call declaration one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +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="<html>(279)Whether to indent continued class variable constructors one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +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="<html>(280)Whether to indent continued template parameter list one indent level,<br/>rather than aligning parameters under the open parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_template_param=true|indent_template_param=false +ValueDefault=false + +[Indent Func Param Double] +Category=2 +Description="<html>(281)Double the indent for indent_func_xxx_param options.<br/>Use both values of the options indent_columns and indent_param.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_func_param_double=true|indent_func_param_double=false +ValueDefault=false + +[Indent Func Const] +Category=2 +Description="<html>(282)Indentation column for standalone 'const' qualifier on a function<br/>prototype.</html>" +Enabled=false +EditorType=numeric +CallName="indent_func_const=" +MinVal=0 +MaxVal=69 +ValueDefault=0 + +[Indent Func Throw] +Category=2 +Description="<html>(283)Indentation column for standalone 'throw' qualifier on a function<br/>prototype.</html>" +Enabled=false +EditorType=numeric +CallName="indent_func_throw=" +MinVal=0 +MaxVal=41 +ValueDefault=0 + +[Indent Macro Brace] +Category=2 +Description="<html>(284)How to indent within a macro followed by a brace on the same line<br/>This allows reducing the indent in macros that have (for example)<br/>`do { ... } while (0)` blocks bracketing them.<br/><br/>true: add an indent for the brace on the same line as the macro<br/>false: do not add an indent for the brace on the same line as the macro<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_macro_brace=true|indent_macro_brace=false +ValueDefault=true + +[Indent Member] +Category=2 +Description="<html>(285)The number of spaces to indent a continued '->' or '.'.<br/>Usually set to 0, 1, or indent_columns.</html>" +Enabled=false +EditorType=numeric +CallName="indent_member=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Member Single] +Category=2 +Description="<html>(286)Whether lines broken at '.' or '->' should be indented by a single indent.<br/>The indent_member option will not be effective if this is set to true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_member_single=true|indent_member_single=false +ValueDefault=false + +[Indent Sing Line Comments] +Category=2 +Description="<html>(287)Spaces to indent single line ('//') comments on lines before code.</html>" +Enabled=false +EditorType=numeric +CallName="indent_sing_line_comments=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Sparen Extra] +Category=2 +Description="<html>(288)When opening a paren for a control statement (if, for, while, etc), increase<br/>the indent level by this value. Negative values decrease the indent level.</html>" +Enabled=false +EditorType=numeric +CallName="indent_sparen_extra=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Relative Single Line Comments] +Category=2 +Description="<html>(289)Whether to indent trailing single line ('//') comments relative to the code<br/>instead of trying to keep the same absolute column.</html>" +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="<html>(290)Spaces to indent 'case' from 'switch'. Usually 0 or indent_columns.</html>" +Enabled=false +EditorType=numeric +CallName="indent_switch_case=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Switch Break With Case] +Category=2 +Description="<html>(291)indent 'break' with 'case' from 'switch'.</html>" +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="<html>(292)Whether to indent preprocessor statements inside of switch statements.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_switch_pp=true|indent_switch_pp=false +ValueDefault=true + +[Indent Case Shift] +Category=2 +Description="<html>(293)Spaces to shift the 'case' line, without affecting any other lines.<br/>Usually 0.</html>" +Enabled=false +EditorType=numeric +CallName="indent_case_shift=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Case Brace] +Category=2 +Description="<html>(294)Spaces to indent '{' from 'case'. By default, the brace will appear under<br/>the 'c' in case. Usually set to 0 or indent_columns. Negative values are OK.</html>" +Enabled=false +EditorType=numeric +CallName="indent_case_brace=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Indent Col1 Comment] +Category=2 +Description="<html>(295)Whether to indent comments found in first column.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_col1_comment=true|indent_col1_comment=false +ValueDefault=false + +[Indent Col1 Multi String Literal] +Category=2 +Description="<html>(296)Whether to indent multi string literal in first column.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_col1_multi_string_literal=true|indent_col1_multi_string_literal=false +ValueDefault=false + +[Indent Label] +Category=2 +Description="<html>(297)How to indent goto labels.<br/><br/> >0: Absolute column where 1 is the leftmost column<br/><=0: Subtract from brace indent<br/><br/>Default: 1</html>" +Enabled=false +EditorType=numeric +CallName="indent_label=" +MinVal=-16 +MaxVal=16 +ValueDefault=1 + +[Indent Access Spec] +Category=2 +Description="<html>(298)How to indent access specifiers that are followed by a<br/>colon.<br/><br/> >0: Absolute column where 1 is the leftmost column<br/><=0: Subtract from brace indent<br/><br/>Default: 1</html>" +Enabled=false +EditorType=numeric +CallName="indent_access_spec=" +MinVal=-16 +MaxVal=16 +ValueDefault=1 + +[Indent Access Spec Body] +Category=2 +Description="<html>(299)Whether to indent the code after an access specifier by one level.<br/>If true, this option forces 'indent_access_spec=0'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_access_spec_body=true|indent_access_spec_body=false +ValueDefault=false + +[Indent Paren Nl] +Category=2 +Description="<html>(300)If an open parenthesis is followed by a newline, whether to indent the next<br/>line so that it lines up after the open parenthesis (not recommended).</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_nl=true|indent_paren_nl=false +ValueDefault=false + +[Indent Paren Close] +Category=2 +Description="<html>(301)How to indent a close parenthesis after a newline.<br/><br/>0: Indent to body level (default)<br/>1: Align under the open parenthesis<br/>2: Indent to the brace level</html>" +Enabled=false +EditorType=numeric +CallName="indent_paren_close=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Indent Paren After Func Def] +Category=2 +Description="<html>(302)Whether to indent the open parenthesis of a function definition,<br/>if the parenthesis is on its own line.</html>" +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="<html>(303)Whether to indent the open parenthesis of a function declaration,<br/>if the parenthesis is on its own line.</html>" +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="<html>(304)Whether to indent the open parenthesis of a function call,<br/>if the parenthesis is on its own line.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_paren_after_func_call=true|indent_paren_after_func_call=false +ValueDefault=false + +[Indent Comma Paren] +Category=2 +Description="<html>(305)Whether to indent a comma when inside a parenthesis.<br/>If true, aligns under the open parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_comma_paren=true|indent_comma_paren=false +ValueDefault=false + +[Indent Bool Paren] +Category=2 +Description="<html>(306)Whether to indent a Boolean operator when inside a parenthesis.<br/>If true, aligns under the open parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_bool_paren=true|indent_bool_paren=false +ValueDefault=false + +[Indent Semicolon For Paren] +Category=2 +Description="<html>(307)Whether to indent a semicolon when inside a for parenthesis.<br/>If true, aligns under the open for parenthesis.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_semicolon_for_paren=true|indent_semicolon_for_paren=false +ValueDefault=false + +[Indent First Bool Expr] +Category=2 +Description="<html>(308)Whether to align the first expression to following ones<br/>if indent_bool_paren=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_first_bool_expr=true|indent_first_bool_expr=false +ValueDefault=false + +[Indent First For Expr] +Category=2 +Description="<html>(309)Whether to align the first expression to following ones<br/>if indent_semicolon_for_paren=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_first_for_expr=true|indent_first_for_expr=false +ValueDefault=false + +[Indent Square Nl] +Category=2 +Description="<html>(310)If an open square is followed by a newline, whether to indent the next line<br/>so that it lines up after the open square (not recommended).</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_square_nl=true|indent_square_nl=false +ValueDefault=false + +[Indent Preserve Sql] +Category=2 +Description="<html>(311)(ESQL/C) Whether to preserve the relative indent of 'EXEC SQL' bodies.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_preserve_sql=true|indent_preserve_sql=false +ValueDefault=false + +[Indent Align Assign] +Category=2 +Description="<html>(312)Whether to align continued statements at the '='. If false or if the '=' is<br/>followed by a newline, the next line is indent one tab.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_align_assign=true|indent_align_assign=false +ValueDefault=true + +[Indent Off After Assign] +Category=2 +Description="<html>(313)If true, the indentation of the chunks after a '=' sequence will be set at<br/>LHS token indentation column before '='.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_off_after_assign=true|indent_off_after_assign=false +ValueDefault=false + +[Indent Align Paren] +Category=2 +Description="<html>(314)Whether to align continued statements at the '('. If false or the '(' is<br/>followed by a newline, the next line indent is one tab.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_align_paren=true|indent_align_paren=false +ValueDefault=true + +[Indent Oc Inside Msg Sel] +Category=2 +Description="<html>(315)(OC) Whether to indent Objective-C code inside message selectors.</html>" +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="<html>(316)(OC) Whether to indent Objective-C blocks at brace level instead of usual<br/>rules.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_oc_block=true|indent_oc_block=false +ValueDefault=false + +[Indent Oc Block Msg] +Category=2 +Description="<html>(317)(OC) Indent for Objective-C blocks in a message relative to the parameter<br/>name.<br/><br/>=0: Use indent_oc_block rules<br/>>0: Use specified number of spaces to indent</html>" +Enabled=false +EditorType=numeric +CallName="indent_oc_block_msg=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Oc Msg Colon] +Category=2 +Description="<html>(318)(OC) Minimum indent for subsequent parameters</html>" +Enabled=false +EditorType=numeric +CallName="indent_oc_msg_colon=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Indent Oc Msg Prioritize First Colon] +Category=2 +Description="<html>(319)(OC) Whether to prioritize aligning with initial colon (and stripping spaces<br/>from lines, if necessary).<br/><br/>Default: true</html>" +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="<html>(320)(OC) Whether to indent blocks the way that Xcode does by default<br/>(from the keyword if the parameter is on its own line; otherwise, from the<br/>previous indentation level). Requires indent_oc_block_msg=true.</html>" +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="<html>(321)(OC) Whether to indent blocks from where the brace is, relative to a<br/>message keyword. Requires indent_oc_block_msg=true.</html>" +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="<html>(322)(OC) Whether to indent blocks from where the brace is, relative to a message<br/>colon. Requires indent_oc_block_msg=true.</html>" +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="<html>(323)(OC) Whether to indent blocks from where the block caret is.<br/>Requires indent_oc_block_msg=true.</html>" +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="<html>(324)(OC) Whether to indent blocks from where the brace caret is.<br/>Requires indent_oc_block_msg=true.</html>" +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="<html>(325)When indenting after virtual brace open and newline add further spaces to<br/>reach this minimum indent.</html>" +Enabled=false +EditorType=numeric +CallName="indent_min_vbrace_open=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Indent Vbrace Open On Tabstop] +Category=2 +Description="<html>(326)Whether to add further spaces after regular indent to reach next tabstop<br/>when indenting after virtual brace open and newline.</html>" +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="<html>(327)How to indent after a brace followed by another token (not a newline).<br/>true: indent all contained lines to match the token<br/>false: indent all contained lines to match the brace<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_token_after_brace=true|indent_token_after_brace=false +ValueDefault=true + +[Indent Cpp Lambda Body] +Category=2 +Description="<html>(328)Whether to indent the body of a C++11 lambda.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_cpp_lambda_body=true|indent_cpp_lambda_body=false +ValueDefault=false + +[Indent Compound Literal Return] +Category=2 +Description="<html>(329)How to indent compound literals that are being returned.<br/>true: add both the indent from return & the compound literal open brace (ie:<br/> 2 indent levels)<br/>false: only indent 1 level, don't add the indent for the open brace, only add<br/> the indent for the return.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_compound_literal_return=true|indent_compound_literal_return=false +ValueDefault=true + +[Indent Using Block] +Category=2 +Description="<html>(330)(C#) Whether to indent a 'using' block if no braces are used.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_using_block=true|indent_using_block=false +ValueDefault=true + +[Indent Ternary Operator] +Category=2 +Description="<html>(331)How to indent the continuation of ternary operator.<br/><br/>0: Off (default)<br/>1: When the `if_false` is a continuation, indent it under `if_false`<br/>2: When the `:` is a continuation, indent it under `?`</html>" +Enabled=false +EditorType=numeric +CallName="indent_ternary_operator=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Indent Inside Ternary Operator] +Category=2 +Description="<html>(332)Whether to indent the statments inside ternary operator.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_inside_ternary_operator=true|indent_inside_ternary_operator=false +ValueDefault=false + +[Indent Off After Return] +Category=2 +Description="<html>(333)If true, the indentation of the chunks after a `return` sequence will be set at return indentation column.</html>" +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="<html>(334)If true, the indentation of the chunks after a `return new` sequence will be set at return indentation column.</html>" +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="<html>(335)If true, the tokens after return are indented with regular single indentation. By default (false) the indentation is after the return token.</html>" +Enabled=false +EditorType=boolean +TrueFalse=indent_single_after_return=true|indent_single_after_return=false +ValueDefault=false + +[Indent Ignore Asm Block] +Category=2 +Description="<html>(336)Whether to ignore indent and alignment for 'asm' blocks (i.e. assume they<br/>have their own indentation).</html>" +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="<html>(337)Don't indent the close parenthesis of a function definition,<br/>if the parenthesis is on its own line.</html>" +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="<html>(338)Whether to collapse empty blocks between '{' and '}'.<br/>If true, overrides nl_inside_empty_func</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_collapse_empty_body=true|nl_collapse_empty_body=false +ValueDefault=false + +[Nl Assign Leave One Liners] +Category=3 +Description="<html>(339)Don't split one-line braced assignments, as in 'foo_t f = { 1, 2 };'.</html>" +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="<html>(340)Don't split one-line braced statements inside a 'class xx { }' body.</html>" +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="<html>(341)Don't split one-line enums, as in 'enum foo { BAR = 15 };'</html>" +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="<html>(342)Don't split one-line get or set functions.</html>" +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="<html>(343)(C#) Don't split one-line property get or set functions.</html>" +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="<html>(344)Don't split one-line function definitions, as in 'int foo() { return 0; }'.<br/>might modify nl_func_type_name</html>" +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="<html>(345)Don't split one-line C++11 lambdas, as in '[]() { return 0; }'.</html>" +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="<html>(346)Don't split one-line if/else statements, as in 'if(...) b++;'.</html>" +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="<html>(347)Don't split one-line while statements, as in 'while(...) b++;'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_while_leave_one_liners=true|nl_while_leave_one_liners=false +ValueDefault=false + +[Nl For Leave One Liners] +Category=3 +Description="<html>(348)Don't split one-line for statements, as in 'for(...) b++;'.</html>" +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="<html>(349)(OC) Don't split one-line Objective-C messages.</html>" +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="<html>(350)(OC) Add or remove newline between method declaration and '{'.</html>" +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 +ChoicesReadable="(350)Ignore Nl Oc Mdef Brace|(350)Add Nl Oc Mdef Brace|(350)Remove Nl Oc Mdef Brace|(350)Force Nl Oc Mdef Brace" +ValueDefault=ignore + +[Nl Oc Block Brace] +Category=3 +Description="<html>(351)(OC) Add or remove newline between Objective-C block signature and '{'.</html>" +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 +ChoicesReadable="(351)Ignore Nl Oc Block Brace|(351)Add Nl Oc Block Brace|(351)Remove Nl Oc Block Brace|(351)Force Nl Oc Block Brace" +ValueDefault=ignore + +[Nl Oc Before Interface] +Category=3 +Description="<html>(352)(OC) Add or remove blank line before '@interface' statement.</html>" +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 +ChoicesReadable="(352)Ignore Nl Oc Before Interface|(352)Add Nl Oc Before Interface|(352)Remove Nl Oc Before Interface|(352)Force Nl Oc Before Interface" +ValueDefault=ignore + +[Nl Oc Before Implementation] +Category=3 +Description="<html>(353)(OC) Add or remove blank line before '@implementation' statement.</html>" +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 +ChoicesReadable="(353)Ignore Nl Oc Before Implementation|(353)Add Nl Oc Before Implementation|(353)Remove Nl Oc Before Implementation|(353)Force Nl Oc Before Implementation" +ValueDefault=ignore + +[Nl Oc Before End] +Category=3 +Description="<html>(354)(OC) Add or remove blank line before '@end' statement.</html>" +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 +ChoicesReadable="(354)Ignore Nl Oc Before End|(354)Add Nl Oc Before End|(354)Remove Nl Oc Before End|(354)Force Nl Oc Before End" +ValueDefault=ignore + +[Nl Oc Interface Brace] +Category=3 +Description="<html>(355)(OC) Add or remove newline between '@interface' and '{'.</html>" +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 +ChoicesReadable="(355)Ignore Nl Oc Interface Brace|(355)Add Nl Oc Interface Brace|(355)Remove Nl Oc Interface Brace|(355)Force Nl Oc Interface Brace" +ValueDefault=ignore + +[Nl Oc Implementation Brace] +Category=3 +Description="<html>(356)(OC) Add or remove newline between '@implementation' and '{'.</html>" +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 +ChoicesReadable="(356)Ignore Nl Oc Implementation Brace|(356)Add Nl Oc Implementation Brace|(356)Remove Nl Oc Implementation Brace|(356)Force Nl Oc Implementation Brace" +ValueDefault=ignore + +[Nl Start Of File] +Category=3 +Description="<html>(357)Add or remove newlines at the start of the file.</html>" +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="(357)Ignore Nl Start Of File|(357)Add Nl Start Of File|(357)Remove Nl Start Of File|(357)Force Nl Start Of File" +ValueDefault=ignore + +[Nl Start Of File Min] +Category=3 +Description="<html>(358)The minimum number of newlines at the start of the file (only used if<br/>nl_start_of_file is 'add' or 'force').</html>" +Enabled=false +EditorType=numeric +CallName="nl_start_of_file_min=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl End Of File] +Category=3 +Description="<html>(359)Add or remove newline at the end of the file.</html>" +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="(359)Ignore Nl End Of File|(359)Add Nl End Of File|(359)Remove Nl End Of File|(359)Force Nl End Of File" +ValueDefault=ignore + +[Nl End Of File Min] +Category=3 +Description="<html>(360)The minimum number of newlines at the end of the file (only used if<br/>nl_end_of_file is 'add' or 'force').</html>" +Enabled=false +EditorType=numeric +CallName="nl_end_of_file_min=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Assign Brace] +Category=3 +Description="<html>(361)Add or remove newline between '=' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_assign_brace=ignore|nl_assign_brace=add|nl_assign_brace=remove|nl_assign_brace=force +ChoicesReadable="(361)Ignore Nl Assign Brace|(361)Add Nl Assign Brace|(361)Remove Nl Assign Brace|(361)Force Nl Assign Brace" +ValueDefault=ignore + +[Nl Assign Square] +Category=3 +Description="<html>(362)(D) Add or remove newline between '=' and '['.</html>" +Enabled=false +EditorType=multiple +Choices=nl_assign_square=ignore|nl_assign_square=add|nl_assign_square=remove|nl_assign_square=force +ChoicesReadable="(362)Ignore Nl Assign Square|(362)Add Nl Assign Square|(362)Remove Nl Assign Square|(362)Force Nl Assign Square" +ValueDefault=ignore + +[Nl Tsquare Brace] +Category=3 +Description="<html>(363)Add or remove newline between '[]' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_tsquare_brace=ignore|nl_tsquare_brace=add|nl_tsquare_brace=remove|nl_tsquare_brace=force +ChoicesReadable="(363)Ignore Nl Tsquare Brace|(363)Add Nl Tsquare Brace|(363)Remove Nl Tsquare Brace|(363)Force Nl Tsquare Brace" +ValueDefault=ignore + +[Nl After Square Assign] +Category=3 +Description="<html>(364)(D) Add or remove newline after '= ['. Will also affect the newline before<br/>the ']'.</html>" +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="(364)Ignore Nl After Square Assign|(364)Add Nl After Square Assign|(364)Remove Nl After Square Assign|(364)Force Nl After Square Assign" +ValueDefault=ignore + +[Nl Fcall Brace] +Category=3 +Description="<html>(365)Add or remove newline between a function call's ')' and '{', as in<br/>'list_for_each(item, &list) { }'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_fcall_brace=ignore|nl_fcall_brace=add|nl_fcall_brace=remove|nl_fcall_brace=force +ChoicesReadable="(365)Ignore Nl Fcall Brace|(365)Add Nl Fcall Brace|(365)Remove Nl Fcall Brace|(365)Force Nl Fcall Brace" +ValueDefault=ignore + +[Nl Enum Brace] +Category=3 +Description="<html>(366)Add or remove newline between 'enum' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_enum_brace=ignore|nl_enum_brace=add|nl_enum_brace=remove|nl_enum_brace=force +ChoicesReadable="(366)Ignore Nl Enum Brace|(366)Add Nl Enum Brace|(366)Remove Nl Enum Brace|(366)Force Nl Enum Brace" +ValueDefault=ignore + +[Nl Enum Class] +Category=3 +Description="<html>(367)Add or remove newline between 'enum' and 'class'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_enum_class=ignore|nl_enum_class=add|nl_enum_class=remove|nl_enum_class=force +ChoicesReadable="(367)Ignore Nl Enum Class|(367)Add Nl Enum Class|(367)Remove Nl Enum Class|(367)Force Nl Enum Class" +ValueDefault=ignore + +[Nl Enum Class Identifier] +Category=3 +Description="<html>(368)Add or remove newline between 'enum class' and the identifier.</html>" +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 +ChoicesReadable="(368)Ignore Nl Enum Class Identifier|(368)Add Nl Enum Class Identifier|(368)Remove Nl Enum Class Identifier|(368)Force Nl Enum Class Identifier" +ValueDefault=ignore + +[Nl Enum Identifier Colon] +Category=3 +Description="<html>(369)Add or remove newline between 'enum class' type and ':'.</html>" +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 +ChoicesReadable="(369)Ignore Nl Enum Identifier Colon|(369)Add Nl Enum Identifier Colon|(369)Remove Nl Enum Identifier Colon|(369)Force Nl Enum Identifier Colon" +ValueDefault=ignore + +[Nl Enum Colon Type] +Category=3 +Description="<html>(370)Add or remove newline between 'enum class identifier :' and type.</html>" +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 +ChoicesReadable="(370)Ignore Nl Enum Colon Type|(370)Add Nl Enum Colon Type|(370)Remove Nl Enum Colon Type|(370)Force Nl Enum Colon Type" +ValueDefault=ignore + +[Nl Struct Brace] +Category=3 +Description="<html>(371)Add or remove newline between 'struct and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_struct_brace=ignore|nl_struct_brace=add|nl_struct_brace=remove|nl_struct_brace=force +ChoicesReadable="(371)Ignore Nl Struct Brace|(371)Add Nl Struct Brace|(371)Remove Nl Struct Brace|(371)Force Nl Struct Brace" +ValueDefault=ignore + +[Nl Union Brace] +Category=3 +Description="<html>(372)Add or remove newline between 'union' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_union_brace=ignore|nl_union_brace=add|nl_union_brace=remove|nl_union_brace=force +ChoicesReadable="(372)Ignore Nl Union Brace|(372)Add Nl Union Brace|(372)Remove Nl Union Brace|(372)Force Nl Union Brace" +ValueDefault=ignore + +[Nl If Brace] +Category=3 +Description="<html>(373)Add or remove newline between 'if' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_if_brace=ignore|nl_if_brace=add|nl_if_brace=remove|nl_if_brace=force +ChoicesReadable="(373)Ignore Nl If Brace|(373)Add Nl If Brace|(373)Remove Nl If Brace|(373)Force Nl If Brace" +ValueDefault=ignore + +[Nl Brace Else] +Category=3 +Description="<html>(374)Add or remove newline between '}' and 'else'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_else=ignore|nl_brace_else=add|nl_brace_else=remove|nl_brace_else=force +ChoicesReadable="(374)Ignore Nl Brace Else|(374)Add Nl Brace Else|(374)Remove Nl Brace Else|(374)Force Nl Brace Else" +ValueDefault=ignore + +[Nl Elseif Brace] +Category=3 +Description="<html>(375)Add or remove newline between 'else if' and '{'. If set to ignore,<br/>nl_if_brace is used instead.</html>" +Enabled=false +EditorType=multiple +Choices=nl_elseif_brace=ignore|nl_elseif_brace=add|nl_elseif_brace=remove|nl_elseif_brace=force +ChoicesReadable="(375)Ignore Nl Elseif Brace|(375)Add Nl Elseif Brace|(375)Remove Nl Elseif Brace|(375)Force Nl Elseif Brace" +ValueDefault=ignore + +[Nl Else Brace] +Category=3 +Description="<html>(376)Add or remove newline between 'else' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_else_brace=ignore|nl_else_brace=add|nl_else_brace=remove|nl_else_brace=force +ChoicesReadable="(376)Ignore Nl Else Brace|(376)Add Nl Else Brace|(376)Remove Nl Else Brace|(376)Force Nl Else Brace" +ValueDefault=ignore + +[Nl Else If] +Category=3 +Description="<html>(377)Add or remove newline between 'else' and 'if'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_else_if=ignore|nl_else_if=add|nl_else_if=remove|nl_else_if=force +ChoicesReadable="(377)Ignore Nl Else If|(377)Add Nl Else If|(377)Remove Nl Else If|(377)Force Nl Else If" +ValueDefault=ignore + +[Nl Before Opening Brace Func Class Def] +Category=3 +Description="<html>(378)Add or remove newline before '{' opening brace</html>" +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 +ChoicesReadable="(378)Ignore Nl Before Opening Brace Func Class Def|(378)Add Nl Before Opening Brace Func Class Def|(378)Remove Nl Before Opening Brace Func Class Def|(378)Force Nl Before Opening Brace Func Class Def" +ValueDefault=ignore + +[Nl Before If Closing Paren] +Category=3 +Description="<html>(379)Add or remove newline before 'if'/'else if' closing parenthesis.</html>" +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 +ChoicesReadable="(379)Ignore Nl Before If Closing Paren|(379)Add Nl Before If Closing Paren|(379)Remove Nl Before If Closing Paren|(379)Force Nl Before If Closing Paren" +ValueDefault=ignore + +[Nl Brace Finally] +Category=3 +Description="<html>(380)Add or remove newline between '}' and 'finally'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_finally=ignore|nl_brace_finally=add|nl_brace_finally=remove|nl_brace_finally=force +ChoicesReadable="(380)Ignore Nl Brace Finally|(380)Add Nl Brace Finally|(380)Remove Nl Brace Finally|(380)Force Nl Brace Finally" +ValueDefault=ignore + +[Nl Finally Brace] +Category=3 +Description="<html>(381)Add or remove newline between 'finally' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_finally_brace=ignore|nl_finally_brace=add|nl_finally_brace=remove|nl_finally_brace=force +ChoicesReadable="(381)Ignore Nl Finally Brace|(381)Add Nl Finally Brace|(381)Remove Nl Finally Brace|(381)Force Nl Finally Brace" +ValueDefault=ignore + +[Nl Try Brace] +Category=3 +Description="<html>(382)Add or remove newline between 'try' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_try_brace=ignore|nl_try_brace=add|nl_try_brace=remove|nl_try_brace=force +ChoicesReadable="(382)Ignore Nl Try Brace|(382)Add Nl Try Brace|(382)Remove Nl Try Brace|(382)Force Nl Try Brace" +ValueDefault=ignore + +[Nl Getset Brace] +Category=3 +Description="<html>(383)Add or remove newline between get/set and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_getset_brace=ignore|nl_getset_brace=add|nl_getset_brace=remove|nl_getset_brace=force +ChoicesReadable="(383)Ignore Nl Getset Brace|(383)Add Nl Getset Brace|(383)Remove Nl Getset Brace|(383)Force Nl Getset Brace" +ValueDefault=ignore + +[Nl For Brace] +Category=3 +Description="<html>(384)Add or remove newline between 'for' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_for_brace=ignore|nl_for_brace=add|nl_for_brace=remove|nl_for_brace=force +ChoicesReadable="(384)Ignore Nl For Brace|(384)Add Nl For Brace|(384)Remove Nl For Brace|(384)Force Nl For Brace" +ValueDefault=ignore + +[Nl Catch Brace] +Category=3 +Description="<html>(385)Add or remove newline before the '{' of a 'catch' statement, as in<br/>'catch (decl) <here> {'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_catch_brace=ignore|nl_catch_brace=add|nl_catch_brace=remove|nl_catch_brace=force +ChoicesReadable="(385)Ignore Nl Catch Brace|(385)Add Nl Catch Brace|(385)Remove Nl Catch Brace|(385)Force Nl Catch Brace" +ValueDefault=ignore + +[Nl Oc Catch Brace] +Category=3 +Description="<html>(386)(OC) Add or remove newline before the '{' of a '@catch' statement, as in<br/>'@catch (decl) <here> {'. If set to ignore, nl_catch_brace is used.</html>" +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 +ChoicesReadable="(386)Ignore Nl Oc Catch Brace|(386)Add Nl Oc Catch Brace|(386)Remove Nl Oc Catch Brace|(386)Force Nl Oc Catch Brace" +ValueDefault=ignore + +[Nl Brace Catch] +Category=3 +Description="<html>(387)Add or remove newline between '}' and 'catch'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_catch=ignore|nl_brace_catch=add|nl_brace_catch=remove|nl_brace_catch=force +ChoicesReadable="(387)Ignore Nl Brace Catch|(387)Add Nl Brace Catch|(387)Remove Nl Brace Catch|(387)Force Nl Brace Catch" +ValueDefault=ignore + +[Nl Oc Brace Catch] +Category=3 +Description="<html>(388)(OC) Add or remove newline between '}' and '@catch'. If set to ignore,<br/>nl_brace_catch is used.</html>" +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 +ChoicesReadable="(388)Ignore Nl Oc Brace Catch|(388)Add Nl Oc Brace Catch|(388)Remove Nl Oc Brace Catch|(388)Force Nl Oc Brace Catch" +ValueDefault=ignore + +[Nl Brace Square] +Category=3 +Description="<html>(389)Add or remove newline between '}' and ']'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_square=ignore|nl_brace_square=add|nl_brace_square=remove|nl_brace_square=force +ChoicesReadable="(389)Ignore Nl Brace Square|(389)Add Nl Brace Square|(389)Remove Nl Brace Square|(389)Force Nl Brace Square" +ValueDefault=ignore + +[Nl Brace Fparen] +Category=3 +Description="<html>(390)Add or remove newline between '}' and ')' in a function invocation.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_fparen=ignore|nl_brace_fparen=add|nl_brace_fparen=remove|nl_brace_fparen=force +ChoicesReadable="(390)Ignore Nl Brace Fparen|(390)Add Nl Brace Fparen|(390)Remove Nl Brace Fparen|(390)Force Nl Brace Fparen" +ValueDefault=ignore + +[Nl While Brace] +Category=3 +Description="<html>(391)Add or remove newline between 'while' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_while_brace=ignore|nl_while_brace=add|nl_while_brace=remove|nl_while_brace=force +ChoicesReadable="(391)Ignore Nl While Brace|(391)Add Nl While Brace|(391)Remove Nl While Brace|(391)Force Nl While Brace" +ValueDefault=ignore + +[Nl Scope Brace] +Category=3 +Description="<html>(392)(D) Add or remove newline between 'scope (x)' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_scope_brace=ignore|nl_scope_brace=add|nl_scope_brace=remove|nl_scope_brace=force +ChoicesReadable="(392)Ignore Nl Scope Brace|(392)Add Nl Scope Brace|(392)Remove Nl Scope Brace|(392)Force Nl Scope Brace" +ValueDefault=ignore + +[Nl Unittest Brace] +Category=3 +Description="<html>(393)(D) Add or remove newline between 'unittest' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_unittest_brace=ignore|nl_unittest_brace=add|nl_unittest_brace=remove|nl_unittest_brace=force +ChoicesReadable="(393)Ignore Nl Unittest Brace|(393)Add Nl Unittest Brace|(393)Remove Nl Unittest Brace|(393)Force Nl Unittest Brace" +ValueDefault=ignore + +[Nl Version Brace] +Category=3 +Description="<html>(394)(D) Add or remove newline between 'version (x)' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_version_brace=ignore|nl_version_brace=add|nl_version_brace=remove|nl_version_brace=force +ChoicesReadable="(394)Ignore Nl Version Brace|(394)Add Nl Version Brace|(394)Remove Nl Version Brace|(394)Force Nl Version Brace" +ValueDefault=ignore + +[Nl Using Brace] +Category=3 +Description="<html>(395)(C#) Add or remove newline between 'using' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_using_brace=ignore|nl_using_brace=add|nl_using_brace=remove|nl_using_brace=force +ChoicesReadable="(395)Ignore Nl Using Brace|(395)Add Nl Using Brace|(395)Remove Nl Using Brace|(395)Force Nl Using Brace" +ValueDefault=ignore + +[Nl Brace Brace] +Category=3 +Description="<html>(396)Add or remove newline between two open or close braces. Due to general<br/>newline/brace handling, REMOVE may not work.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_brace=ignore|nl_brace_brace=add|nl_brace_brace=remove|nl_brace_brace=force +ChoicesReadable="(396)Ignore Nl Brace Brace|(396)Add Nl Brace Brace|(396)Remove Nl Brace Brace|(396)Force Nl Brace Brace" +ValueDefault=ignore + +[Nl Do Brace] +Category=3 +Description="<html>(397)Add or remove newline between 'do' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_do_brace=ignore|nl_do_brace=add|nl_do_brace=remove|nl_do_brace=force +ChoicesReadable="(397)Ignore Nl Do Brace|(397)Add Nl Do Brace|(397)Remove Nl Do Brace|(397)Force Nl Do Brace" +ValueDefault=ignore + +[Nl Brace While] +Category=3 +Description="<html>(398)Add or remove newline between '}' and 'while' of 'do' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_while=ignore|nl_brace_while=add|nl_brace_while=remove|nl_brace_while=force +ChoicesReadable="(398)Ignore Nl Brace While|(398)Add Nl Brace While|(398)Remove Nl Brace While|(398)Force Nl Brace While" +ValueDefault=ignore + +[Nl Switch Brace] +Category=3 +Description="<html>(399)Add or remove newline between 'switch' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_switch_brace=ignore|nl_switch_brace=add|nl_switch_brace=remove|nl_switch_brace=force +ChoicesReadable="(399)Ignore Nl Switch Brace|(399)Add Nl Switch Brace|(399)Remove Nl Switch Brace|(399)Force Nl Switch Brace" +ValueDefault=ignore + +[Nl Synchronized Brace] +Category=3 +Description="<html>(400)Add or remove newline between 'synchronized' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_synchronized_brace=ignore|nl_synchronized_brace=add|nl_synchronized_brace=remove|nl_synchronized_brace=force +ChoicesReadable="(400)Ignore Nl Synchronized Brace|(400)Add Nl Synchronized Brace|(400)Remove Nl Synchronized Brace|(400)Force Nl Synchronized Brace" +ValueDefault=ignore + +[Nl Multi Line Cond] +Category=3 +Description="<html>(401)Add a newline between ')' and '{' if the ')' is on a different line than the<br/>if/for/etc.<br/><br/>Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch and<br/>nl_catch_brace.</html>" +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="<html>(402)Add a newline after '(' if an if/for/while/switch condition spans multiple<br/>lines</html>" +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 +ChoicesReadable="(402)Ignore Nl Multi Line Sparen Open|(402)Add Nl Multi Line Sparen Open|(402)Remove Nl Multi Line Sparen Open|(402)Force Nl Multi Line Sparen Open" +ValueDefault=ignore + +[Nl Multi Line Sparen Close] +Category=3 +Description="<html>(403)Add a newline before ')' if an if/for/while/switch condition spans multiple<br/>lines. Overrides nl_before_if_closing_paren if both are specified.</html>" +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 +ChoicesReadable="(403)Ignore Nl Multi Line Sparen Close|(403)Add Nl Multi Line Sparen Close|(403)Remove Nl Multi Line Sparen Close|(403)Force Nl Multi Line Sparen Close" +ValueDefault=ignore + +[Nl Multi Line Define] +Category=3 +Description="<html>(404)Force a newline in a define after the macro name for multi-line defines.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_multi_line_define=true|nl_multi_line_define=false +ValueDefault=false + +[Nl Before Case] +Category=3 +Description="<html>(405)Whether to add a newline before 'case', and a blank line before a 'case'<br/>statement that follows a ';' or '}'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_before_case=true|nl_before_case=false +ValueDefault=false + +[Nl After Case] +Category=3 +Description="<html>(406)Whether to add a newline after a 'case' statement.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_case=true|nl_after_case=false +ValueDefault=false + +[Nl Case Colon Brace] +Category=3 +Description="<html>(407)Add or remove newline between a case ':' and '{'.<br/><br/>Overrides nl_after_case.</html>" +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="(407)Ignore Nl Case Colon Brace|(407)Add Nl Case Colon Brace|(407)Remove Nl Case Colon Brace|(407)Force Nl Case Colon Brace" +ValueDefault=ignore + +[Nl Before Throw] +Category=3 +Description="<html>(408)Add or remove newline between ')' and 'throw'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_throw=ignore|nl_before_throw=add|nl_before_throw=remove|nl_before_throw=force +ChoicesReadable="(408)Ignore Nl Before Throw|(408)Add Nl Before Throw|(408)Remove Nl Before Throw|(408)Force Nl Before Throw" +ValueDefault=ignore + +[Nl Namespace Brace] +Category=3 +Description="<html>(409)Add or remove newline between 'namespace' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_namespace_brace=ignore|nl_namespace_brace=add|nl_namespace_brace=remove|nl_namespace_brace=force +ChoicesReadable="(409)Ignore Nl Namespace Brace|(409)Add Nl Namespace Brace|(409)Remove Nl Namespace Brace|(409)Force Nl Namespace Brace" +ValueDefault=ignore + +[Nl Template Class] +Category=3 +Description="<html>(410)Add or remove newline after 'template<...>' of a template class.</html>" +Enabled=false +EditorType=multiple +Choices=nl_template_class=ignore|nl_template_class=add|nl_template_class=remove|nl_template_class=force +ChoicesReadable="(410)Ignore Nl Template Class|(410)Add Nl Template Class|(410)Remove Nl Template Class|(410)Force Nl Template Class" +ValueDefault=ignore + +[Nl Template Class Decl] +Category=3 +Description="<html>(411)Add or remove newline after 'template<...>' of a template class declaration.<br/><br/>Overrides nl_template_class.</html>" +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 +ChoicesReadable="(411)Ignore Nl Template Class Decl|(411)Add Nl Template Class Decl|(411)Remove Nl Template Class Decl|(411)Force Nl Template Class Decl" +ValueDefault=ignore + +[Nl Template Class Decl Special] +Category=3 +Description="<html>(412)Add or remove newline after 'template<>' of a specialized class declaration.<br/><br/>Overrides nl_template_class_decl.</html>" +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 +ChoicesReadable="(412)Ignore Nl Template Class Decl Special|(412)Add Nl Template Class Decl Special|(412)Remove Nl Template Class Decl Special|(412)Force Nl Template Class Decl Special" +ValueDefault=ignore + +[Nl Template Class Def] +Category=3 +Description="<html>(413)Add or remove newline after 'template<...>' of a template class definition.<br/><br/>Overrides nl_template_class.</html>" +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 +ChoicesReadable="(413)Ignore Nl Template Class Def|(413)Add Nl Template Class Def|(413)Remove Nl Template Class Def|(413)Force Nl Template Class Def" +ValueDefault=ignore + +[Nl Template Class Def Special] +Category=3 +Description="<html>(414)Add or remove newline after 'template<>' of a specialized class definition.<br/><br/>Overrides nl_template_class_def.</html>" +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 +ChoicesReadable="(414)Ignore Nl Template Class Def Special|(414)Add Nl Template Class Def Special|(414)Remove Nl Template Class Def Special|(414)Force Nl Template Class Def Special" +ValueDefault=ignore + +[Nl Template Func] +Category=3 +Description="<html>(415)Add or remove newline after 'template<...>' of a template function.</html>" +Enabled=false +EditorType=multiple +Choices=nl_template_func=ignore|nl_template_func=add|nl_template_func=remove|nl_template_func=force +ChoicesReadable="(415)Ignore Nl Template Func|(415)Add Nl Template Func|(415)Remove Nl Template Func|(415)Force Nl Template Func" +ValueDefault=ignore + +[Nl Template Func Decl] +Category=3 +Description="<html>(416)Add or remove newline after 'template<...>' of a template function<br/>declaration.<br/><br/>Overrides nl_template_func.</html>" +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 +ChoicesReadable="(416)Ignore Nl Template Func Decl|(416)Add Nl Template Func Decl|(416)Remove Nl Template Func Decl|(416)Force Nl Template Func Decl" +ValueDefault=ignore + +[Nl Template Func Decl Special] +Category=3 +Description="<html>(417)Add or remove newline after 'template<>' of a specialized function<br/>declaration.<br/><br/>Overrides nl_template_func_decl.</html>" +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 +ChoicesReadable="(417)Ignore Nl Template Func Decl Special|(417)Add Nl Template Func Decl Special|(417)Remove Nl Template Func Decl Special|(417)Force Nl Template Func Decl Special" +ValueDefault=ignore + +[Nl Template Func Def] +Category=3 +Description="<html>(418)Add or remove newline after 'template<...>' of a template function<br/>definition.<br/><br/>Overrides nl_template_func.</html>" +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 +ChoicesReadable="(418)Ignore Nl Template Func Def|(418)Add Nl Template Func Def|(418)Remove Nl Template Func Def|(418)Force Nl Template Func Def" +ValueDefault=ignore + +[Nl Template Func Def Special] +Category=3 +Description="<html>(419)Add or remove newline after 'template<>' of a specialized function<br/>definition.<br/><br/>Overrides nl_template_func_def.</html>" +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 +ChoicesReadable="(419)Ignore Nl Template Func Def Special|(419)Add Nl Template Func Def Special|(419)Remove Nl Template Func Def Special|(419)Force Nl Template Func Def Special" +ValueDefault=ignore + +[Nl Template Var] +Category=3 +Description="<html>(420)Add or remove newline after 'template<...>' of a template variable.</html>" +Enabled=false +EditorType=multiple +Choices=nl_template_var=ignore|nl_template_var=add|nl_template_var=remove|nl_template_var=force +ChoicesReadable="(420)Ignore Nl Template Var|(420)Add Nl Template Var|(420)Remove Nl Template Var|(420)Force Nl Template Var" +ValueDefault=ignore + +[Nl Template Using] +Category=3 +Description="<html>(421)Add or remove newline between 'template<...>' and 'using' of a templated<br/>type alias.</html>" +Enabled=false +EditorType=multiple +Choices=nl_template_using=ignore|nl_template_using=add|nl_template_using=remove|nl_template_using=force +ChoicesReadable="(421)Ignore Nl Template Using|(421)Add Nl Template Using|(421)Remove Nl Template Using|(421)Force Nl Template Using" +ValueDefault=ignore + +[Nl Class Brace] +Category=3 +Description="<html>(422)Add or remove newline between 'class' and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_class_brace=ignore|nl_class_brace=add|nl_class_brace=remove|nl_class_brace=force +ChoicesReadable="(422)Ignore Nl Class Brace|(422)Add Nl Class Brace|(422)Remove Nl Class Brace|(422)Force Nl Class Brace" +ValueDefault=ignore + +[Nl Class Init Args] +Category=3 +Description="<html>(423)Add or remove newline before or after (depending on pos_class_comma,<br/>may not be IGNORE) each',' in the base class list.</html>" +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="(423)Ignore Nl Class Init Args|(423)Add Nl Class Init Args|(423)Remove Nl Class Init Args|(423)Force Nl Class Init Args" +ValueDefault=ignore + +[Nl Constr Init Args] +Category=3 +Description="<html>(424)Add or remove newline after each ',' in the constructor member<br/>initialization. Related to nl_constr_colon, pos_constr_colon and<br/>pos_constr_comma.</html>" +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 +ChoicesReadable="(424)Ignore Nl Constr Init Args|(424)Add Nl Constr Init Args|(424)Remove Nl Constr Init Args|(424)Force Nl Constr Init Args" +ValueDefault=ignore + +[Nl Enum Own Lines] +Category=3 +Description="<html>(425)Add or remove newline before first element, after comma, and after last<br/>element, in 'enum'.</html>" +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 +ChoicesReadable="(425)Ignore Nl Enum Own Lines|(425)Add Nl Enum Own Lines|(425)Remove Nl Enum Own Lines|(425)Force Nl Enum Own Lines" +ValueDefault=ignore + +[Nl Func Type Name] +Category=3 +Description="<html>(426)Add or remove newline between return type and function name in a function<br/>definition.<br/>might be modified by nl_func_leave_one_liners</html>" +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="(426)Ignore Nl Func Type Name|(426)Add Nl Func Type Name|(426)Remove Nl Func Type Name|(426)Force Nl Func Type Name" +ValueDefault=ignore + +[Nl Func Type Name Class] +Category=3 +Description="<html>(427)Add or remove newline between return type and function name inside a class<br/>definition. If set to ignore, nl_func_type_name or nl_func_proto_type_name<br/>is used instead.</html>" +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="(427)Ignore Nl Func Type Name Class|(427)Add Nl Func Type Name Class|(427)Remove Nl Func Type Name Class|(427)Force Nl Func Type Name Class" +ValueDefault=ignore + +[Nl Func Class Scope] +Category=3 +Description="<html>(428)Add or remove newline between class specification and '::'<br/>in 'void A::f() { }'. Only appears in separate member implementation (does<br/>not appear with in-line implementation).</html>" +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 +ChoicesReadable="(428)Ignore Nl Func Class Scope|(428)Add Nl Func Class Scope|(428)Remove Nl Func Class Scope|(428)Force Nl Func Class Scope" +ValueDefault=ignore + +[Nl Func Scope Name] +Category=3 +Description="<html>(429)Add or remove newline between function scope and name, as in<br/>'void A :: <here> f() { }'.</html>" +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="(429)Ignore Nl Func Scope Name|(429)Add Nl Func Scope Name|(429)Remove Nl Func Scope Name|(429)Force Nl Func Scope Name" +ValueDefault=ignore + +[Nl Func Proto Type Name] +Category=3 +Description="<html>(430)Add or remove newline between return type and function name in a prototype.</html>" +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="(430)Ignore Nl Func Proto Type Name|(430)Add Nl Func Proto Type Name|(430)Remove Nl Func Proto Type Name|(430)Force Nl Func Proto Type Name" +ValueDefault=ignore + +[Nl Func Paren] +Category=3 +Description="<html>(431)Add or remove newline between a function name and the opening '(' in the<br/>declaration.</html>" +Enabled=false +EditorType=multiple +Choices=nl_func_paren=ignore|nl_func_paren=add|nl_func_paren=remove|nl_func_paren=force +ChoicesReadable="(431)Ignore Nl Func Paren|(431)Add Nl Func Paren|(431)Remove Nl Func Paren|(431)Force Nl Func Paren" +ValueDefault=ignore + +[Nl Func Paren Empty] +Category=3 +Description="<html>(432)Overrides nl_func_paren for functions with no parameters.</html>" +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 +ChoicesReadable="(432)Ignore Nl Func Paren Empty|(432)Add Nl Func Paren Empty|(432)Remove Nl Func Paren Empty|(432)Force Nl Func Paren Empty" +ValueDefault=ignore + +[Nl Func Def Paren] +Category=3 +Description="<html>(433)Add or remove newline between a function name and the opening '(' in the<br/>definition.</html>" +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="(433)Ignore Nl Func Def Paren|(433)Add Nl Func Def Paren|(433)Remove Nl Func Def Paren|(433)Force Nl Func Def Paren" +ValueDefault=ignore + +[Nl Func Def Paren Empty] +Category=3 +Description="<html>(434)Overrides nl_func_def_paren for functions with no parameters.</html>" +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 +ChoicesReadable="(434)Ignore Nl Func Def Paren Empty|(434)Add Nl Func Def Paren Empty|(434)Remove Nl Func Def Paren Empty|(434)Force Nl Func Def Paren Empty" +ValueDefault=ignore + +[Nl Func Call Paren] +Category=3 +Description="<html>(435)Add or remove newline between a function name and the opening '(' in the<br/>call.</html>" +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 +ChoicesReadable="(435)Ignore Nl Func Call Paren|(435)Add Nl Func Call Paren|(435)Remove Nl Func Call Paren|(435)Force Nl Func Call Paren" +ValueDefault=ignore + +[Nl Func Call Paren Empty] +Category=3 +Description="<html>(436)Overrides nl_func_call_paren for functions with no parameters.</html>" +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 +ChoicesReadable="(436)Ignore Nl Func Call Paren Empty|(436)Add Nl Func Call Paren Empty|(436)Remove Nl Func Call Paren Empty|(436)Force Nl Func Call Paren Empty" +ValueDefault=ignore + +[Nl Func Decl Start] +Category=3 +Description="<html>(437)Add or remove newline after '(' in a function declaration.</html>" +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="(437)Ignore Nl Func Decl Start|(437)Add Nl Func Decl Start|(437)Remove Nl Func Decl Start|(437)Force Nl Func Decl Start" +ValueDefault=ignore + +[Nl Func Def Start] +Category=3 +Description="<html>(438)Add or remove newline after '(' in a function definition.</html>" +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="(438)Ignore Nl Func Def Start|(438)Add Nl Func Def Start|(438)Remove Nl Func Def Start|(438)Force Nl Func Def Start" +ValueDefault=ignore + +[Nl Func Decl Start Single] +Category=3 +Description="<html>(439)Overrides nl_func_decl_start when there is only one parameter.</html>" +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="(439)Ignore Nl Func Decl Start Single|(439)Add Nl Func Decl Start Single|(439)Remove Nl Func Decl Start Single|(439)Force Nl Func Decl Start Single" +ValueDefault=ignore + +[Nl Func Def Start Single] +Category=3 +Description="<html>(440)Overrides nl_func_def_start when there is only one parameter.</html>" +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="(440)Ignore Nl Func Def Start Single|(440)Add Nl Func Def Start Single|(440)Remove Nl Func Def Start Single|(440)Force Nl Func Def Start Single" +ValueDefault=ignore + +[Nl Func Decl Start Multi Line] +Category=3 +Description="<html>(441)Whether to add a newline after '(' in a function declaration if '(' and ')'<br/>are in different lines. If false, nl_func_decl_start is used instead.</html>" +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="<html>(442)Whether to add a newline after '(' in a function definition if '(' and ')'<br/>are in different lines. If false, nl_func_def_start is used instead.</html>" +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="<html>(443)Add or remove newline after each ',' in a function declaration.</html>" +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="(443)Ignore Nl Func Decl Args|(443)Add Nl Func Decl Args|(443)Remove Nl Func Decl Args|(443)Force Nl Func Decl Args" +ValueDefault=ignore + +[Nl Func Def Args] +Category=3 +Description="<html>(444)Add or remove newline after each ',' in a function definition.</html>" +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="(444)Ignore Nl Func Def Args|(444)Add Nl Func Def Args|(444)Remove Nl Func Def Args|(444)Force Nl Func Def Args" +ValueDefault=ignore + +[Nl Func Call Args] +Category=3 +Description="<html>(445)Add or remove newline after each ',' in a function call.</html>" +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 +ChoicesReadable="(445)Ignore Nl Func Call Args|(445)Add Nl Func Call Args|(445)Remove Nl Func Call Args|(445)Force Nl Func Call Args" +ValueDefault=ignore + +[Nl Func Decl Args Multi Line] +Category=3 +Description="<html>(446)Whether to add a newline after each ',' in a function declaration if '('<br/>and ')' are in different lines. If false, nl_func_decl_args is used instead.</html>" +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="<html>(447)Whether to add a newline after each ',' in a function definition if '('<br/>and ')' are in different lines. If false, nl_func_def_args is used instead.</html>" +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="<html>(448)Add or remove newline before the ')' in a function declaration.</html>" +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="(448)Ignore Nl Func Decl End|(448)Add Nl Func Decl End|(448)Remove Nl Func Decl End|(448)Force Nl Func Decl End" +ValueDefault=ignore + +[Nl Func Def End] +Category=3 +Description="<html>(449)Add or remove newline before the ')' in a function definition.</html>" +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="(449)Ignore Nl Func Def End|(449)Add Nl Func Def End|(449)Remove Nl Func Def End|(449)Force Nl Func Def End" +ValueDefault=ignore + +[Nl Func Decl End Single] +Category=3 +Description="<html>(450)Overrides nl_func_decl_end when there is only one parameter.</html>" +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="(450)Ignore Nl Func Decl End Single|(450)Add Nl Func Decl End Single|(450)Remove Nl Func Decl End Single|(450)Force Nl Func Decl End Single" +ValueDefault=ignore + +[Nl Func Def End Single] +Category=3 +Description="<html>(451)Overrides nl_func_def_end when there is only one parameter.</html>" +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="(451)Ignore Nl Func Def End Single|(451)Add Nl Func Def End Single|(451)Remove Nl Func Def End Single|(451)Force Nl Func Def End Single" +ValueDefault=ignore + +[Nl Func Decl End Multi Line] +Category=3 +Description="<html>(452)Whether to add a newline before ')' in a function declaration if '(' and ')'<br/>are in different lines. If false, nl_func_decl_end is used instead.</html>" +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="<html>(453)Whether to add a newline before ')' in a function definition if '(' and ')'<br/>are in different lines. If false, nl_func_def_end is used instead.</html>" +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="<html>(454)Add or remove newline between '()' in a function declaration.</html>" +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="(454)Ignore Nl Func Decl Empty|(454)Add Nl Func Decl Empty|(454)Remove Nl Func Decl Empty|(454)Force Nl Func Decl Empty" +ValueDefault=ignore + +[Nl Func Def Empty] +Category=3 +Description="<html>(455)Add or remove newline between '()' in a function definition.</html>" +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="(455)Ignore Nl Func Def Empty|(455)Add Nl Func Def Empty|(455)Remove Nl Func Def Empty|(455)Force Nl Func Def Empty" +ValueDefault=ignore + +[Nl Func Call Empty] +Category=3 +Description="<html>(456)Add or remove newline between '()' in a function call.</html>" +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 +ChoicesReadable="(456)Ignore Nl Func Call Empty|(456)Add Nl Func Call Empty|(456)Remove Nl Func Call Empty|(456)Force Nl Func Call Empty" +ValueDefault=ignore + +[Nl Func Call Start] +Category=3 +Description="<html>(457)Whether to add a newline after '(' in a function call,<br/>has preference over nl_func_call_start_multi_line.</html>" +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 +ChoicesReadable="(457)Ignore Nl Func Call Start|(457)Add Nl Func Call Start|(457)Remove Nl Func Call Start|(457)Force Nl Func Call Start" +ValueDefault=ignore + +[Nl Func Call End] +Category=3 +Description="<html>(458)Whether to add a newline before ')' in a function call.</html>" +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 +ChoicesReadable="(458)Ignore Nl Func Call End|(458)Add Nl Func Call End|(458)Remove Nl Func Call End|(458)Force Nl Func Call End" +ValueDefault=ignore + +[Nl Func Call Start Multi Line] +Category=3 +Description="<html>(459)Whether to add a newline after '(' in a function call if '(' and ')' are in<br/>different lines.</html>" +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="<html>(460)Whether to add a newline after each ',' in a function call if '(' and ')'<br/>are in different lines.</html>" +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="<html>(461)Whether to add a newline before ')' in a function call if '(' and ')' are in<br/>different lines.</html>" +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="<html>(462)Whether to respect nl_func_call_XXX option incase of closure args.</html>" +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="<html>(463)Whether to add a newline after '<' of a template parameter list.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_template_start=true|nl_template_start=false +ValueDefault=false + +[Nl Template Args] +Category=3 +Description="<html>(464)Whether to add a newline after each ',' in a template parameter list.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_template_args=true|nl_template_args=false +ValueDefault=false + +[Nl Template End] +Category=3 +Description="<html>(465)Whether to add a newline before '>' of a template parameter list.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_template_end=true|nl_template_end=false +ValueDefault=false + +[Nl Oc Msg Args] +Category=3 +Description="<html>(466)(OC) Whether to put each Objective-C message parameter on a separate line.<br/>See nl_oc_msg_leave_one_liner.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_oc_msg_args=true|nl_oc_msg_args=false +ValueDefault=false + +[Nl Fdef Brace] +Category=3 +Description="<html>(467)Add or remove newline between function signature and '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_fdef_brace=ignore|nl_fdef_brace=add|nl_fdef_brace=remove|nl_fdef_brace=force +ChoicesReadable="(467)Ignore Nl Fdef Brace|(467)Add Nl Fdef Brace|(467)Remove Nl Fdef Brace|(467)Force Nl Fdef Brace" +ValueDefault=ignore + +[Nl Fdef Brace Cond] +Category=3 +Description="<html>(468)Add or remove newline between function signature and '{',<br/>if signature ends with ')'. Overrides nl_fdef_brace.</html>" +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 +ChoicesReadable="(468)Ignore Nl Fdef Brace Cond|(468)Add Nl Fdef Brace Cond|(468)Remove Nl Fdef Brace Cond|(468)Force Nl Fdef Brace Cond" +ValueDefault=ignore + +[Nl Cpp Ldef Brace] +Category=3 +Description="<html>(469)Add or remove newline between C++11 lambda signature and '{'.</html>" +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 +ChoicesReadable="(469)Ignore Nl Cpp Ldef Brace|(469)Add Nl Cpp Ldef Brace|(469)Remove Nl Cpp Ldef Brace|(469)Force Nl Cpp Ldef Brace" +ValueDefault=ignore + +[Nl Return Expr] +Category=3 +Description="<html>(470)Add or remove newline between 'return' and the return expression.</html>" +Enabled=false +EditorType=multiple +Choices=nl_return_expr=ignore|nl_return_expr=add|nl_return_expr=remove|nl_return_expr=force +ChoicesReadable="(470)Ignore Nl Return Expr|(470)Add Nl Return Expr|(470)Remove Nl Return Expr|(470)Force Nl Return Expr" +ValueDefault=ignore + +[Nl After Semicolon] +Category=3 +Description="<html>(471)Whether to add a newline after semicolons, except in 'for' statements.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_semicolon=true|nl_after_semicolon=false +ValueDefault=false + +[Nl Paren Dbrace Open] +Category=3 +Description="<html>(472)(Java) Add or remove newline between the ')' and '{{' of the double brace<br/>initializer.</html>" +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 +ChoicesReadable="(472)Ignore Nl Paren Dbrace Open|(472)Add Nl Paren Dbrace Open|(472)Remove Nl Paren Dbrace Open|(472)Force Nl Paren Dbrace Open" +ValueDefault=ignore + +[Nl Type Brace Init Lst] +Category=3 +Description="<html>(473)Whether to add a newline after the type in an unnamed temporary<br/>direct-list-initialization.</html>" +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 +ChoicesReadable="(473)Ignore Nl Type Brace Init Lst|(473)Add Nl Type Brace Init Lst|(473)Remove Nl Type Brace Init Lst|(473)Force Nl Type Brace Init Lst" +ValueDefault=ignore + +[Nl Type Brace Init Lst Open] +Category=3 +Description="<html>(474)Whether to add a newline after the open brace in an unnamed temporary<br/>direct-list-initialization.</html>" +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 +ChoicesReadable="(474)Ignore Nl Type Brace Init Lst Open|(474)Add Nl Type Brace Init Lst Open|(474)Remove Nl Type Brace Init Lst Open|(474)Force Nl Type Brace Init Lst Open" +ValueDefault=ignore + +[Nl Type Brace Init Lst Close] +Category=3 +Description="<html>(475)Whether to add a newline before the close brace in an unnamed temporary<br/>direct-list-initialization.</html>" +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 +ChoicesReadable="(475)Ignore Nl Type Brace Init Lst Close|(475)Add Nl Type Brace Init Lst Close|(475)Remove Nl Type Brace Init Lst Close|(475)Force Nl Type Brace Init Lst Close" +ValueDefault=ignore + +[Nl After Brace Open] +Category=3 +Description="<html>(476)Whether to add a newline after '{'. This also adds a newline before the<br/>matching '}'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_brace_open=true|nl_after_brace_open=false +ValueDefault=false + +[Nl After Brace Open Cmt] +Category=3 +Description="<html>(477)Whether to add a newline between the open brace and a trailing single-line<br/>comment. Requires nl_after_brace_open=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_brace_open_cmt=true|nl_after_brace_open_cmt=false +ValueDefault=false + +[Nl After Vbrace Open] +Category=3 +Description="<html>(478)Whether to add a newline after a virtual brace open with a non-empty body.<br/>These occur in un-braced if/while/do/for statement bodies.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_vbrace_open=true|nl_after_vbrace_open=false +ValueDefault=false + +[Nl After Vbrace Open Empty] +Category=3 +Description="<html>(479)Whether to add a newline after a virtual brace open with an empty body.<br/>These occur in un-braced if/while/do/for statement bodies.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_vbrace_open_empty=true|nl_after_vbrace_open_empty=false +ValueDefault=false + +[Nl After Brace Close] +Category=3 +Description="<html>(480)Whether to add a newline after '}'. Does not apply if followed by a<br/>necessary ';'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_brace_close=true|nl_after_brace_close=false +ValueDefault=false + +[Nl After Vbrace Close] +Category=3 +Description="<html>(481)Whether to add a newline after a virtual brace close,<br/>as in 'if (foo) a++; <here> return;'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_vbrace_close=true|nl_after_vbrace_close=false +ValueDefault=false + +[Nl Brace Struct Var] +Category=3 +Description="<html>(482)Add or remove newline between the close brace and identifier,<br/>as in 'struct { int a; } <here> b;'. Affects enumerations, unions and<br/>structures. If set to ignore, uses nl_after_brace_close.</html>" +Enabled=false +EditorType=multiple +Choices=nl_brace_struct_var=ignore|nl_brace_struct_var=add|nl_brace_struct_var=remove|nl_brace_struct_var=force +ChoicesReadable="(482)Ignore Nl Brace Struct Var|(482)Add Nl Brace Struct Var|(482)Remove Nl Brace Struct Var|(482)Force Nl Brace Struct Var" +ValueDefault=ignore + +[Nl Define Macro] +Category=3 +Description="<html>(483)Whether to alter newlines in '#define' macros.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_define_macro=true|nl_define_macro=false +ValueDefault=false + +[Nl Squeeze Paren Close] +Category=3 +Description="<html>(484)Whether to alter newlines between consecutive parenthesis closes. The number<br/>of closing parentheses in a line will depend on respective open parenthesis<br/>lines.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_squeeze_paren_close=true|nl_squeeze_paren_close=false +ValueDefault=false + +[Nl Squeeze Ifdef] +Category=3 +Description="<html>(485)Whether to remove blanks after '#ifxx' and '#elxx', or before '#elxx' and<br/>'#endif'. Does not affect top-level #ifdefs.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_squeeze_ifdef=true|nl_squeeze_ifdef=false +ValueDefault=false + +[Nl Squeeze Ifdef Top Level] +Category=3 +Description="<html>(486)Makes the nl_squeeze_ifdef option affect the top-level #ifdefs as well.</html>" +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="<html>(487)Add or remove blank line before 'if'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_if=ignore|nl_before_if=add|nl_before_if=remove|nl_before_if=force +ChoicesReadable="(487)Ignore Nl Before If|(487)Add Nl Before If|(487)Remove Nl Before If|(487)Force Nl Before If" +ValueDefault=ignore + +[Nl After If] +Category=3 +Description="<html>(488)Add or remove blank line after 'if' statement. Add/Force work only if the<br/>next token is not a closing brace.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_if=ignore|nl_after_if=add|nl_after_if=remove|nl_after_if=force +ChoicesReadable="(488)Ignore Nl After If|(488)Add Nl After If|(488)Remove Nl After If|(488)Force Nl After If" +ValueDefault=ignore + +[Nl Before For] +Category=3 +Description="<html>(489)Add or remove blank line before 'for'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_for=ignore|nl_before_for=add|nl_before_for=remove|nl_before_for=force +ChoicesReadable="(489)Ignore Nl Before For|(489)Add Nl Before For|(489)Remove Nl Before For|(489)Force Nl Before For" +ValueDefault=ignore + +[Nl After For] +Category=3 +Description="<html>(490)Add or remove blank line after 'for' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_for=ignore|nl_after_for=add|nl_after_for=remove|nl_after_for=force +ChoicesReadable="(490)Ignore Nl After For|(490)Add Nl After For|(490)Remove Nl After For|(490)Force Nl After For" +ValueDefault=ignore + +[Nl Before While] +Category=3 +Description="<html>(491)Add or remove blank line before 'while'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_while=ignore|nl_before_while=add|nl_before_while=remove|nl_before_while=force +ChoicesReadable="(491)Ignore Nl Before While|(491)Add Nl Before While|(491)Remove Nl Before While|(491)Force Nl Before While" +ValueDefault=ignore + +[Nl After While] +Category=3 +Description="<html>(492)Add or remove blank line after 'while' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_while=ignore|nl_after_while=add|nl_after_while=remove|nl_after_while=force +ChoicesReadable="(492)Ignore Nl After While|(492)Add Nl After While|(492)Remove Nl After While|(492)Force Nl After While" +ValueDefault=ignore + +[Nl Before Switch] +Category=3 +Description="<html>(493)Add or remove blank line before 'switch'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_switch=ignore|nl_before_switch=add|nl_before_switch=remove|nl_before_switch=force +ChoicesReadable="(493)Ignore Nl Before Switch|(493)Add Nl Before Switch|(493)Remove Nl Before Switch|(493)Force Nl Before Switch" +ValueDefault=ignore + +[Nl After Switch] +Category=3 +Description="<html>(494)Add or remove blank line after 'switch' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_switch=ignore|nl_after_switch=add|nl_after_switch=remove|nl_after_switch=force +ChoicesReadable="(494)Ignore Nl After Switch|(494)Add Nl After Switch|(494)Remove Nl After Switch|(494)Force Nl After Switch" +ValueDefault=ignore + +[Nl Before Synchronized] +Category=3 +Description="<html>(495)Add or remove blank line before 'synchronized'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_synchronized=ignore|nl_before_synchronized=add|nl_before_synchronized=remove|nl_before_synchronized=force +ChoicesReadable="(495)Ignore Nl Before Synchronized|(495)Add Nl Before Synchronized|(495)Remove Nl Before Synchronized|(495)Force Nl Before Synchronized" +ValueDefault=ignore + +[Nl After Synchronized] +Category=3 +Description="<html>(496)Add or remove blank line after 'synchronized' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_synchronized=ignore|nl_after_synchronized=add|nl_after_synchronized=remove|nl_after_synchronized=force +ChoicesReadable="(496)Ignore Nl After Synchronized|(496)Add Nl After Synchronized|(496)Remove Nl After Synchronized|(496)Force Nl After Synchronized" +ValueDefault=ignore + +[Nl Before Do] +Category=3 +Description="<html>(497)Add or remove blank line before 'do'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_do=ignore|nl_before_do=add|nl_before_do=remove|nl_before_do=force +ChoicesReadable="(497)Ignore Nl Before Do|(497)Add Nl Before Do|(497)Remove Nl Before Do|(497)Force Nl Before Do" +ValueDefault=ignore + +[Nl After Do] +Category=3 +Description="<html>(498)Add or remove blank line after 'do/while' statement.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_do=ignore|nl_after_do=add|nl_after_do=remove|nl_after_do=force +ChoicesReadable="(498)Ignore Nl After Do|(498)Add Nl After Do|(498)Remove Nl After Do|(498)Force Nl After Do" +ValueDefault=ignore + +[Nl Before Return] +Category=3 +Description="<html>(499)Whether to put a blank line before 'return' statements, unless after an open<br/>brace.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_before_return=true|nl_before_return=false +ValueDefault=false + +[Nl After Return] +Category=3 +Description="<html>(500)Whether to put a blank line after 'return' statements, unless followed by a<br/>close brace.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_return=true|nl_after_return=false +ValueDefault=false + +[Nl Before Member] +Category=3 +Description="<html>(501)Whether to put a blank line before a member '.' or '->' operators.</html>" +Enabled=false +EditorType=multiple +Choices=nl_before_member=ignore|nl_before_member=add|nl_before_member=remove|nl_before_member=force +ChoicesReadable="(501)Ignore Nl Before Member|(501)Add Nl Before Member|(501)Remove Nl Before Member|(501)Force Nl Before Member" +ValueDefault=ignore + +[Nl After Member] +Category=3 +Description="<html>(502)(Java) Whether to put a blank line after a member '.' or '->' operators.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_member=ignore|nl_after_member=add|nl_after_member=remove|nl_after_member=force +ChoicesReadable="(502)Ignore Nl After Member|(502)Add Nl After Member|(502)Remove Nl After Member|(502)Force Nl After Member" +ValueDefault=ignore + +[Nl Ds Struct Enum Cmt] +Category=3 +Description="<html>(503)Whether to double-space commented-entries in 'struct'/'union'/'enum'.</html>" +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="<html>(504)Whether to force a newline before '}' of a 'struct'/'union'/'enum'.<br/>(Lower priority than eat_blanks_before_close_brace.)</html>" +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="<html>(505)Add or remove newline before or after (depending on pos_class_colon) a class<br/>colon, as in 'class Foo <here> : <or here> public Bar'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_class_colon=ignore|nl_class_colon=add|nl_class_colon=remove|nl_class_colon=force +ChoicesReadable="(505)Ignore Nl Class Colon|(505)Add Nl Class Colon|(505)Remove Nl Class Colon|(505)Force Nl Class Colon" +ValueDefault=ignore + +[Nl Constr Colon] +Category=3 +Description="<html>(506)Add or remove newline around a class constructor colon. The exact position<br/>depends on nl_constr_init_args, pos_constr_colon and pos_constr_comma.</html>" +Enabled=false +EditorType=multiple +Choices=nl_constr_colon=ignore|nl_constr_colon=add|nl_constr_colon=remove|nl_constr_colon=force +ChoicesReadable="(506)Ignore Nl Constr Colon|(506)Add Nl Constr Colon|(506)Remove Nl Constr Colon|(506)Force Nl Constr Colon" +ValueDefault=ignore + +[Nl Namespace Two To One Liner] +Category=3 +Description="<html>(507)Whether to collapse a two-line namespace, like 'namespace foo\n{ decl; }'<br/>into a single line. If true, prevents other brace newline rules from turning<br/>such code into four lines.</html>" +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="<html>(508)Whether to remove a newline in simple unbraced if statements, turning them<br/>into one-liners, as in 'if(b)\n i++;' => 'if(b) i++;'.</html>" +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="<html>(509)Whether to remove a newline in simple unbraced for statements, turning them<br/>into one-liners, as in 'for (...)\n stmt;' => 'for (...) stmt;'.</html>" +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="<html>(510)Whether to remove a newline in simple unbraced while statements, turning<br/>them into one-liners, as in 'while (expr)\n stmt;' => 'while (expr) stmt;'.</html>" +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="<html>(511)Whether to collapse a function definition whose body (not counting braces)<br/>is only one line so that the entire definition (prototype, braces, body) is<br/>a single line.</html>" +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="<html>(512)Whether to collapse a function definition whose body (not counting braces)<br/>is only one line so that the entire definition (prototype, braces, body) is<br/>a single line.</html>" +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="<html>(513)Whether to split one-line simple unbraced if statements into two lines by<br/>adding a newline, as in 'if(b) <here> i++;'.</html>" +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="<html>(514)Whether to split one-line simple unbraced for statements into two lines by<br/>adding a newline, as in 'for (...) <here> stmt;'.</html>" +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="<html>(515)Whether to split one-line simple unbraced while statements into two lines by<br/>adding a newline, as in 'while (expr) <here> stmt;'.</html>" +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="<html>(516)Don't add a newline before a cpp-comment in a parameter list of a function<br/>call.</html>" +Enabled=false +EditorType=boolean +TrueFalse=donot_add_nl_before_cpp_comment=true|donot_add_nl_before_cpp_comment=false +ValueDefault=false + +[Nl Max] +Category=4 +Description="<html>(517)The maximum number of consecutive newlines (3 = 2 blank lines).</html>" +Enabled=false +EditorType=numeric +CallName="nl_max=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Max Blank In Func] +Category=4 +Description="<html>(518)The maximum number of consecutive newlines in a function.</html>" +Enabled=false +EditorType=numeric +CallName="nl_max_blank_in_func=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Inside Empty Func] +Category=4 +Description="<html>(519)The number of newlines inside an empty function body.<br/>This option is overridden by nl_collapse_empty_body=true</html>" +Enabled=false +EditorType=numeric +CallName="nl_inside_empty_func=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Func Body Proto] +Category=4 +Description="<html>(520)The number of newlines before a function prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_func_body_proto=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Func Body Def] +Category=4 +Description="<html>(521)The number of newlines before a multi-line function definition.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_func_body_def=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Func Class Proto] +Category=4 +Description="<html>(522)The number of newlines before a class constructor/destructor prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_func_class_proto=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Func Class Def] +Category=4 +Description="<html>(523)The number of newlines before a class constructor/destructor definition.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_func_class_def=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Proto] +Category=4 +Description="<html>(524)The number of newlines after a function prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_proto=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Proto Group] +Category=4 +Description="<html>(525)The number of newlines after a function prototype, if not followed by<br/>another function prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_proto_group=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Class Proto] +Category=4 +Description="<html>(526)The number of newlines after a class constructor/destructor prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_class_proto=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Class Proto Group] +Category=4 +Description="<html>(527)The number of newlines after a class constructor/destructor prototype,<br/>if not followed by another constructor/destructor prototype.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_class_proto_group=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Class Leave One Liner Groups] +Category=4 +Description="<html>(528)Whether one-line method definitions inside a class body should be treated<br/>as if they were prototypes for the purposes of adding newlines.<br/><br/>Requires nl_class_leave_one_liners=true. Overrides nl_before_func_body_def<br/>and nl_before_func_class_def for one-liners.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_class_leave_one_liner_groups=true|nl_class_leave_one_liner_groups=false +ValueDefault=false + +[Nl After Func Body] +Category=4 +Description="<html>(529)The number of newlines after '}' of a multi-line function body.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_body=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Body Class] +Category=4 +Description="<html>(530)The number of newlines after '}' of a multi-line function body in a class<br/>declaration. Also affects class constructors/destructors.<br/><br/>Overrides nl_after_func_body.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_body_class=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Func Body One Liner] +Category=4 +Description="<html>(531)The number of newlines after '}' of a single line function body. Also<br/>affects class constructors/destructors.<br/><br/>Overrides nl_after_func_body and nl_after_func_body_class.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_func_body_one_liner=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Func Var Def Blk] +Category=4 +Description="<html>(532)The number of blank lines after a block of variable definitions at the top<br/>of a function body.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_func_var_def_blk=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Typedef Blk Start] +Category=4 +Description="<html>(533)The number of newlines before a block of typedefs. If nl_after_access_spec<br/>is non-zero, that option takes precedence.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_typedef_blk_start=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Typedef Blk End] +Category=4 +Description="<html>(534)The number of newlines after a block of typedefs.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_typedef_blk_end=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Typedef Blk In] +Category=4 +Description="<html>(535)The maximum number of consecutive newlines within a block of typedefs.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_typedef_blk_in=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Var Def Blk Start] +Category=4 +Description="<html>(536)The number of newlines before a block of variable definitions not at the top<br/>of a function body. If nl_after_access_spec is non-zero, that option takes<br/>precedence.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_var_def_blk_start=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Var Def Blk End] +Category=4 +Description="<html>(537)The number of newlines after a block of variable definitions not at the top<br/>of a function body.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_var_def_blk_end=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Var Def Blk In] +Category=4 +Description="<html>(538)The maximum number of consecutive newlines within a block of variable<br/>definitions.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_var_def_blk_in=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Block Comment] +Category=4 +Description="<html>(539)The minimum number of newlines before a multi-line comment.<br/>Doesn't apply if after a brace open or another multi-line comment.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_block_comment=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before C Comment] +Category=4 +Description="<html>(540)The minimum number of newlines before a single-line C comment.<br/>Doesn't apply if after a brace open or other single-line C comments.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_c_comment=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Cpp Comment] +Category=4 +Description="<html>(541)The minimum number of newlines before a CPP comment.<br/>Doesn't apply if after a brace open or other CPP comments.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_cpp_comment=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Multiline Comment] +Category=4 +Description="<html>(542)Whether to force a newline after a multi-line comment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_multiline_comment=true|nl_after_multiline_comment=false +ValueDefault=false + +[Nl After Label Colon] +Category=4 +Description="<html>(543)Whether to force a newline after a label's colon.</html>" +Enabled=false +EditorType=boolean +TrueFalse=nl_after_label_colon=true|nl_after_label_colon=false +ValueDefault=false + +[Nl After Struct] +Category=4 +Description="<html>(544)The number of newlines after '}' or ';' of a struct/enum/union definition.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_struct=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Class] +Category=4 +Description="<html>(545)The number of newlines before a class definition.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_class=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Class] +Category=4 +Description="<html>(546)The number of newlines after '}' or ';' of a class definition.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_class=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Namespace] +Category=4 +Description="<html>(547)The number of newlines before a namespace.</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_namespace=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Inside Namespace] +Category=4 +Description="<html>(548)The number of newlines after '{' of a namespace. This also adds newlines<br/>before the matching '}'.<br/><br/>0: Apply eat_blanks_after_open_brace or eat_blanks_before_close_brace if<br/> applicable, otherwise no change.<br/><br/>Overrides eat_blanks_after_open_brace and eat_blanks_before_close_brace.</html>" +Enabled=false +EditorType=numeric +CallName="nl_inside_namespace=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Namespace] +Category=4 +Description="<html>(549)The number of newlines after '}' of a namespace.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_namespace=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Access Spec] +Category=4 +Description="<html>(550)The number of newlines before an access specifier label. This also includes<br/>the Qt-specific 'signals:' and 'slots:'. Will not change the newline count<br/>if after a brace open.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_access_spec=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Access Spec] +Category=4 +Description="<html>(551)The number of newlines after an access specifier label. This also includes<br/>the Qt-specific 'signals:' and 'slots:'. Will not change the newline count<br/>if after a brace open.<br/><br/>0: No change (default).<br/><br/>Overrides nl_typedef_blk_start and nl_var_def_blk_start.</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_access_spec=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Comment Func Def] +Category=4 +Description="<html>(552)The number of newlines between a function definition and the function<br/>comment, as in '// comment\n <here> void foo() {...}'.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_comment_func_def=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Try Catch Finally] +Category=4 +Description="<html>(553)The number of newlines after a try-catch-finally block that isn't followed<br/>by a brace close.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_try_catch_finally=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Around Cs Property] +Category=4 +Description="<html>(554)(C#) The number of newlines before and after a property, indexer or event<br/>declaration.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_around_cs_property=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Between Get Set] +Category=4 +Description="<html>(555)(C#) The number of newlines between the get/set/add/remove handlers.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_between_get_set=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Property Brace] +Category=4 +Description="<html>(556)(C#) Add or remove newline between property and the '{'.</html>" +Enabled=false +EditorType=multiple +Choices=nl_property_brace=ignore|nl_property_brace=add|nl_property_brace=remove|nl_property_brace=force +ChoicesReadable="(556)Ignore Nl Property Brace|(556)Add Nl Property Brace|(556)Remove Nl Property Brace|(556)Force Nl Property Brace" +ValueDefault=ignore + +[Eat Blanks After Open Brace] +Category=4 +Description="<html>(557)Whether to remove blank lines after '{'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=eat_blanks_after_open_brace=true|eat_blanks_after_open_brace=false +ValueDefault=false + +[Eat Blanks Before Close Brace] +Category=4 +Description="<html>(558)Whether to remove blank lines before '}'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=eat_blanks_before_close_brace=true|eat_blanks_before_close_brace=false +ValueDefault=false + +[Nl Remove Extra Newlines] +Category=4 +Description="<html>(559)How aggressively to remove extra newlines not in preprocessor.<br/><br/>0: No change (default)<br/>1: Remove most newlines not handled by other config<br/>2: Remove all newlines and reformat completely by config</html>" +Enabled=false +EditorType=numeric +CallName="nl_remove_extra_newlines=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Nl After Annotation] +Category=4 +Description="<html>(560)(Java) Add or remove newline after an annotation statement. Only affects<br/>annotations that are after a newline.</html>" +Enabled=false +EditorType=multiple +Choices=nl_after_annotation=ignore|nl_after_annotation=add|nl_after_annotation=remove|nl_after_annotation=force +ChoicesReadable="(560)Ignore Nl After Annotation|(560)Add Nl After Annotation|(560)Remove Nl After Annotation|(560)Force Nl After Annotation" +ValueDefault=ignore + +[Nl Between Annotation] +Category=4 +Description="<html>(561)(Java) Add or remove newline between two annotations.</html>" +Enabled=false +EditorType=multiple +Choices=nl_between_annotation=ignore|nl_between_annotation=add|nl_between_annotation=remove|nl_between_annotation=force +ChoicesReadable="(561)Ignore Nl Between Annotation|(561)Add Nl Between Annotation|(561)Remove Nl Between Annotation|(561)Force Nl Between Annotation" +ValueDefault=ignore + +[Nl Before Whole File Ifdef] +Category=4 +Description="<html>(562)The number of newlines before a whole-file #ifdef.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_whole_file_ifdef=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Whole File Ifdef] +Category=4 +Description="<html>(563)The number of newlines after a whole-file #ifdef.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_whole_file_ifdef=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl Before Whole File Endif] +Category=4 +Description="<html>(564)The number of newlines before a whole-file #endif.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_before_whole_file_endif=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Nl After Whole File Endif] +Category=4 +Description="<html>(565)The number of newlines after a whole-file #endif.<br/><br/>0: No change (default).</html>" +Enabled=false +EditorType=numeric +CallName="nl_after_whole_file_endif=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Pos Arith] +Category=5 +Description="<html>(566)The position of arithmetic operators in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(566)Ignore Pos Arith|(566)Break Pos Arith|(566)Force Pos Arith|(566)Lead Pos Arith|(566)Trail Pos Arith|(566)Join Pos Arith|(566)Lead Break Pos Arith|(566)Lead Force Pos Arith|(566)Trail Break Pos Arith|(566)Trail Force Pos Arith" +ValueDefault=ignore + +[Pos Assign] +Category=5 +Description="<html>(567)The position of assignment in wrapped expressions. Do not affect '='<br/>followed by '{'.</html>" +Enabled=false +EditorType=multiple +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="(567)Ignore Pos Assign|(567)Break Pos Assign|(567)Force Pos Assign|(567)Lead Pos Assign|(567)Trail Pos Assign|(567)Join Pos Assign|(567)Lead Break Pos Assign|(567)Lead Force Pos Assign|(567)Trail Break Pos Assign|(567)Trail Force Pos Assign" +ValueDefault=ignore + +[Pos Bool] +Category=5 +Description="<html>(568)The position of Boolean operators in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(568)Ignore Pos Bool|(568)Break Pos Bool|(568)Force Pos Bool|(568)Lead Pos Bool|(568)Trail Pos Bool|(568)Join Pos Bool|(568)Lead Break Pos Bool|(568)Lead Force Pos Bool|(568)Trail Break Pos Bool|(568)Trail Force Pos Bool" +ValueDefault=ignore + +[Pos Compare] +Category=5 +Description="<html>(569)The position of comparison operators in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(569)Ignore Pos Compare|(569)Break Pos Compare|(569)Force Pos Compare|(569)Lead Pos Compare|(569)Trail Pos Compare|(569)Join Pos Compare|(569)Lead Break Pos Compare|(569)Lead Force Pos Compare|(569)Trail Break Pos Compare|(569)Trail Force Pos Compare" +ValueDefault=ignore + +[Pos Conditional] +Category=5 +Description="<html>(570)The position of conditional operators, as in the '?' and ':' of<br/>'expr ? stmt : stmt', in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(570)Ignore Pos Conditional|(570)Break Pos Conditional|(570)Force Pos Conditional|(570)Lead Pos Conditional|(570)Trail Pos Conditional|(570)Join Pos Conditional|(570)Lead Break Pos Conditional|(570)Lead Force Pos Conditional|(570)Trail Break Pos Conditional|(570)Trail Force Pos Conditional" +ValueDefault=ignore + +[Pos Comma] +Category=5 +Description="<html>(571)The position of the comma in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(571)Ignore Pos Comma|(571)Break Pos Comma|(571)Force Pos Comma|(571)Lead Pos Comma|(571)Trail Pos Comma|(571)Join Pos Comma|(571)Lead Break Pos Comma|(571)Lead Force Pos Comma|(571)Trail Break Pos Comma|(571)Trail Force Pos Comma" +ValueDefault=ignore + +[Pos Enum Comma] +Category=5 +Description="<html>(572)The position of the comma in enum entries.</html>" +Enabled=false +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="(572)Ignore Pos Enum Comma|(572)Break Pos Enum Comma|(572)Force Pos Enum Comma|(572)Lead Pos Enum Comma|(572)Trail Pos Enum Comma|(572)Join Pos Enum Comma|(572)Lead Break Pos Enum Comma|(572)Lead Force Pos Enum Comma|(572)Trail Break Pos Enum Comma|(572)Trail Force Pos Enum Comma" +ValueDefault=ignore + +[Pos Class Comma] +Category=5 +Description="<html>(573)The position of the comma in the base class list if there is more than one<br/>line. Affects nl_class_init_args.</html>" +Enabled=false +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="(573)Ignore Pos Class Comma|(573)Break Pos Class Comma|(573)Force Pos Class Comma|(573)Lead Pos Class Comma|(573)Trail Pos Class Comma|(573)Join Pos Class Comma|(573)Lead Break Pos Class Comma|(573)Lead Force Pos Class Comma|(573)Trail Break Pos Class Comma|(573)Trail Force Pos Class Comma" +ValueDefault=ignore + +[Pos Constr Comma] +Category=5 +Description="<html>(574)The position of the comma in the constructor initialization list.<br/>Related to nl_constr_colon, nl_constr_init_args and pos_constr_colon.</html>" +Enabled=false +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="(574)Ignore Pos Constr Comma|(574)Break Pos Constr Comma|(574)Force Pos Constr Comma|(574)Lead Pos Constr Comma|(574)Trail Pos Constr Comma|(574)Join Pos Constr Comma|(574)Lead Break Pos Constr Comma|(574)Lead Force Pos Constr Comma|(574)Trail Break Pos Constr Comma|(574)Trail Force Pos Constr Comma" +ValueDefault=ignore + +[Pos Class Colon] +Category=5 +Description="<html>(575)The position of trailing/leading class colon, between class and base class<br/>list. Affects nl_class_colon.</html>" +Enabled=false +EditorType=multiple +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="(575)Ignore Pos Class Colon|(575)Break Pos Class Colon|(575)Force Pos Class Colon|(575)Lead Pos Class Colon|(575)Trail Pos Class Colon|(575)Join Pos Class Colon|(575)Lead Break Pos Class Colon|(575)Lead Force Pos Class Colon|(575)Trail Break Pos Class Colon|(575)Trail Force Pos Class Colon" +ValueDefault=ignore + +[Pos Constr Colon] +Category=5 +Description="<html>(576)The position of colons between constructor and member initialization.<br/>Related to nl_constr_colon, nl_constr_init_args and pos_constr_comma.</html>" +Enabled=false +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="(576)Ignore Pos Constr Colon|(576)Break Pos Constr Colon|(576)Force Pos Constr Colon|(576)Lead Pos Constr Colon|(576)Trail Pos Constr Colon|(576)Join Pos Constr Colon|(576)Lead Break Pos Constr Colon|(576)Lead Force Pos Constr Colon|(576)Trail Break Pos Constr Colon|(576)Trail Force Pos Constr Colon" +ValueDefault=ignore + +[Pos Shift] +Category=5 +Description="<html>(577)The position of shift operators in wrapped expressions.</html>" +Enabled=false +EditorType=multiple +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="(577)Ignore Pos Shift|(577)Break Pos Shift|(577)Force Pos Shift|(577)Lead Pos Shift|(577)Trail Pos Shift|(577)Join Pos Shift|(577)Lead Break Pos Shift|(577)Lead Force Pos Shift|(577)Trail Break Pos Shift|(577)Trail Force Pos Shift" +ValueDefault=ignore + +[Code Width] +Category=6 +Description="<html>(578)Try to limit code width to N columns.</html>" +Enabled=false +EditorType=numeric +CallName="code_width=" +MinVal=0 +MaxVal=10000 +ValueDefault=0 + +[Ls For Split Full] +Category=6 +Description="<html>(579)Whether to fully split long 'for' statements at semi-colons.</html>" +Enabled=false +EditorType=boolean +TrueFalse=ls_for_split_full=true|ls_for_split_full=false +ValueDefault=false + +[Ls Func Split Full] +Category=6 +Description="<html>(580)Whether to fully split long function prototypes/calls at commas.<br/>The option ls_code_width has priority over the option ls_func_split_full.</html>" +Enabled=false +EditorType=boolean +TrueFalse=ls_func_split_full=true|ls_func_split_full=false +ValueDefault=false + +[Ls Code Width] +Category=6 +Description="<html>(581)Whether to split lines as close to code_width as possible and ignore some<br/>groupings.<br/>The option ls_code_width has priority over the option ls_func_split_full.</html>" +Enabled=false +EditorType=boolean +TrueFalse=ls_code_width=true|ls_code_width=false +ValueDefault=false + +[Align Keep Tabs] +Category=7 +Description="<html>(582)Whether to keep non-indenting tabs.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_keep_tabs=true|align_keep_tabs=false +ValueDefault=false + +[Align With Tabs] +Category=7 +Description="<html>(583)Whether to use tabs for aligning.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_with_tabs=true|align_with_tabs=false +ValueDefault=false + +[Align On Tabstop] +Category=7 +Description="<html>(584)Whether to bump out to the next tab when aligning.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_on_tabstop=true|align_on_tabstop=false +ValueDefault=false + +[Align Number Right] +Category=7 +Description="<html>(585)Whether to right-align numbers.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_number_right=true|align_number_right=false +ValueDefault=false + +[Align Keep Extra Space] +Category=7 +Description="<html>(586)Whether to keep whitespace not required for alignment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_keep_extra_space=true|align_keep_extra_space=false +ValueDefault=false + +[Align Func Params] +Category=7 +Description="<html>(587)Whether to align variable definitions in prototypes and functions.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_func_params=true|align_func_params=false +ValueDefault=false + +[Align Func Params Span] +Category=7 +Description="<html>(588)The span for aligning parameter definitions in function on parameter name.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_func_params_span=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Func Params Thresh] +Category=7 +Description="<html>(589)The threshold for aligning function parameter definitions.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_func_params_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Func Params Gap] +Category=7 +Description="<html>(590)The gap for aligning function parameter definitions.</html>" +Enabled=false +EditorType=numeric +CallName="align_func_params_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Constr Value Span] +Category=7 +Description="<html>(591)The span for aligning constructor value.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_constr_value_span=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Constr Value Thresh] +Category=7 +Description="<html>(592)The threshold for aligning constructor value.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_constr_value_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Constr Value Gap] +Category=7 +Description="<html>(593)The gap for aligning constructor value.</html>" +Enabled=false +EditorType=numeric +CallName="align_constr_value_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Same Func Call Params] +Category=7 +Description="<html>(594)Whether to align parameters in single-line functions that have the same<br/>name. The function names must already be aligned with each other.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_same_func_call_params=true|align_same_func_call_params=false +ValueDefault=false + +[Align Same Func Call Params Span] +Category=7 +Description="<html>(595)The span for aligning function-call parameters for single line functions.<br/><br/>0: Don't align (default).</html>" +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="<html>(596)The threshold for aligning function-call parameters for single line<br/>functions.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_same_func_call_params_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Var Def Span] +Category=7 +Description="<html>(597)The span for aligning variable definitions.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Var Def Star Style] +Category=7 +Description="<html>(598)How to consider (or treat) the '*' in the alignment of variable definitions.<br/><br/>0: Part of the type 'void * foo;' (default)<br/>1: Part of the variable 'void *foo;'<br/>2: Dangling 'void *foo;'<br/>Dangling: the '*' will not be taken into account when aligning.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_star_style=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Var Def Amp Style] +Category=7 +Description="<html>(599)How to consider (or treat) the '&' in the alignment of variable definitions.<br/><br/>0: Part of the type 'long & foo;' (default)<br/>1: Part of the variable 'long &foo;'<br/>2: Dangling 'long &foo;'<br/>Dangling: the '&' will not be taken into account when aligning.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_amp_style=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Var Def Thresh] +Category=7 +Description="<html>(600)The threshold for aligning variable definitions.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Var Def Gap] +Category=7 +Description="<html>(601)The gap for aligning variable definitions.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Var Def Colon] +Category=7 +Description="<html>(602)Whether to align the colon in struct bit fields.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_var_def_colon=true|align_var_def_colon=false +ValueDefault=false + +[Align Var Def Colon Gap] +Category=7 +Description="<html>(603)The gap for aligning the colon in struct bit fields.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_def_colon_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Var Def Attribute] +Category=7 +Description="<html>(604)Whether to align any attribute after the variable name.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_var_def_attribute=true|align_var_def_attribute=false +ValueDefault=false + +[Align Var Def Inline] +Category=7 +Description="<html>(605)Whether to align inline struct/enum/union variable definitions.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_var_def_inline=true|align_var_def_inline=false +ValueDefault=false + +[Align Assign Span] +Category=7 +Description="<html>(606)The span for aligning on '=' in assignments.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_assign_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Assign Func Proto Span] +Category=7 +Description="<html>(607)The span for aligning on '=' in function prototype modifier.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_assign_func_proto_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Assign Thresh] +Category=7 +Description="<html>(608)The threshold for aligning on '=' in assignments.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_assign_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Assign Decl Func] +Category=7 +Description="<html>(609)How to apply align_assign_span to function declaration "assignments", i.e.<br/>'virtual void foo() = 0' or '~foo() = {default|delete}'.<br/><br/>0: Align with other assignments (default)<br/>1: Align with each other, ignoring regular assignments<br/>2: Don't align</html>" +Enabled=false +EditorType=numeric +CallName="align_assign_decl_func=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Enum Equ Span] +Category=7 +Description="<html>(610)The span for aligning on '=' in enums.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_enum_equ_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Enum Equ Thresh] +Category=7 +Description="<html>(611)The threshold for aligning on '=' in enums.<br/>Use a negative number for absolute thresholds.<br/><br/>0: no limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_enum_equ_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Var Class Span] +Category=7 +Description="<html>(612)The span for aligning class member definitions.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_class_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Var Class Thresh] +Category=7 +Description="<html>(613)The threshold for aligning class member definitions.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_class_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Var Class Gap] +Category=7 +Description="<html>(614)The gap for aligning class member definitions.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_class_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Var Struct Span] +Category=7 +Description="<html>(615)The span for aligning struct/union member definitions.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_struct_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Var Struct Thresh] +Category=7 +Description="<html>(616)The threshold for aligning struct/union member definitions.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_var_struct_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Var Struct Gap] +Category=7 +Description="<html>(617)The gap for aligning struct/union member definitions.</html>" +Enabled=false +EditorType=numeric +CallName="align_var_struct_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Struct Init Span] +Category=7 +Description="<html>(618)The span for aligning struct initializer values.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_struct_init_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Typedef Span] +Category=7 +Description="<html>(619)The span for aligning single-line typedefs.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_typedef_span=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Typedef Gap] +Category=7 +Description="<html>(620)The minimum space between the type and the synonym of a typedef.</html>" +Enabled=false +EditorType=numeric +CallName="align_typedef_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Typedef Func] +Category=7 +Description="<html>(621)How to align typedef'd functions with other typedefs.<br/><br/>0: Don't mix them at all (default)<br/>1: Align the open parenthesis with the types<br/>2: Align the function type name with the other type names</html>" +Enabled=false +EditorType=numeric +CallName="align_typedef_func=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Typedef Star Style] +Category=7 +Description="<html>(622)How to consider (or treat) the '*' in the alignment of typedefs.<br/><br/>0: Part of the typedef type, 'typedef int * pint;' (default)<br/>1: Part of type name: 'typedef int *pint;'<br/>2: Dangling: 'typedef int *pint;'<br/>Dangling: the '*' will not be taken into account when aligning.</html>" +Enabled=false +EditorType=numeric +CallName="align_typedef_star_style=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Typedef Amp Style] +Category=7 +Description="<html>(623)How to consider (or treat) the '&' in the alignment of typedefs.<br/><br/>0: Part of the typedef type, 'typedef int & intref;' (default)<br/>1: Part of type name: 'typedef int &intref;'<br/>2: Dangling: 'typedef int &intref;'<br/>Dangling: the '&' will not be taken into account when aligning.</html>" +Enabled=false +EditorType=numeric +CallName="align_typedef_amp_style=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Align Right Cmt Span] +Category=7 +Description="<html>(624)The span for aligning comments that end lines.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_right_cmt_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Right Cmt Gap] +Category=7 +Description="<html>(625)Minimum number of columns between preceding text and a trailing comment in<br/>order for the comment to qualify for being aligned. Must be non-zero to have<br/>an effect.</html>" +Enabled=false +EditorType=numeric +CallName="align_right_cmt_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Right Cmt Mix] +Category=7 +Description="<html>(626)If aligning comments, whether to mix with comments after '}' and #endif with<br/>less than three spaces before the comment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_right_cmt_mix=true|align_right_cmt_mix=false +ValueDefault=false + +[Align Right Cmt Same Level] +Category=7 +Description="<html>(627)Whether to only align trailing comments that are at the same brace level.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_right_cmt_same_level=true|align_right_cmt_same_level=false +ValueDefault=false + +[Align Right Cmt At Col] +Category=7 +Description="<html>(628)Minimum column at which to align trailing comments. Comments which are<br/>aligned beyond this column, but which can be aligned in a lesser column,<br/>may be "pulled in".<br/><br/>0: Ignore (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_right_cmt_at_col=" +MinVal=0 +MaxVal=200 +ValueDefault=0 + +[Align Func Proto Span] +Category=7 +Description="<html>(629)The span for aligning function prototypes.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_func_proto_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Func Proto Thresh] +Category=7 +Description="<html>(630)The threshold for aligning function prototypes.<br/>Use a negative number for absolute thresholds.<br/><br/>0: No limit (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_func_proto_thresh=" +MinVal=-1000 +MaxVal=5000 +ValueDefault=0 + +[Align Func Proto Gap] +Category=7 +Description="<html>(631)Minimum gap between the return type and the function name.</html>" +Enabled=false +EditorType=numeric +CallName="align_func_proto_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align On Operator] +Category=7 +Description="<html>(632)Whether to align function prototypes on the 'operator' keyword instead of<br/>what follows.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_on_operator=true|align_on_operator=false +ValueDefault=false + +[Align Mix Var Proto] +Category=7 +Description="<html>(633)Whether to mix aligning prototype and variable declarations. If true,<br/>align_var_def_XXX options are used instead of align_func_proto_XXX options.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_mix_var_proto=true|align_mix_var_proto=false +ValueDefault=false + +[Align Single Line Func] +Category=7 +Description="<html>(634)Whether to align single-line functions with function prototypes.<br/>Uses align_func_proto_span.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_single_line_func=true|align_single_line_func=false +ValueDefault=false + +[Align Single Line Brace] +Category=7 +Description="<html>(635)Whether to align the open brace of single-line functions.<br/>Requires align_single_line_func=true. Uses align_func_proto_span.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_single_line_brace=true|align_single_line_brace=false +ValueDefault=false + +[Align Single Line Brace Gap] +Category=7 +Description="<html>(636)Gap for align_single_line_brace.</html>" +Enabled=false +EditorType=numeric +CallName="align_single_line_brace_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Oc Msg Spec Span] +Category=7 +Description="<html>(637)(OC) The span for aligning Objective-C message specifications.<br/><br/>0: Don't align (default).</html>" +Enabled=false +EditorType=numeric +CallName="align_oc_msg_spec_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Nl Cont] +Category=7 +Description="<html>(638)Whether to align macros wrapped with a backslash and a newline. This will<br/>not work right if the macro contains a multi-line comment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_nl_cont=true|align_nl_cont=false +ValueDefault=false + +[Align Pp Define Together] +Category=7 +Description="<html>(639)Whether to align macro functions and variables together.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_pp_define_together=true|align_pp_define_together=false +ValueDefault=false + +[Align Pp Define Span] +Category=7 +Description="<html>(640)The span for aligning on '#define' bodies.<br/><br/>=0: Don't align (default)<br/>>0: Number of lines (including comments) between blocks</html>" +Enabled=false +EditorType=numeric +CallName="align_pp_define_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Pp Define Gap] +Category=7 +Description="<html>(641)The minimum space between label and value of a preprocessor define.</html>" +Enabled=false +EditorType=numeric +CallName="align_pp_define_gap=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Align Left Shift] +Category=7 +Description="<html>(642)Whether to align lines that start with '<<' with previous '<<'.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_left_shift=true|align_left_shift=false +ValueDefault=true + +[Align Eigen Comma Init] +Category=7 +Description="<html>(643)Whether to align comma-separated statements following '<<' (as used to<br/>initialize Eigen matrices).</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_eigen_comma_init=true|align_eigen_comma_init=false +ValueDefault=false + +[Align Asm Colon] +Category=7 +Description="<html>(644)Whether to align text after 'asm volatile ()' colons.</html>" +Enabled=false +EditorType=boolean +TrueFalse=align_asm_colon=true|align_asm_colon=false +ValueDefault=false + +[Align Oc Msg Colon Span] +Category=7 +Description="<html>(645)(OC) Span for aligning parameters in an Objective-C message call<br/>on the ':'.<br/><br/>0: Don't align.</html>" +Enabled=false +EditorType=numeric +CallName="align_oc_msg_colon_span=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Align Oc Msg Colon First] +Category=7 +Description="<html>(646)(OC) Whether to always align with the first parameter, even if it is too<br/>short.</html>" +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="<html>(647)(OC) Whether to align parameters in an Objective-C '+' or '-' declaration<br/>on the ':'.</html>" +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="<html>(648)(OC) Whether to not align parameters in an Objectve-C message call if first<br/>colon is not on next line of the message call (the same way Xcode does<br/>aligment)</html>" +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="<html>(649)Try to wrap comments at N columns.</html>" +Enabled=false +EditorType=numeric +CallName="cmt_width=" +MinVal=0 +MaxVal=256 +ValueDefault=0 + +[Cmt Reflow Mode] +Category=8 +Description="<html>(650)How to reflow comments.<br/><br/>0: No reflowing (apart from the line wrapping due to cmt_width) (default)<br/>1: No touching at all<br/>2: Full reflow</html>" +Enabled=false +EditorType=numeric +CallName="cmt_reflow_mode=" +MinVal=0 +MaxVal=2 +ValueDefault=0 + +[Cmt Convert Tab To Spaces] +Category=8 +Description="<html>(651)Whether to convert all tabs to spaces in comments. If false, tabs in<br/>comments are left alone, unless used for indenting.</html>" +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="<html>(652)Whether to apply changes to multi-line comments, including cmt_width,<br/>keyword substitution and leading chars.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_indent_multi=true|cmt_indent_multi=false +ValueDefault=true + +[Cmt C Group] +Category=8 +Description="<html>(653)Whether to group c-comments that look like they are in a block.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_group=true|cmt_c_group=false +ValueDefault=false + +[Cmt C Nl Start] +Category=8 +Description="<html>(654)Whether to put an empty '/*' on the first line of the combined c-comment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_nl_start=true|cmt_c_nl_start=false +ValueDefault=false + +[Cmt C Nl End] +Category=8 +Description="<html>(655)Whether to add a newline before the closing '*/' of the combined c-comment.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_c_nl_end=true|cmt_c_nl_end=false +ValueDefault=false + +[Cmt Cpp To C] +Category=8 +Description="<html>(656)Whether to change cpp-comments into c-comments.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_to_c=true|cmt_cpp_to_c=false +ValueDefault=false + +[Cmt Cpp Group] +Category=8 +Description="<html>(657)Whether to group cpp-comments that look like they are in a block. Only<br/>meaningful if cmt_cpp_to_c=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_group=true|cmt_cpp_group=false +ValueDefault=false + +[Cmt Cpp Nl Start] +Category=8 +Description="<html>(658)Whether to put an empty '/*' on the first line of the combined cpp-comment<br/>when converting to a c-comment.<br/><br/>Requires cmt_cpp_to_c=true and cmt_cpp_group=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_nl_start=true|cmt_cpp_nl_start=false +ValueDefault=false + +[Cmt Cpp Nl End] +Category=8 +Description="<html>(659)Whether to add a newline before the closing '*/' of the combined cpp-comment<br/>when converting to a c-comment.<br/><br/>Requires cmt_cpp_to_c=true and cmt_cpp_group=true.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_cpp_nl_end=true|cmt_cpp_nl_end=false +ValueDefault=false + +[Cmt Star Cont] +Category=8 +Description="<html>(660)Whether to put a star on subsequent comment lines.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_star_cont=true|cmt_star_cont=false +ValueDefault=false + +[Cmt Sp Before Star Cont] +Category=8 +Description="<html>(661)The number of spaces to insert at the start of subsequent comment lines.</html>" +Enabled=false +EditorType=numeric +CallName="cmt_sp_before_star_cont=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Cmt Sp After Star Cont] +Category=8 +Description="<html>(662)The number of spaces to insert after the star on subsequent comment lines.</html>" +Enabled=false +EditorType=numeric +CallName="cmt_sp_after_star_cont=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Cmt Multi Check Last] +Category=8 +Description="<html>(663)For multi-line comments with a '*' lead, remove leading spaces if the first<br/>and last lines of the comment are the same length.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_multi_check_last=true|cmt_multi_check_last=false +ValueDefault=true + +[Cmt Multi First Len Minimum] +Category=8 +Description="<html>(664)For multi-line comments with a '*' lead, remove leading spaces if the first<br/>and last lines of the comment are the same length AND if the length is<br/>bigger as the first_len minimum.<br/><br/>Default: 4</html>" +Enabled=false +EditorType=numeric +CallName="cmt_multi_first_len_minimum=" +MinVal=1 +MaxVal=20 +ValueDefault=4 + +[Cmt Insert File Header] +Category=8 +Description="<html>(665)Path to a file that contains text to insert at the beginning of a file if<br/>the file doesn't start with a C/C++ comment. If the inserted text contains<br/>'$(filename)', that will be replaced with the current file's name.</html>" +Enabled=false +CallName=cmt_insert_file_header= +EditorType=string +ValueDefault= + +[Cmt Insert File Footer] +Category=8 +Description="<html>(666)Path to a file that contains text to insert at the end of a file if the<br/>file doesn't end with a C/C++ comment. If the inserted text contains<br/>'$(filename)', that will be replaced with the current file's name.</html>" +Enabled=false +CallName=cmt_insert_file_footer= +EditorType=string +ValueDefault= + +[Cmt Insert Func Header] +Category=8 +Description="<html>(667)Path to a file that contains text to insert before a function definition if<br/>the function isn't preceded by a C/C++ comment. If the inserted text<br/>contains '$(function)', '$(javaparam)' or '$(fclass)', these will be<br/>replaced with, respectively, the name of the function, the javadoc '@param'<br/>and '@return' stuff, or the name of the class to which the member function<br/>belongs.</html>" +Enabled=false +CallName=cmt_insert_func_header= +EditorType=string +ValueDefault= + +[Cmt Insert Class Header] +Category=8 +Description="<html>(668)Path to a file that contains text to insert before a class if the class<br/>isn't preceded by a C/C++ comment. If the inserted text contains '$(class)',<br/>that will be replaced with the class name.</html>" +Enabled=false +CallName=cmt_insert_class_header= +EditorType=string +ValueDefault= + +[Cmt Insert Oc Msg Header] +Category=8 +Description="<html>(669)Path to a file that contains text to insert before an Objective-C message<br/>specification, if the method isn't preceded by a C/C++ comment. If the<br/>inserted text contains '$(message)' or '$(javaparam)', these will be<br/>replaced with, respectively, the name of the function, or the javadoc<br/>'@param' and '@return' stuff.</html>" +Enabled=false +CallName=cmt_insert_oc_msg_header= +EditorType=string +ValueDefault= + +[Cmt Insert Before Preproc] +Category=8 +Description="<html>(670)Whether a comment should be inserted if a preprocessor is encountered when<br/>stepping backwards from a function name.<br/><br/>Applies to cmt_insert_oc_msg_header, cmt_insert_func_header and<br/>cmt_insert_class_header.</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_insert_before_preproc=true|cmt_insert_before_preproc=false +ValueDefault=false + +[Cmt Insert Before Inlines] +Category=8 +Description="<html>(671)Whether a comment should be inserted if a function is declared inline to a<br/>class definition.<br/><br/>Applies to cmt_insert_func_header.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=cmt_insert_before_inlines=true|cmt_insert_before_inlines=false +ValueDefault=true + +[Cmt Insert Before Ctor Dtor] +Category=8 +Description="<html>(672)Whether a comment should be inserted if the function is a class constructor<br/>or destructor.<br/><br/>Applies to cmt_insert_func_header.</html>" +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="<html>(673)Add or remove braces on a single-line 'do' statement.</html>" +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="(673)Ignore Mod Full Brace Do|(673)Add Mod Full Brace Do|(673)Remove Mod Full Brace Do|(673)Force Mod Full Brace Do" +ValueDefault=ignore + +[Mod Full Brace For] +Category=9 +Description="<html>(674)Add or remove braces on a single-line 'for' statement.</html>" +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="(674)Ignore Mod Full Brace For|(674)Add Mod Full Brace For|(674)Remove Mod Full Brace For|(674)Force Mod Full Brace For" +ValueDefault=ignore + +[Mod Full Brace Function] +Category=9 +Description="<html>(675)(Pawn) Add or remove braces on a single-line function definition.</html>" +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="(675)Ignore Mod Full Brace Function|(675)Add Mod Full Brace Function|(675)Remove Mod Full Brace Function|(675)Force Mod Full Brace Function" +ValueDefault=ignore + +[Mod Full Brace If] +Category=9 +Description="<html>(676)Add or remove braces on a single-line 'if' statement. Braces will not be<br/>removed if the braced statement contains an 'else'.</html>" +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="(676)Ignore Mod Full Brace If|(676)Add Mod Full Brace If|(676)Remove Mod Full Brace If|(676)Force Mod Full Brace If" +ValueDefault=ignore + +[Mod Full Brace If Chain] +Category=9 +Description="<html>(677)Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either<br/>have, or do not have, braces. If true, braces will be added if any block<br/>needs braces, and will only be removed if they can be removed from all<br/>blocks.<br/><br/>Overrides mod_full_brace_if.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_full_brace_if_chain=true|mod_full_brace_if_chain=false +ValueDefault=false + +[Mod Full Brace If Chain Only] +Category=9 +Description="<html>(678)Whether to add braces to all blocks of an 'if'/'else if'/'else' chain.<br/>If true, mod_full_brace_if_chain will only remove braces from an 'if' that<br/>does not have an 'else if' or 'else'.</html>" +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="<html>(679)Add or remove braces on single-line 'while' statement.</html>" +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="(679)Ignore Mod Full Brace While|(679)Add Mod Full Brace While|(679)Remove Mod Full Brace While|(679)Force Mod Full Brace While" +ValueDefault=ignore + +[Mod Full Brace Using] +Category=9 +Description="<html>(680)Add or remove braces on single-line 'using ()' statement.</html>" +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="(680)Ignore Mod Full Brace Using|(680)Add Mod Full Brace Using|(680)Remove Mod Full Brace Using|(680)Force Mod Full Brace Using" +ValueDefault=ignore + +[Mod Full Brace Nl] +Category=9 +Description="<html>(681)Don't remove braces around statements that span N newlines</html>" +Enabled=false +EditorType=numeric +CallName="mod_full_brace_nl=" +MinVal=0 +MaxVal=5000 +ValueDefault=0 + +[Mod Full Brace Nl Block Rem Mlcond] +Category=9 +Description="<html>(682)Whether to prevent removal of braces from 'if'/'for'/'while'/etc. blocks<br/>which span multiple lines.<br/><br/>Affects:<br/> mod_full_brace_for<br/> mod_full_brace_if<br/> mod_full_brace_if_chain<br/> mod_full_brace_if_chain_only<br/> mod_full_brace_while<br/> mod_full_brace_using<br/><br/>Does not affect:<br/> mod_full_brace_do<br/> mod_full_brace_function</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_full_brace_nl_block_rem_mlcond=true|mod_full_brace_nl_block_rem_mlcond=false +ValueDefault=false + +[Mod Paren On Return] +Category=9 +Description="<html>(683)Add or remove unnecessary parenthesis on 'return' statement.</html>" +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="(683)Ignore Mod Paren On Return|(683)Add Mod Paren On Return|(683)Remove Mod Paren On Return|(683)Force Mod Paren On Return" +ValueDefault=ignore + +[Mod Pawn Semicolon] +Category=9 +Description="<html>(684)(Pawn) Whether to change optional semicolons to real semicolons.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_pawn_semicolon=true|mod_pawn_semicolon=false +ValueDefault=false + +[Mod Full Paren If Bool] +Category=9 +Description="<html>(685)Whether to fully parenthesize Boolean expressions in 'while' and 'if'<br/>statement, as in 'if (a && b > c)' => 'if (a && (b > c))'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_full_paren_if_bool=true|mod_full_paren_if_bool=false +ValueDefault=false + +[Mod Remove Extra Semicolon] +Category=9 +Description="<html>(686)Whether to remove superfluous semicolons.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_remove_extra_semicolon=true|mod_remove_extra_semicolon=false +ValueDefault=false + +[Mod Add Long Function Closebrace Comment] +Category=9 +Description="<html>(687)If a function body exceeds the specified number of newlines and doesn't have<br/>a comment after the close brace, a comment will be added.</html>" +Enabled=false +EditorType=numeric +CallName="mod_add_long_function_closebrace_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Namespace Closebrace Comment] +Category=9 +Description="<html>(688)If a namespace body exceeds the specified number of newlines and doesn't<br/>have a comment after the close brace, a comment will be added.</html>" +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="<html>(689)If a class body exceeds the specified number of newlines and doesn't have a<br/>comment after the close brace, a comment will be added.</html>" +Enabled=false +EditorType=numeric +CallName="mod_add_long_class_closebrace_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Switch Closebrace Comment] +Category=9 +Description="<html>(690)If a switch body exceeds the specified number of newlines and doesn't have a<br/>comment after the close brace, a comment will be added.</html>" +Enabled=false +EditorType=numeric +CallName="mod_add_long_switch_closebrace_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Ifdef Endif Comment] +Category=9 +Description="<html>(691)If an #ifdef body exceeds the specified number of newlines and doesn't have<br/>a comment after the #endif, a comment will be added.</html>" +Enabled=false +EditorType=numeric +CallName="mod_add_long_ifdef_endif_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Add Long Ifdef Else Comment] +Category=9 +Description="<html>(692)If an #ifdef or #else body exceeds the specified number of newlines and<br/>doesn't have a comment after the #else, a comment will be added.</html>" +Enabled=false +EditorType=numeric +CallName="mod_add_long_ifdef_else_comment=" +MinVal=0 +MaxVal=255 +ValueDefault=0 + +[Mod Sort Case Sensitive] +Category=9 +Description="<html>(693)Whether to take care of the case by the mod_sort_xx options.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_case_sensitive=true|mod_sort_case_sensitive=false +ValueDefault=false + +[Mod Sort Import] +Category=9 +Description="<html>(694)Whether to sort consecutive single-line 'import' statements.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_import=true|mod_sort_import=false +ValueDefault=false + +[Mod Sort Using] +Category=9 +Description="<html>(695)(C#) Whether to sort consecutive single-line 'using' statements.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_using=true|mod_sort_using=false +ValueDefault=false + +[Mod Sort Include] +Category=9 +Description="<html>(696)Whether to sort consecutive single-line '#include' statements (C/C++) and<br/>'#import' statements (Objective-C). Be aware that this has the potential to<br/>break your code if your includes/imports have ordering dependencies.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_include=true|mod_sort_include=false +ValueDefault=false + +[Mod Sort Incl Import Prioritize Filename] +Category=9 +Description="<html>(697)Whether to prioritize '#include' and '#import' statements that contain<br/>filename without extension when sorting is enabled.</html>" +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="<html>(698)Whether to prioritize '#include' and '#import' statements that does not<br/>contain extensions when sorting is enabled.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_incl_import_prioritize_extensionless=true|mod_sort_incl_import_prioritize_extensionless=false +ValueDefault=false + +[Mod Sort Incl Import Prioritize Angle Over Quotes] +Category=9 +Description="<html>(699)Whether to prioritize '#include' and '#import' statements that contain<br/>angle over quotes when sorting is enabled.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_incl_import_prioritize_angle_over_quotes=true|mod_sort_incl_import_prioritize_angle_over_quotes=false +ValueDefault=false + +[Mod Sort Incl Import Ignore Extension] +Category=9 +Description="<html>(700)Whether to ignore file extension in '#include' and '#import' statements<br/>for sorting comparison.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_incl_import_ignore_extension=true|mod_sort_incl_import_ignore_extension=false +ValueDefault=false + +[Mod Sort Incl Import Grouping Enabled] +Category=9 +Description="<html>(701)Whether to group '#include' and '#import' statements when sorting is enabled.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_incl_import_grouping_enabled=true|mod_sort_incl_import_grouping_enabled=false +ValueDefault=false + +[Mod Move Case Break] +Category=9 +Description="<html>(702)Whether to move a 'break' that appears after a fully braced 'case' before<br/>the close brace, as in 'case X: { ... } break;' => 'case X: { ... break; }'.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_move_case_break=true|mod_move_case_break=false +ValueDefault=false + +[Mod Case Brace] +Category=9 +Description="<html>(703)Add or remove braces around a fully braced case statement. Will only remove<br/>braces if there are no variable declarations in the block.</html>" +Enabled=false +EditorType=multiple +Choices=mod_case_brace=ignore|mod_case_brace=add|mod_case_brace=remove|mod_case_brace=force +ChoicesReadable="(703)Ignore Mod Case Brace|(703)Add Mod Case Brace|(703)Remove Mod Case Brace|(703)Force Mod Case Brace" +ValueDefault=ignore + +[Mod Remove Empty Return] +Category=9 +Description="<html>(704)Whether to remove a void 'return;' that appears as the last statement in a<br/>function.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_remove_empty_return=true|mod_remove_empty_return=false +ValueDefault=false + +[Mod Enum Last Comma] +Category=9 +Description="<html>(705)Add or remove the comma after the last value of an enumeration.</html>" +Enabled=false +EditorType=multiple +Choices=mod_enum_last_comma=ignore|mod_enum_last_comma=add|mod_enum_last_comma=remove|mod_enum_last_comma=force +ChoicesReadable="(705)Ignore Mod Enum Last Comma|(705)Add Mod Enum Last Comma|(705)Remove Mod Enum Last Comma|(705)Force Mod Enum Last Comma" +ValueDefault=ignore + +[Mod Sort Oc Properties] +Category=9 +Description="<html>(706)(OC) Whether to organize the properties. If true, properties will be<br/>rearranged according to the mod_sort_oc_property_*_weight factors.</html>" +Enabled=false +EditorType=boolean +TrueFalse=mod_sort_oc_properties=true|mod_sort_oc_properties=false +ValueDefault=false + +[Mod Sort Oc Property Class Weight] +Category=9 +Description="<html>(707)(OC) Weight of a class property modifier.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_class_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Thread Safe Weight] +Category=9 +Description="<html>(708)(OC) Weight of 'atomic' and 'nonatomic'.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_thread_safe_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Readwrite Weight] +Category=9 +Description="<html>(709)(OC) Weight of 'readwrite' when organizing properties.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_readwrite_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Reference Weight] +Category=9 +Description="<html>(710)(OC) Weight of a reference type specifier ('retain', 'copy', 'assign',<br/>'weak', 'strong') when organizing properties.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_reference_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Getter Weight] +Category=9 +Description="<html>(711)(OC) Weight of getter type ('getter=') when organizing properties.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_getter_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Setter Weight] +Category=9 +Description="<html>(712)(OC) Weight of setter type ('setter=') when organizing properties.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_setter_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Mod Sort Oc Property Nullability Weight] +Category=9 +Description="<html>(713)(OC) Weight of nullability type ('nullable', 'nonnull', 'null_unspecified',<br/>'null_resettable') when organizing properties.</html>" +Enabled=false +EditorType=numeric +CallName="mod_sort_oc_property_nullability_weight=" +MinVal= +MaxVal= +ValueDefault=0 + +[Pp Indent] +Category=10 +Description="<html>(714)Add or remove indentation of preprocessor directives inside #if blocks<br/>at brace level 0 (file-level).</html>" +Enabled=false +EditorType=multiple +Choices=pp_indent=ignore|pp_indent=add|pp_indent=remove|pp_indent=force +ChoicesReadable="(714)Ignore Pp Indent|(714)Add Pp Indent|(714)Remove Pp Indent|(714)Force Pp Indent" +ValueDefault=ignore + +[Pp Indent At Level] +Category=10 +Description="<html>(715)Whether to indent #if/#else/#endif at the brace level. If false, these are<br/>indented from column 1.</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_at_level=true|pp_indent_at_level=false +ValueDefault=false + +[Pp Indent Count] +Category=10 +Description="<html>(716)Specifies the number of columns to indent preprocessors per level<br/>at brace level 0 (file-level). If pp_indent_at_level=false, also specifies<br/>the number of columns to indent preprocessors per level<br/>at brace level > 0 (function-level).<br/><br/>Default: 1</html>" +Enabled=false +EditorType=numeric +CallName="pp_indent_count=" +MinVal=0 +MaxVal=16 +ValueDefault=1 + +[Pp Space] +Category=10 +Description="<html>(717)Add or remove space after # based on pp_level of #if blocks.</html>" +Enabled=false +EditorType=multiple +Choices=pp_space=ignore|pp_space=add|pp_space=remove|pp_space=force +ChoicesReadable="(717)Ignore Pp Space|(717)Add Pp Space|(717)Remove Pp Space|(717)Force Pp Space" +ValueDefault=ignore + +[Pp Space Count] +Category=10 +Description="<html>(718)Sets the number of spaces per level added with pp_space.</html>" +Enabled=false +EditorType=numeric +CallName="pp_space_count=" +MinVal=0 +MaxVal=16 +ValueDefault=0 + +[Pp Indent Region] +Category=10 +Description="<html>(719)The indent for '#region' and '#endregion' in C# and '#pragma region' in<br/>C/C++. Negative values decrease indent down to the first column.</html>" +Enabled=false +EditorType=numeric +CallName="pp_indent_region=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Pp Region Indent Code] +Category=10 +Description="<html>(720)Whether to indent the code between #region and #endregion.</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_region_indent_code=true|pp_region_indent_code=false +ValueDefault=false + +[Pp Indent If] +Category=10 +Description="<html>(721)If pp_indent_at_level=true, sets the indent for #if, #else and #endif when<br/>not at file-level. Negative values decrease indent down to the first column.<br/><br/>=0: Indent preprocessors using output_tab_size<br/>>0: Column at which all preprocessors will be indented</html>" +Enabled=false +EditorType=numeric +CallName="pp_indent_if=" +MinVal=-16 +MaxVal=16 +ValueDefault=0 + +[Pp If Indent Code] +Category=10 +Description="<html>(722)Whether to indent the code between #if, #else and #endif.</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_if_indent_code=true|pp_if_indent_code=false +ValueDefault=false + +[Pp Define At Level] +Category=10 +Description="<html>(723)Whether to indent '#define' at the brace level. If false, these are<br/>indented from column 1.</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_define_at_level=true|pp_define_at_level=false +ValueDefault=false + +[Pp Ignore Define Body] +Category=10 +Description="<html>(724)Whether to ignore the '#define' body while formatting.</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_ignore_define_body=true|pp_ignore_define_body=false +ValueDefault=false + +[Pp Indent Case] +Category=10 +Description="<html>(725)Whether to indent case statements between #if, #else, and #endif.<br/>Only applies to the indent of the preprocesser that the case statements<br/>directly inside of.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_case=true|pp_indent_case=false +ValueDefault=true + +[Pp Indent Func Def] +Category=10 +Description="<html>(726)Whether to indent whole function definitions between #if, #else, and #endif.<br/>Only applies to the indent of the preprocesser that the function definition<br/>is directly inside of.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_func_def=true|pp_indent_func_def=false +ValueDefault=true + +[Pp Indent Extern] +Category=10 +Description="<html>(727)Whether to indent extern C blocks between #if, #else, and #endif.<br/>Only applies to the indent of the preprocesser that the extern block is<br/>directly inside of.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_extern=true|pp_indent_extern=false +ValueDefault=true + +[Pp Indent Brace] +Category=10 +Description="<html>(728)Whether to indent braces directly inside #if, #else, and #endif.<br/>Only applies to the indent of the preprocesser that the braces are directly<br/>inside of.<br/><br/>Default: true</html>" +Enabled=false +EditorType=boolean +TrueFalse=pp_indent_brace=true|pp_indent_brace=false +ValueDefault=true + +[Include Category 0] +Category=11 +Description="<html>(729)The regex for include category with priority 0.</html>" +Enabled=false +CallName=include_category_0= +EditorType=string +ValueDefault= + +[Include Category 1] +Category=11 +Description="<html>(730)The regex for include category with priority 1.</html>" +Enabled=false +CallName=include_category_1= +EditorType=string +ValueDefault= + +[Include Category 2] +Category=11 +Description="<html>(731)The regex for include category with priority 2.</html>" +Enabled=false +CallName=include_category_2= +EditorType=string +ValueDefault= + +[Use Indent Func Call Param] +Category=12 +Description="<html>(732)true: indent_func_call_param will be used (default)<br/>false: indent_func_call_param will NOT be used<br/><br/>Default: true</html>" +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="<html>(733)The value of the indentation for a continuation line is calculated<br/>differently if the statement is:<br/>- a declaration: your case with QString fileName ...<br/>- an assignment: your case with pSettings = new QSettings( ...<br/><br/>At the second case the indentation value might be used twice:<br/>- at the assignment<br/>- at the function call (if present)<br/><br/>To prevent the double use of the indentation value, use this option with the<br/>value 'true'.<br/><br/>true: indent_continue will be used only once<br/>false: indent_continue will be used every time (default)</html>" +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="<html>(734)The value might be used twice:<br/>- at the assignment<br/>- at the opening brace<br/><br/>To prevent the double use of the indentation value, use this option with the<br/>value 'true'.<br/><br/>true: indentation will be used only once<br/>false: indentation will be used every time (default)</html>" +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="<html>(735)Whether sp_after_angle takes precedence over sp_inside_fparen. This was the<br/>historic behavior, but is probably not the desired behavior, so this is off<br/>by default.</html>" +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="<html>(736)Whether to apply special formatting for Qt SIGNAL/SLOT macros. Essentially,<br/>this tries to format these so that they match Qt's normalized form (i.e. the<br/>result of QMetaObject::normalizedSignature), which can slightly improve the<br/>performance of the QObject::connect call, rather than how they would<br/>otherwise be formatted.<br/><br/>See options_for_QT.cpp for details.<br/><br/>Default: true</html>" +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="<html>(737)If true: the form feed character is removed from the list<br/>of whitespace characters.<br/>See https://en.cppreference.com/w/cpp/string/byte/isspace</html>" +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="<html>(738)(C#) Warning is given if doing tab-to-\t replacement and we have found one<br/>in a C# verbatim string literal.<br/><br/>Default: 2</html>" +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="<html>(739)Limit the number of loops.<br/>Used by uncrustify.cpp to exit from infinite loop.<br/>0: no limit.</html>" +Enabled=false +EditorType=numeric +CallName="debug_max_number_of_loops=" +MinVal= +MaxVal= +ValueDefault=0 + +[Debug Line Number To Protocol] +Category=13 +Description="<html>(740)Set the number of the line to protocol;<br/>Used in the function prot_the_line if the 2. parameter is zero.<br/>0: nothing protocol.</html>" +Enabled=false +EditorType=numeric +CallName="debug_line_number_to_protocol=" +MinVal= +MaxVal= +ValueDefault=0 + +[Debug Timeout] +Category=13 +Description="<html>(741)Set the number of second(s) before terminating formatting the current file,<br/>0: no timeout.<br/>only for linux</html>" +Enabled=false +EditorType=numeric +CallName="debug_timeout=" +MinVal= +MaxVal= +ValueDefault=0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrust-files.sh b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrust-files.sh new file mode 100644 index 00000000..3e1d09b3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrust-files.sh @@ -0,0 +1,19 @@ +#! /bin/sh + +if [ -z "$1" ]; then + echo "specify the file that contains a list of files" + exit +fi + +files=$(cat $1) + +mkdir -p out + +for item in $files ; do + + dn=$(dirname $item) + mkdir -p out/$dn + ~/bin/uncrustify -f $item -c ~/.uncrustify/xsupplicant.cfg > out/$item + +done + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrustify.xml.in b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrustify.xml.in new file mode 100644 index 00000000..33f6c6a5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/uncrustify.xml.in @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE language SYSTEM "language.dtd"> +<language name="Uncrustify Configuration" + section="Configuration" + extensions="uncrustify.cfg;uncrustify.conf;.uncrustify.cfg;.uncrustify.conf" + mimetype="" + version="##VERSION##" + kateversion="2.0" + author="Matthew Woehlke (mwoehlke.floss@gmail.com)" + license="LGPL" + priority="5"> + + <highlighting> + <list name="options"> + ##OPTION_KEYWORDS## + </list> + <list name="values"> + ##VALUE_KEYWORDS## + </list> + <list name="tokens"> + ##TOKEN_TYPE_KEYWORDS## + </list> + <list name="directives"> + <item>file_ext</item> + <item>include</item> + <item>macro-close</item> + <item>macro-else</item> + <item>macro-open</item> + <item>type</item> + <item>using</item> + </list> + + <contexts> + <context name="Root" attribute="Normal Text" lineEndContext="#stay"> + <WordDetect context="SetDirective" attribute="Directive" String="set" /> + <keyword context="Values" attribute="Directive" String="directives" /> + <keyword context="Values" attribute="Option" String="options" /> + <DetectChar context="Comment" attribute="Comment" char="#" /> + </context> + + <context name="Values" attribute="String" lineEndContext="#pop" > + <DetectSpaces attribute="Normal Text" /> + <RegExpr contex="#stay" attribute="Number" String="-?[0-9]+" /> + <keyword contex="#stay" attribute="Value" String="values" /> + <DetectChar context="#stay" attribute="Assignment" char="=" /> + <DetectChar context="StringSQ" attribute="String" char="'" /> + <DetectChar context="StringDQ" attribute="String" char=""" /> + <DetectChar context="Comment" attribute="Comment" char="#" /> + </context> + + <context name="StringSQ" attribute="String" lineEndContext="Error" > + <RegExpr context="#stay" attribute="String" String="\\." /> + <DetectChar context="#pop" attribute="String" char="'" /> + </context> + + <context name="StringDQ" attribute="String" lineEndContext="Error" > + <RegExpr context="#stay" attribute="String" String="\\." /> + <DetectChar context="#pop" attribute="String" char=""" /> + </context> + + <context name="SetDirective" attribute="Error" lineEndContext="#pop" > + <DetectSpaces attribute="Normal Text" /> + <keyword context="Values" attribute="Token" String="tokens" /> + </context> + + <context name="Error" attribute="Error" lineEndContext="#stay" /> + + <context name="Comment" attribute="Comment" lineEndContext="#pop"> + <DetectSpaces /> + <IncludeRules context="##Alerts" /> + <DetectIdentifier /> + </context> + </contexts> + + <itemDatas> + <itemData name="Normal Text" defStyleNum="dsNormal" /> + <itemData name="Directive" defStyleNum="dsFunction" /> + <itemData name="Option" defStyleNum="dsDataType" /> + <itemData name="Token" defStyleNum="dsChar" /> + <itemData name="Value" defStyleNum="dsKeyword" /> + <itemData name="String" defStyleNum="dsString" /> + <itemData name="Number" defStyleNum="dsDecVal" /> + <itemData name="Assignment" defStyleNum="dsOthers" /> + <itemData name="Comment" defStyleNum="dsComment" /> + <itemData name="Error" defStyleNum="dsError" /> + </itemDatas> + </highlighting> + + <general> + <comments> + <comment name="singleLine" start="#" /> + </comments> + <keywords casesensitive="0" /> + </general> +</language> diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/xsupplicant.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/xsupplicant.cfg new file mode 100644 index 00000000..45d16fa6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/etc/xsupplicant.cfg @@ -0,0 +1,82 @@ +# +# GNU-like format +# + +indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs +input_tab_size = 8 # original tab size +output_tab_size = 2 # new tab size +indent_columns = 2 # should usually match output_tab_size +indent_label = 2 # pos: absolute col, neg: relative column +indent_align_string = False # align broken strings +indent_brace = 2 + +nl_enum_brace = remove # "enum {" vs "enum \n {" +nl_union_brace = remove # "union {" vs "union \n {" +nl_struct_brace = remove # "struct {" vs "struct \n {" +nl_do_brace = add # "do {" vs "do \n {" +nl_if_brace = add # "if () {" vs "if () \n {" +nl_for_brace = add # "for () {" vs "for () \n {" +nl_else_brace = add # "else {" vs "else \n {" +nl_while_brace = add # "while () {" vs "while () \n {" +nl_switch_brace = add # "switch () {" vs "switch () \n {" +nl_func_var_def_blk = 1 +nl_before_case = 1 +nl_fcall_brace = add # "foo() {" vs "foo()\n{" +nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" +# nl_after_return = TRUE +nl_brace_while = remove +nl_brace_else = add +nl_squeeze_ifdef = TRUE + +# mod_paren_on_return = ignore # "return 1;" vs "return (1);" +# mod_full_brace_if = ignore # "if (a) a--;" vs "if (a) { a--; }" +# mod_full_brace_for = ignore # "for () a--;" vs "for () { a--; }" +# mod_full_brace_do = ignore # "do a--; while ();" vs "do { a--; } while ();" +# mod_full_brace_while = ignore # "while (a) a--;" vs "while (a) { a--; }" + +sp_before_semi = remove +sp_paren_paren = remove # space between (( and )) +sp_return_paren = remove # "return (1);" vs "return(1);" +sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)" +sp_before_sparen = force # "if (" vs "if(" +sp_after_sparen = force # "if () {" vs "if (){" +sp_after_cast = remove # "(int) a" vs "(int)a" +sp_inside_braces = force # "{ 1 }" vs "{1}" +sp_inside_braces_struct = force # "{ 1 }" vs "{1}" +sp_inside_braces_enum = force # "{ 1 }" vs "{1}" +sp_inside_paren = remove +sp_inside_fparen = remove +sp_inside_sparen = remove +#sp_type_func = ignore +sp_assign = force +sp_arith = force +sp_bool = force +sp_compare = force +sp_after_comma = force +sp_func_def_paren = remove # "int foo (){" vs "int foo(){" +sp_func_call_paren = remove # "foo (" vs "foo(" +sp_func_proto_paren = remove # "int foo ();" vs "int foo();" + +# align_with_tabs = FALSE # use tabs to align +# align_on_tabstop = FALSE # align on tabstops +# align_enum_equ_span = 4 +# align_nl_cont = TRUE +# align_var_def_span = 2 +# align_var_def_inline = TRUE +# align_var_def_star = TRUE +# align_var_def_colon = TRUE +# align_assign_span = 1 +# align_struct_init_span = 3 +# align_var_struct_span = 3 +# align_right_cmt_span = 3 +# align_pp_define_span = 3 +# align_pp_define_gap = 4 +# align_number_right = TRUE +# align_typedef_span = 5 +# align_typedef_gap = 3 + +# cmt_star_cont = TRUE + +eat_blanks_before_close_brace = TRUE +eat_blanks_after_open_brace = TRUE + |