diff --git a/.gitignore b/.gitignore index f319d43..eeb6ccb 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,5 @@ protonmail/.config/protonmail/bridge/cache protonmail/.config/protonmail/bridge/*.pem # zsh -zsh/.config/zsh/.zcompcache zsh/.config/zsh/.zcompdump zsh/.config/zsh/.zsh_history diff --git a/uncrustify/.config/uncrustify/uncrustify.conf b/uncrustify/.config/uncrustify/uncrustify.conf deleted file mode 100644 index 7d9e4d0..0000000 --- a/uncrustify/.config/uncrustify/uncrustify.conf +++ /dev/null @@ -1,3493 +0,0 @@ -# Uncrustify-0.75.1 - -# -# 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>=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. multi-line macros). -disable_processing_nl_cont = false # true/false - -# Specify the marker used in comments to disable processing of part of the -# file. -# -# Default: *INDENT-OFF* -disable_processing_cmt = " *INDENT-OFF*" # string - -# Specify the marker used in comments to (re)enable processing in a file. -# -# Default: *INDENT-ON* -enable_processing_cmt = " *INDENT-ON*" # string - -# Enable parsing of digraphs. -enable_digraphs = false # true/false - -# Option to allow both disable_processing_cmt and enable_processing_cmt -# strings, if specified, to be interpreted as ECMAScript regular expressions. -# If true, a regex search will be performed within comments according to the -# specified patterns in order to disable/enable processing. -processing_cmt_as_regex = false # true/false - -# Add or remove the UTF-8 BOM (recommend 'remove'). -utf8_bom = ignore # ignore/add/remove/force/not_defined - -# 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 - -# -# Spacing options -# - -# Add or remove space around non-assignment symbolic operators ('+', '/', '%', -# '<<', and so forth). -sp_arith = add # ignore/add/remove/force/not_defined - -# Add or remove space around arithmetic operators '+' and '-'. -# -# Overrides sp_arith. -sp_arith_additive = add # ignore/add/remove/force/not_defined - -# Add or remove space around assignment operator '=', '+=', etc. -sp_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space around '=' in C++11 lambda capture specifications. -# -# Overrides sp_assign. -sp_cpp_lambda_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space after the capture specification of a C++11 lambda when -# an argument list is present, as in '[] (int x){ ... }'. -sp_cpp_lambda_square_paren = add # ignore/add/remove/force/not_defined - -# Add or remove space after the capture specification of a C++11 lambda with -# no argument list is present, as in '[] { ... }'. -sp_cpp_lambda_square_brace = add # ignore/add/remove/force/not_defined - -# Add or remove space after the opening parenthesis and before the closing -# parenthesis of a argument list of a C++11 lambda, as in -# '[]( int x ){ ... }'. -sp_cpp_lambda_argument_list = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the argument list of a C++11 lambda, as in -# '[](int x) { ... }'. -sp_cpp_lambda_paren_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a lambda body and its call operator of an -# immediately invoked lambda, as in '[]( ... ){ ... } ( ... )'. -sp_cpp_lambda_fparen = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space before assignment operator '=', '+=', etc. -# -# Overrides sp_assign. -sp_before_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space after assignment operator '=', '+=', etc. -# -# Overrides sp_assign. -sp_after_assign = ignore # ignore/add/remove/force/not_defined - -# Add or remove space in 'enum {'. -# -# Default: add -sp_enum_brace = add # ignore/add/remove/force/not_defined - -# Add or remove space in 'NS_ENUM ('. -sp_enum_paren = add # ignore/add/remove/force/not_defined - -# Add or remove space around assignment '=' in enum. -sp_enum_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space before assignment '=' in enum. -# -# Overrides sp_enum_assign. -sp_enum_before_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space after assignment '=' in enum. -# -# Overrides sp_enum_assign. -sp_enum_after_assign = add # ignore/add/remove/force/not_defined - -# Add or remove space around assignment ':' in enum. -sp_enum_colon = add # ignore/add/remove/force/not_defined - -# Add or remove space around preprocessor '##' concatenation operator. -# -# Default: add -sp_pp_concat = add # ignore/add/remove/force/not_defined - -# Add or remove space after preprocessor '#' stringify operator. -# Also affects the '#@' charizing operator. -sp_pp_stringify = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before preprocessor '#' stringify operator -# as in '#define x(y) L#y'. -sp_before_pp_stringify = ignore # ignore/add/remove/force/not_defined - -# Add or remove space around boolean operators '&&' and '||'. -sp_bool = add # ignore/add/remove/force/not_defined - -# Add or remove space around compare operator '<', '>', '==', etc. -sp_compare = add # ignore/add/remove/force/not_defined - -# Add or remove space inside '(' and ')'. -sp_inside_paren = remove # ignore/add/remove/force/not_defined - -# Add or remove space between nested parentheses, i.e. '((' vs. ') )'. -sp_paren_paren = remove # ignore/add/remove/force/not_defined - -# Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('. -sp_cparen_oparen = remove # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space between nested braces, i.e. '{{' vs. '{ {'. -sp_brace_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before pointer star '*'. -sp_before_ptr_star = remove # ignore/add/remove/force/not_defined - -# 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 = remove # ignore/add/remove/force/not_defined - -# Add or remove space between pointer stars '*', as in 'int ***a;'. -sp_between_ptr_star = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space after pointer caret '^', if followed by a word. -sp_after_ptr_block_caret = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after pointer star '*', if followed by a qualifier. -sp_after_ptr_star_qualifier = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space after a pointer star '*' in the trailing return of a -# function prototype or function definition. -sp_after_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between the pointer star '*' and the name of the variable -# in a function pointer definition. -sp_ptr_star_func_var = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between the pointer star '*' and the name of the type -# in a function pointer type definition. -sp_ptr_star_func_type = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove space before a pointer star '*' in the trailing return of a -# function prototype or function definition. -sp_before_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before a reference sign '&'. -sp_before_byref = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space after reference sign '&', if followed by a word. -# -# Overrides sp_type_func. -sp_after_byref = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove space after a reference sign '&', if followed by an open -# parenthesis, as in 'char& (*)()'. -sp_byref_paren = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space between 'decltype(...)' and word, -# brace or function call. -sp_after_decltype = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# Add or remove space between 'template' and '<'. -# If set to ignore, sp_before_angle is used. -sp_template_angle = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before '<'. -sp_before_angle = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '<' and '>'. -sp_inside_angle = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '<>'. -sp_inside_angle_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '>' and ':'. -sp_angle_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after '>'. -sp_after_angle = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '>' and '(' as found in 'new List(foo);'. -sp_angle_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '>' and '()' as found in 'new List();'. -sp_angle_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '>' and a word as in 'List m;' or -# 'template static ...'. -sp_angle_word = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '>' and '>' in '>>' (template stuff). -# -# Default: add -sp_angle_shift = add # ignore/add/remove/force/not_defined - -# (C++11) Permit removal of the space between '>>' in 'foo >'. 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/not_defined - -# Add or remove space inside '(' and ')' of control statements other than -# 'for'. -sp_inside_sparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after '(' of control statements other than 'for'. -# -# Overrides sp_inside_sparen. -sp_inside_sparen_open = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before ')' of control statements other than 'for'. -# -# Overrides sp_inside_sparen. -sp_inside_sparen_close = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '(' and ')' of 'for' statements. -sp_inside_for = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after '(' of 'for' statements. -# -# Overrides sp_inside_for. -sp_inside_for_open = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before ')' of 'for' statements. -# -# Overrides sp_inside_for. -sp_inside_for_close = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '((' or '))' of control statements. -sp_sparen_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after ')' of control statements. -sp_after_sparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and '{' of control statements. -sp_sparen_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'do' and '{'. -sp_do_brace_open = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '}' and 'while'. -sp_brace_close_while = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'while' and '('. Overrides sp_before_sparen. -sp_while_paren_open = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove space between 'invariant' and '('. -sp_invariant_paren = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove space after the ')' in 'invariant (C) c'. -sp_after_invariant_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before empty statement ';' on 'if', 'for' and 'while'. -sp_special_semi = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before ';'. -# -# Default: remove -sp_before_semi = remove # ignore/add/remove/force/not_defined - -# Add or remove space before ';' in non-empty 'for' statements. -sp_before_semi_for = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before a semicolon of an empty left part of a for -# statement, as in 'for ( ; ; )'. -sp_before_semi_for_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between the semicolons of an empty middle part of a for -# statement, as in 'for ( ; ; )'. -sp_between_semi_for_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after ';', except when followed by a comment. -# -# Default: add -sp_after_semi = add # ignore/add/remove/force/not_defined - -# Add or remove space after ';' in non-empty 'for' statements. -# -# Default: force -sp_after_semi_for = force # ignore/add/remove/force/not_defined - -# Add or remove space after the final semicolon of an empty part of a for -# statement, as in 'for ( ; ; )'. -sp_after_semi_for_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before '[' (except '[]'). -sp_before_square = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before '[' for a variable definition. -# -# Default: remove -sp_before_vardef_square = remove # ignore/add/remove/force/not_defined - -# Add or remove space before '[' for asm block. -sp_before_square_asm_block = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before '[]'. -sp_before_squares = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before C++17 structured bindings. -sp_cpp_before_struct_binding = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside a non-empty '[' and ']'. -sp_inside_square = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '[]'. -sp_inside_square_empty = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# Add or remove space after ',', i.e. 'a,b' vs. 'a, b'. -sp_after_comma = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before ',', i.e. 'a,b' vs. 'a ,b'. -# -# Default: remove -sp_before_comma = remove # ignore/add/remove/force/not_defined - -# (C#) Add or remove space between ',' and ']' in multidimensional array type -# like 'int[,,]'. -sp_after_mdatype_commas = ignore # ignore/add/remove/force/not_defined - -# (C#) Add or remove space between '[' and ',' in multidimensional array type -# like 'int[,,]'. -sp_before_mdatype_commas = ignore # ignore/add/remove/force/not_defined - -# (C#) Add or remove space between ',' in multidimensional array type -# like 'int[,,]'. -sp_between_mdatype_commas = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between an open parenthesis and comma, -# i.e. '(,' vs. '( ,'. -# -# Default: force -sp_paren_comma = force # ignore/add/remove/force/not_defined - -# Add or remove space between a type and ':'. -sp_type_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the variadic '...' when preceded by a -# non-punctuator. -# The value REMOVE will be overridden with FORCE -sp_after_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before the variadic '...' when preceded by a -# non-punctuator. -# The value REMOVE will be overridden with FORCE -sp_before_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a type and '...'. -sp_type_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a '*' and '...'. -sp_ptr_type_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and '...'. -sp_paren_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '&&' and '...'. -sp_byref_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and a qualifier such as 'const'. -sp_paren_qualifier = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and 'noexcept'. -sp_paren_noexcept = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after class ':'. -sp_after_class_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before class ':'. -sp_before_class_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after class constructor ':'. -# -# Default: add -sp_after_constr_colon = add # ignore/add/remove/force/not_defined - -# Add or remove space before class constructor ':'. -# -# Default: add -sp_before_constr_colon = add # ignore/add/remove/force/not_defined - -# Add or remove space before case ':'. -# -# Default: remove -sp_before_case_colon = remove # ignore/add/remove/force/not_defined - -# Add or remove space between 'operator' and operator sign. -sp_after_operator = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between the operator symbol and the open parenthesis, as -# in 'operator ++('. -sp_after_operator_sym = ignore # ignore/add/remove/force/not_defined - -# Overrides sp_after_operator_sym when the operator has no arguments, as in -# 'operator *()'. -sp_after_operator_sym_empty = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove spaces inside cast parentheses. -sp_inside_paren_cast = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space between 'sizeof' and '('. -sp_sizeof_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'sizeof' and '...'. -sp_sizeof_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'sizeof...' and '('. -sp_sizeof_ellipsis_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '...' and a parameter pack. -sp_ellipsis_parameter_pack = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a parameter pack and '...'. -sp_parameter_pack_ellipsis = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'decltype' and '('. -sp_decltype_paren = ignore # ignore/add/remove/force/not_defined - -# (Pawn) Add or remove space after the tag keyword. -sp_after_tag = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside enum '{' and '}'. -sp_inside_braces_enum = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside struct/union '{' and '}'. -sp_inside_braces_struct = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove space inside Objective-C boxed dictionary '{' and '}' -sp_inside_braces_oc_dict = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after open brace in an unnamed temporary -# direct-list-initialization -# if statement is a brace_init_lst -# works only if sp_brace_brace is set to ignore. -sp_after_type_brace_init_lst_open = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before close brace in an unnamed temporary -# direct-list-initialization -# if statement is a brace_init_lst -# works only if sp_brace_brace is set to ignore. -sp_before_type_brace_init_lst_close = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside an unnamed temporary direct-list-initialization -# if statement is a brace_init_lst -# works only if sp_brace_brace is set to ignore -# works only if sp_before_type_brace_init_lst_close is set to ignore. -sp_inside_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '{' and '}'. -sp_inside_braces = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside '{}'. -sp_inside_braces_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space around trailing return operator '->'. -sp_trailing_return = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove space between function name and '(' on function declaration. -sp_func_proto_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between function name and '()' on function declaration -# without parameters. -sp_func_proto_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between function name and '(' with a typedef specifier. -sp_func_type_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between alias name and '(' of a non-pointer function type typedef. -sp_func_def_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between function name and '()' on function definition -# without parameters. -sp_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space inside function '(' and ')'. -sp_inside_fparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside the first parentheses in a function type, as in -# 'void (*x)(...)'. -sp_inside_tparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between the ')' and '(' in a function type, as in -# 'void (*x)(...)'. -sp_after_tparen_close = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ']' and '(' when part of a function call. -sp_square_fparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and '{' of function. -sp_fparen_brace = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# (Java) Add or remove space between ')' and '{{' of double brace initializer. -sp_fparen_dbrace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between function name and '(' on function calls. -sp_func_call_paren = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove space inside user function '(' and ')'. -sp_func_call_user_inside_fparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between nested parentheses with user functions, -# i.e. '((' vs. '( ('. -sp_func_call_user_paren_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a constructor/destructor and the open -# parenthesis. -sp_func_class_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a constructor without parameters or destructor -# and '()'. -sp_func_class_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after 'return'. -# -# Default: force -sp_return = force # ignore/add/remove/force/not_defined - -# Add or remove space between 'return' and '('. -sp_return_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'return' and '{'. -sp_return_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '__attribute__' and '('. -sp_attribute_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'defined' and '(' in '#if defined (FOO)'. -sp_defined_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'throw' and '(' in 'throw (something)'. -sp_throw_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'throw' and anything other than '(' as in -# '@throw [...];'. -sp_after_throw = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# (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/not_defined - -# (OC) Add or remove space before Objective-C protocol list -# as in '@protocol Protocol' or '@interface MyClass : NSObject'. -sp_before_oc_proto_list = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove space between class name and '(' -# in '@interface className(categoryName):BaseClass' -sp_oc_classname_paren = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# (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/not_defined - -# Add or remove space between 'super' and '(' in 'super (something)'. -# -# Default: remove -sp_super_paren = remove # ignore/add/remove/force/not_defined - -# Add or remove space between 'this' and '(' in 'this (something)'. -# -# Default: remove -sp_this_paren = remove # ignore/add/remove/force/not_defined - -# Add or remove space between a macro name and its definition. -sp_macro = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a macro function ')' and its definition. -sp_macro_func = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'else' and '{' if on the same line. -sp_else_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '}' and 'else' if on the same line. -sp_brace_else = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '}' and the name of a typedef on the same line. -sp_brace_typedef = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before the '{' of a 'catch' statement, if the '{' and -# 'catch' are on the same line, as in 'catch (decl) {'. -sp_catch_brace = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove space before the '{' of a '@catch' statement, if the '{' -# and '@catch' are on the same line, as in '@catch (decl) {'. -# If set to ignore, sp_catch_brace is used. -sp_oc_catch_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '}' and 'catch' if on the same line. -sp_brace_catch = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# Add or remove space between 'finally' and '{' if on the same line. -sp_finally_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between '}' and 'finally' if on the same line. -sp_brace_finally = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'try' and '{' if on the same line. -sp_try_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between get/set and '{' if on the same line. -sp_getset_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a variable and '{' for C++ uniform -# initialization. -sp_word_brace_init_lst = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between a variable and '{' for a namespace. -# -# Default: add -sp_word_brace_ns = add # ignore/add/remove/force/not_defined - -# Add or remove space before the '::' operator. -sp_before_dc = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the '::' operator. -sp_after_dc = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove around the D named array initializer ':' operator. -sp_d_array_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the '!' (not) unary operator. -# -# Default: remove -sp_not = remove # ignore/add/remove/force/not_defined - -# Add or remove space between two '!' (not) unary operators. -# If set to ignore, sp_not will be used. -sp_not_not = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the '~' (invert) unary operator. -# -# Default: remove -sp_inv = remove # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space around the '.' or '->' operators. -# -# Default: remove -sp_member = remove # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. -# -# Default: remove -sp_sign = remove # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (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/not_defined - -# (OC) Add or remove space after '@property'. -sp_after_oc_property = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# Add or remove space around the ':' in 'b ? t : f'. -sp_cond_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before the ':' in 'b ? t : f'. -# -# Overrides sp_cond_colon. -sp_cond_colon_before = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the ':' in 'b ? t : f'. -# -# Overrides sp_cond_colon. -sp_cond_colon_after = ignore # ignore/add/remove/force/not_defined - -# Add or remove space around the '?' in 'b ? t : f'. -sp_cond_question = ignore # ignore/add/remove/force/not_defined - -# Add or remove space before the '?' in 'b ? t : f'. -# -# Overrides sp_cond_question. -sp_cond_question_before = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the '?' in 'b ? t : f'. -# -# Overrides sp_cond_question. -sp_cond_question_after = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make -# sense here. -sp_case_label = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove space around the D '..' operator. -sp_range = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# (D) Add or remove space between 'extern' and '(' as in 'extern (C)'. -sp_extern_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space after the opening of a C++ comment, as in '// A'. -sp_cmt_cpp_start = ignore # ignore/add/remove/force/not_defined - -# Add or remove space in a C++ region marker comment, as in '// BEGIN'. -# A region marker is defined as a comment which is not preceded by other text -# (i.e. the comment is the first non-whitespace on the line), and which starts -# with either 'BEGIN' or 'END'. -# -# Overrides sp_cmt_cpp_start. -sp_cmt_cpp_region = ignore # ignore/add/remove/force/not_defined - -# If true, space added with sp_cmt_cpp_start will be added after Doxygen -# sequences like '///', '///<', '//!' and '//!<'. -sp_cmt_cpp_doxygen = false # true/false - -# If true, space 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/not_defined - -# Add or remove space after 'new', 'delete' and 'delete[]'. -sp_after_new = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between 'new' and '(' in 'new()'. -sp_between_new_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space between ')' and type in 'new(foo) BAR'. -sp_after_newop_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove space inside parenthesis of the new operator -# as in 'new(foo) BAR'. -sp_inside_newop_paren = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove space before a trailing comment. -sp_before_tr_cmt = ignore # ignore/add/remove/force/not_defined - -# Number of spaces before a trailing comment. -sp_num_before_tr_cmt = 0 # unsigned number - -# Add or remove space before an embedded comment. -# -# Default: force -sp_before_emb_cmt = force # ignore/add/remove/force/not_defined - -# Number of spaces before an embedded comment. -# -# Default: 1 -sp_num_before_emb_cmt = 1 # unsigned number - -# Add or remove space after an embedded comment. -# -# Default: force -sp_after_emb_cmt = force # ignore/add/remove/force/not_defined - -# Number of spaces after an embedded comment. -# -# Default: 1 -sp_num_after_emb_cmt = 1 # unsigned number - -# (Java) Add or remove space between an annotation and the open parenthesis. -sp_annotation_paren = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove space after '_'. -sp_vala_after_translation = ignore # ignore/add/remove/force/not_defined - -# If true, a 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 - -# Whether to ignore indent for the first continuation line. Subsequent -# continuation lines will still be indented to match the first. -indent_ignore_first_continue = false # true/false - -# The continuation indent. If non-zero, this overrides the indent of '(', '[' -# and '=' continuation indents. Negative values are OK; negative value is -# absolute and not increased for each '(' or '[' level. -# -# For FreeBSD, this is set to 4. -# Requires indent_ignore_first_continue=false. -indent_continue = 0 # number - -# The continuation indent, only for class header line(s). If non-zero, this -# overrides the indent of 'class' continuation indents. -# Requires indent_ignore_first_continue=false. -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 = true # 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 to indent only in inner namespaces (nested in other namespaces). -# Requires indent_namespace=true. -indent_namespace_inner_only = false # true/false - -# Whether the 'extern "C"' body is indented. -indent_extern = false # true/false - -# Whether the 'class' body is indented. -indent_class = true # true/false - -# Whether to ignore indent for the leading base class colon. -indent_ignore_before_class_colon = false # true/false - -# Additional indent before the leading base class colon. -# Negative values decrease indent down to the first column. -# Requires indent_ignore_before_class_colon=false and a newline break before -# the colon (see pos_class_colon and nl_class_colon) -indent_before_class_colon = 0 # number - -# Whether to indent the stuff after a leading base class colon. -indent_class_colon = true # 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 ignore indent for a leading class initializer colon. -indent_ignore_before_constr_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 leading member initializers. -# -# Default: 2 -indent_ctor_init_leading = 2 # unsigned number - -# Virtual indent from the ':' for following member initializers. -# -# Default: 2 -indent_ctor_init_following = 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 - -# How to indent continued shift expressions ('<<' and '>>'). -# Set align_left_shift=false when using this. -# 0: Align shift operators instead of indenting them (default) -# 1: Indent by one level -# -1: Preserve original indentation -indent_shift = 0 # number - -# 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_single_line_comments_before = 0 # unsigned number - -# Spaces to indent single line ('//') comments on lines after code. -indent_single_line_comments_after = 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. -# It might be wise to choose the same value for the option indent_case_brace. -indent_switch_case = 0 # unsigned number - -# Spaces to indent the body of a 'switch' before any 'case'. -# Usually the same as indent_columns or indent_switch_case. -indent_switch_body = 0 # unsigned number - -# Whether to ignore indent for '{' following 'case'. -indent_ignore_case_brace = false # true/false - -# Spaces to indent '{' from 'case'. By default, the brace will appear under -# the 'c' in case. Usually set to 0 or indent_columns. Negative values are OK. -# It might be wise to choose the same value for the option indent_switch_case. -indent_case_brace = 0 # 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 - -# Whether to align comments before 'case' with the 'case'. -# -# Default: true -indent_case_comment = true # true/false - -# Whether to indent comments not found in first column. -# -# Default: true -indent_comment = true # true/false - -# 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 - -# Align comments on adjacent lines that are this many columns apart or less. -# -# Default: 3 -indent_comment_align_thresh = 3 # unsigned number - -# Whether to ignore indent for goto labels. -indent_ignore_label = false # true/false - -# How to indent goto labels. Requires indent_ignore_label=false. -# -# >0: Absolute column where 1 is the leftmost column -# <=0: Subtract from brace indent -# -# Default: 1 -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 -# -1: Preserve original indentation -indent_paren_close = 0 # 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 - -# How to indent a comma when inside braces. -# 0: Indent by one level (default) -# 1: Align under the open brace -# -1: Preserve original indentation -indent_comma_brace = 0 # number - -# How to indent a comma when inside parentheses. -# 0: Indent by one level (default) -# 1: Align under the open parenthesis -# -1: Preserve original indentation -indent_comma_paren = 0 # number - -# How to indent a Boolean operator when inside parentheses. -# 0: Indent by one level (default) -# 1: Align under the open parenthesis -# -1: Preserve original indentation -indent_bool_paren = 0 # number - -# Whether to ignore the indentation of a Boolean operator when outside -# parentheses. -indent_ignore_bool = false # true/false - -# Whether to ignore the indentation of an arithmetic operator. -indent_ignore_arith = 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 ignore the indentation of a semicolon outside of a 'for' -# statement. -indent_ignore_semicolon = false # true/false - -# Whether to align the first expression to following ones -# if indent_bool_paren=1. -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 ignore the indentation of an assignment operator. -indent_ignore_assign = 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 -# (i.e. 2 indent levels) -# false: only indent 1 level, don't add the indent for the open brace, only -# add the indent for the return. -# -# Default: true -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 statements 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 do statements, as in 'do { b++; } while(...);'. -nl_do_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/not_defined - -# (OC) Add or remove newline between Objective-C block signature and '{'. -nl_oc_block_brace = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove blank line before '@interface' statement. -nl_oc_before_interface = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove blank line before '@implementation' statement. -nl_oc_before_implementation = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove blank line before '@end' statement. -nl_oc_before_end = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove newline between '@interface' and '{'. -nl_oc_interface_brace = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove newline between '@implementation' and '{'. -nl_oc_implementation_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newlines at the start of the file. -nl_start_of_file = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# (D) Add or remove newline between '=' and '['. -nl_assign_square = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '[]' and '{'. -nl_tsquare_brace = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove newline after '= ['. Will also affect the newline before -# the ']'. -nl_after_square_assign = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline between 'enum' and '{'. -nl_enum_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'enum' and 'class'. -nl_enum_class = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'enum class' and the identifier. -nl_enum_class_identifier = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'enum class' type and ':'. -nl_enum_identifier_colon = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'enum class identifier :' and type. -nl_enum_colon_type = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'struct and '{'. -nl_struct_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'union' and '{'. -nl_union_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'if' and '{'. -nl_if_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '}' and 'else'. -nl_brace_else = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline between 'else' and '{'. -nl_else_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'else' and 'if'. -nl_else_if = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline before '{' opening brace -nl_before_opening_brace_func_class_def = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline before 'if'/'else if' closing parenthesis. -nl_before_if_closing_paren = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '}' and 'finally'. -nl_brace_finally = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'finally' and '{'. -nl_finally_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'try' and '{'. -nl_try_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between get/set and '{'. -nl_getset_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'for' and '{'. -nl_for_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline before the '{' of a 'catch' statement, as in -# 'catch (decl) {'. -nl_catch_brace = ignore # ignore/add/remove/force/not_defined - -# (OC) Add or remove newline before the '{' of a '@catch' statement, as in -# '@catch (decl) {'. If set to ignore, nl_catch_brace is used. -nl_oc_catch_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '}' and 'catch'. -nl_brace_catch = ignore # ignore/add/remove/force/not_defined - -# (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/not_defined - -# Add or remove newline between '}' and ']'. -nl_brace_square = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '}' and ')' in a function invocation. -nl_brace_fparen = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'while' and '{'. -nl_while_brace = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove newline between 'scope (x)' and '{'. -nl_scope_brace = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove newline between 'unittest' and '{'. -nl_unittest_brace = ignore # ignore/add/remove/force/not_defined - -# (D) Add or remove newline between 'version (x)' and '{'. -nl_version_brace = ignore # ignore/add/remove/force/not_defined - -# (C#) Add or remove newline between 'using' and '{'. -nl_using_brace = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline between 'do' and '{'. -nl_do_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '}' and 'while' of 'do' statement. -nl_brace_while = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'switch' and '{'. -nl_switch_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'synchronized' and '{'. -nl_synchronized_brace = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove newline between ')' and 'throw'. -nl_before_throw = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'namespace' and '{'. -nl_namespace_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after 'template<...>' of a template class. -nl_template_class = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after 'template<...>' of a template class declaration. -# -# Overrides nl_template_class. -nl_template_class_decl = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline after 'template<...>' of a template class definition. -# -# Overrides nl_template_class. -nl_template_class_def = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline after 'template<...>' of a template function. -nl_template_func = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after 'template<...>' of a template function -# declaration. -# -# Overrides nl_template_func. -nl_template_func_decl = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline after 'template<...>' of a template function -# definition. -# -# Overrides nl_template_func. -nl_template_func_def = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline after 'template<...>' of a template variable. -nl_template_var = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'template<...>' and 'using' of a templated -# type alias. -nl_template_using = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'class' and '{'. -nl_class_brace = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove newline before first element, after comma, and after last -# element, in 'enum'. -nl_enum_own_lines = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove newline between function scope and name, as in -# 'void A :: f() { }'. -nl_func_scope_name = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between return type and function name in a prototype. -nl_func_proto_type_name = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between a function name and the opening '(' in the -# declaration. -nl_func_paren = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_paren for functions with no parameters. -nl_func_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between a function name and the opening '(' in the -# definition. -nl_func_def_paren = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_def_paren for functions with no parameters. -nl_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between a function name and the opening '(' in the -# call. -nl_func_call_paren = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_call_paren for functions with no parameters. -nl_func_call_paren_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after '(' in a function declaration. -nl_func_decl_start = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after '(' in a function definition. -nl_func_def_start = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_decl_start when there is only one parameter. -nl_func_decl_start_single = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_def_start when there is only one parameter. -nl_func_def_start_single = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline after each ',' in a function definition. -nl_func_def_args = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline after each ',' in a function call. -nl_func_call_args = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline before the ')' in a function definition. -nl_func_def_end = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_decl_end when there is only one parameter. -nl_func_decl_end_single = ignore # ignore/add/remove/force/not_defined - -# Overrides nl_func_def_end when there is only one parameter. -nl_func_def_end_single = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Add or remove newline between '()' in a function definition. -nl_func_def_empty = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between '()' in a function call. -nl_func_call_empty = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Whether to add a newline before ')' in a function call. -nl_func_call_end = ignore # ignore/add/remove/force/not_defined - -# 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 in case 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/not_defined - -# 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/not_defined - -# Add or remove newline between C++11 lambda signature and '{'. -nl_cpp_ldef_brace = ignore # ignore/add/remove/force/not_defined - -# Add or remove newline between 'return' and the return expression. -nl_return_expr = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Whether to add a newline after the type in an unnamed temporary -# direct-list-initialization, better: -# before a direct-list-initialization. -nl_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Whether to add a newline before '{'. -nl_before_brace_open = false # true/false - -# Whether to add a newline after '{'. -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++; return;'. -nl_after_vbrace_close = false # true/false - -# Add or remove newline between the close brace and identifier, -# as in 'struct { int a; } b;'. Affects enumerations, unions and -# structures. If set to ignore, uses nl_after_brace_close. -nl_brace_struct_var = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# 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/not_defined - -# Add or remove blank line before 'for'. -nl_before_for = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line after 'for' statement. -nl_after_for = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line before 'while'. -nl_before_while = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line after 'while' statement. -nl_after_while = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line before 'switch'. -nl_before_switch = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line after 'switch' statement. -nl_after_switch = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line before 'synchronized'. -nl_before_synchronized = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line after 'synchronized' statement. -nl_after_synchronized = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line before 'do'. -nl_before_do = ignore # ignore/add/remove/force/not_defined - -# Add or remove blank line after 'do/while' statement. -nl_after_do = ignore # ignore/add/remove/force/not_defined - -# Ignore nl_before_{if,for,switch,do,synchronized} if the control -# statement is immediately after a case statement. -# if nl_before_{if,for,switch,do} is set to remove, this option -# does nothing. -nl_before_ignore_after_case = false # true/false - -# 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/not_defined - -# (Java) Whether to put a blank line after a member '.' or '->' operators. -nl_after_member = ignore # ignore/add/remove/force/not_defined - -# 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 : public Bar'. -nl_class_colon = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Whether to collapse a two-line namespace, like 'namespace foo\n{ decl; }' -# into a single line. If true, prevents other brace newline rules from turning -# such code into four lines. If true, it also preserves one-liner namespaces. -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 split one-line simple list definitions into three lines by -# adding newlines, as in 'int a[12] = { 0 };'. -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) 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 (...) 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) 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 overrides eat_blanks_after_open_brace and -# eat_blanks_before_close_brace, but is ignored when -# 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. Where -# applicable, this option is overridden with eat_blanks_after_open_brace=true -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 empty newlines before a block of variable definitions -# not at the top of a function body. If nl_after_access_spec is non-zero, -# that option takes precedence. -# -# 0: No change (default). -nl_var_def_blk_start = 0 # unsigned number - -# The number of empty 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 before a struct definition. -nl_before_struct = 0 # unsigned number - -# 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 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/not_defined - -# 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/not_defined - -# (Java) Add or remove newline between two annotations. -nl_between_annotation = ignore # ignore/add/remove/force/not_defined - -# 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 braced init list. -# -# 0: Don't align (default). -align_braced_init_list_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 - -# Whether to align on the left most assignment when multiple -# definitions are found on the same line. -# Depends on 'align_assign_span' and 'align_assign_thresh' settings. -align_assign_on_multi_var_defs = false # true/false - -# The threshold for aligning on '{' in braced init list. -# Use a negative number for absolute thresholds. -# -# 0: No limit (default). -align_braced_init_list_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 - -# How to consider (or treat) the '*' in the alignment of function prototypes. -# -# 0: Part of the type 'void * foo();' (default) -# 1: Part of the function 'void *foo();' -# 2: Dangling 'void *foo();' -# Dangling: the '*' will not be taken into account when aligning. -align_func_proto_star_style = 0 # unsigned number - -# How to consider (or treat) the '&' in the alignment of function prototypes. -# -# 0: Part of the type 'long & foo();' (default) -# 1: Part of the function 'long &foo();' -# 2: Dangling 'long &foo();' -# Dangling: the '&' will not be taken into account when aligning. -align_func_proto_amp_style = 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 -# alignment) -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 (enable cmt_indent_multi for indent with line wrapping due to cmt_width) -cmt_reflow_mode = 0 # unsigned number - -# Path to a file that contains regular expressions describing patterns for -# which the end of one line and the beginning of the next will be folded into -# the same sentence or paragraph during full comment reflow. The regular -# expressions are described using ECMAScript syntax. The syntax for this -# specification is as follows, where "..." indicates the custom regular -# expression and "n" indicates the nth end_of_prev_line_regex and -# beg_of_next_line_regex regular expression pair: -# -# end_of_prev_line_regex[1] = "...$" -# beg_of_next_line_regex[1] = "^..." -# end_of_prev_line_regex[2] = "...$" -# beg_of_next_line_regex[2] = "^..." -# . -# . -# . -# end_of_prev_line_regex[n] = "...$" -# beg_of_next_line_regex[n] = "^..." -# -# Note that use of this option overrides the default reflow fold regular -# expressions, which are internally defined as follows: -# -# end_of_prev_line_regex[1] = "[\w,\]\)]$" -# beg_of_next_line_regex[1] = "^[\w,\[\(]" -# end_of_prev_line_regex[2] = "\.$" -# beg_of_next_line_regex[2] = "^[A-Z]" -cmt_reflow_fold_regex_file = "" # string - -# Whether to indent wrapped lines to the start of the encompassing paragraph -# during full comment reflow (cmt_reflow_mode = 2). Overrides the value -# specified by cmt_sp_after_star_cont. -# -# Note that cmt_align_doxygen_javadoc_tags overrides this option for -# paragraphs associated with javadoc tags -cmt_reflow_indent_to_paragraph_start = false # true/false - -# 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 align doxygen javadoc-style tags ('@param', '@return', etc.) -# and corresponding fields such that groups of consecutive block tags, -# parameter names, and descriptions align with one another. Overrides that -# which is specified by the cmt_sp_after_star_cont. If cmt_width > 0, it may -# be necessary to enable cmt_indent_multi and set cmt_reflow_mode = 2 -# in order to achieve the desired alignment for line-wrapping. -cmt_align_doxygen_javadoc_tags = false # true/false - -# The number of spaces to insert after the star and before doxygen -# javadoc-style tags (@param, @return, etc). Requires enabling -# cmt_align_doxygen_javadoc_tags. Overrides that which is specified by the -# cmt_sp_after_star_cont. -# -# Default: 1 -cmt_sp_before_doxygen_javadoc_tags = 1 # unsigned number - -# Whether to change trailing, single-line c-comments into cpp-comments. -cmt_trailing_single_line_c_to_cpp = false # 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/not_defined - -# Add or remove braces on a single-line 'for' statement. -mod_full_brace_for = ignore # ignore/add/remove/force/not_defined - -# (Pawn) Add or remove braces on a single-line function definition. -mod_full_brace_function = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either -# have, or do not have, braces. Overrides mod_full_brace_if. -# -# 0: Don't override mod_full_brace_if -# 1: Add braces to all blocks if any block needs braces and remove braces if -# they can be removed from all blocks -# 2: Add braces to all blocks if any block already has braces, regardless of -# whether it needs them -# 3: Add braces to all blocks if any block needs braces and remove braces if -# they can be removed from all blocks, except if all blocks have braces -# despite none needing them -mod_full_brace_if_chain = 0 # unsigned number - -# 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/not_defined - -# Add or remove braces on single-line 'using ()' statement. -mod_full_brace_using = ignore # ignore/add/remove/force/not_defined - -# 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/not_defined - -# (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 fully parenthesize Boolean expressions after '=' -# statement, as in 'x = a && b > c;' => 'x = (a && (b > c));'. -mod_full_paren_assign_bool = false # true/false - -# Whether to fully parenthesize Boolean expressions after '=' -# statement, as in 'return a && b > c;' => 'return (a && (b > c));'. -mod_full_paren_return_bool = false # true/false - -# Whether to remove superfluous semicolons. -mod_remove_extra_semicolon = false # true/false - -# Whether to remove duplicate include. -mod_remove_duplicate_include = 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 - -# Whether to move a 'return' that appears after a fully braced 'case' before -# the close brace, as in 'case X: { ... } return;' => 'case X: { ... return; }'. -mod_move_case_return = 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/not_defined - -# 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/not_defined - -# (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/not_defined - -# 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 - -# Whether to indent #if/#else/#endif at the parenthesis level if the brace -# level is 0. If false, these are indented from column 1. -pp_indent_at_level0 = 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/not_defined - -# 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 the body of an #if that encompasses all the code in the file. -pp_indent_in_guard = 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 indent '#include' at the brace level. -pp_include_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 - -# How to indent braces directly inside #if, #else, and #endif. -# Requires pp_if_indent_code=true and only applies to the indent of the -# preprocesser that the braces are directly inside of. -# 0: No extra indent -# 1: Indent by one level -# -1: Preserve original indentation -# -# Default: 1 -pp_indent_brace = 1 # number - -# Whether to print warning messages for unbalanced #if and #else blocks. -# This will print a message in the following cases: -# - if an #ifdef block ends on a different indent level than -# where it started from. Example: -# -# #ifdef TEST -# int i; -# { -# int j; -# #endif -# -# - an #elif/#else block ends on a different indent level than -# the corresponding #ifdef block. Example: -# -# #ifdef TEST -# int i; -# #else -# } -# int j; -# #endif -pp_warn_unbalanced_if = false # 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) -# -# Requires indent_ignore_first_continue=false. -use_indent_continue_only_once = false # true/false - -# The indentation can be: -# - after the assignment, at the '[' character -# - at the begin of the lambda body -# -# true: indentation will be after the assignment -# false: indentation will be at the begin of the lambda body (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 - -# Set the number of characters to be printed if the text is too long, -# 0: do not truncate. -debug_truncate = 0 # unsigned 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/zsh-linux/.config/zsh-linux/.zshenv b/zsh-linux/.config/zsh-linux/.zshenv index 46d8f36..edd7615 100755 --- a/zsh-linux/.config/zsh-linux/.zshenv +++ b/zsh-linux/.config/zsh-linux/.zshenv @@ -14,11 +14,7 @@ export PASSWORD_STORE_DIR="${XDG_DATA_HOME}/password-store" export PYLINT_HOME="${XDG_CACHE_HOME}/pylint" export PYTHON_EGG_CACHE="${XDG_CACHE_HOME}/python-eggs" export PYTHON_STARTUP="${XDG_CONFIG_HOME}/python/pythonrc" -<<<<<<<< HEAD:zsh-linux/.config/zsh-linux/.zshenv export UNCRUSTIFY_CONFIG="${XDG_CONFIG_HOME}/uncrustify.conf" -======== -export UNCRUSTIFY_CONFIG="${XDG_CONFIG_HOME}/uncrustify/uncrustify.conf" ->>>>>>>> macOS:zsh-macos/.config/zsh-macos/.zshenv export WINEPREFIX="${XDG_DATA_HOME}/wine" # nnn diff --git a/zsh-linux/.config/zsh-linux/conf.d/00-aliases.zsh b/zsh-linux/.config/zsh-linux/conf.d/00-aliases.zsh index ddcc2fe..83e799b 100644 --- a/zsh-linux/.config/zsh-linux/conf.d/00-aliases.zsh +++ b/zsh-linux/.config/zsh-linux/conf.d/00-aliases.zsh @@ -1,11 +1,10 @@ # ---------- Normal Aliases ---------- # Common commands -alias cp='gcp -piv' -alias mkdir='gmkdir' -alias mv='gmv -iv' +alias cp='cp -piv' +alias mv='mv -iv' # Use safe-rm instead of rm alias rm='safe-rm -iv' -alias rmdir='grmdir -v' +alias rmdir='rmdir -v' # Games alias add-modrinth='ferium add-modrinth' @@ -19,7 +18,7 @@ alias gc='git commit' alias gca='git commit -a' alias gco='git checkout' alias gconf='${EDITOR} -- "${XDG_CONFIG_HOME:-${HOME}/.config}/git/config"' -#alias gmv='git mv' +alias gmv='git mv' alias grm='git rm' alias gs='git status' alias gtv='printf "%s" "$(git describe --long | sed "s/\([^-]*-\)g/r\1/;s/-/./g")"' @@ -74,10 +73,10 @@ alias pr='makepkg --force --clean --cleanbuild --syncdeps --rmdeps && addpkg rpm # Personal alias :q='exit' alias ct='cptemplate' -#alias less='less -i --' -alias la='gls --almost-all --color --group-directories-first --human-readable -l' -alias ls='gls --color --group-directories-first' -alias ll='gls --classify --color --group-directories-first --human-readable -l' +alias less='less -i --' +alias la='ls --almost-all --color --group-directories-first --human-readable -l' +alias ls='ls --color --group-directories-first' +alias ll='ls --classify --color --group-directories-first --human-readable -l' alias python='python3' alias spcli='speedtest-cli --secure' alias sshconfig='"${EDITOR}" -- ${HOME}/.ssh/config' @@ -151,8 +150,3 @@ stow-config () { fi done } - -getwifipassword() { - security find-generic-password -ga "$1" | rg "password" -} - diff --git a/zsh-macos/.config/zsh-macos/.zcompcache/brew_all_commands b/zsh-macos/.config/zsh-macos/.zcompcache/brew_all_commands deleted file mode 100644 index 55e9b31..0000000 --- a/zsh-macos/.config/zsh-macos/.zcompcache/brew_all_commands +++ /dev/null @@ -1,4 +0,0 @@ -list=( ${(Q)"${(z)$(<<\EO:list -'aspell-dictionaries' 'determine-rebottle-runners' 'postgresql-upgrade-database' 'services' -EO:list -)}"} ) diff --git a/zsh-macos/.config/zsh-macos/.zcompcache/brew_casks b/zsh-macos/.config/zsh-macos/.zcompcache/brew_casks deleted file mode 100644 index 65393fa..0000000 --- a/zsh-macos/.config/zsh-macos/.zcompcache/brew_casks +++ /dev/null @@ -1,4 +0,0 @@ -list=( ${(Q)"${(z)$(<<\EO:list -'0-ad' '010-editor' '115browser' '1clipboard' '1kc-razer' '1password' '1password-cli' '360safe' '3dconnexion' '3dgenceslicer' '4k-slideshow-maker' '4k-stogram' '4k-video-downloader' '4k-video-to-mp3' '4k-youtube-to-mp3' '4peaks' '5kplayer' '7777' '8bitdo-firmware-updater' '8bitdo-ultimate-software' '8x8-meet' '8x8-work' '=3.7.0' 'a-better-finder-attributes' 'a-better-finder-rename' 'a-slower-speed-of-light' 'abbyy-finereader-pdf' 'ableton-live-intro' 'ableton-live-lite' 'ableton-live-standard' 'ableton-live-suite' 'abricotine' 'abscissa' 'abstract' 'abyssoft-teleport' 'accessmenubarapps' 'accord' 'accordance' 'accurics' 'ace-link' 'acorn' 'acquia-dev' 'acronis-true-image' 'acs-acr39u-smartcard-driver' 'acslogo' 'activedock' 'activitywatch' 'actual' 'actual-odbc-pack' 'adapter' 'adguard' 'adguard-vpn' 'adium' 'adobe-acrobat-pro' 'adobe-acrobat-reader' 'adobe-air' 'adobe-connect' 'adobe-creative-cloud' 'adobe-creative-cloud-cleaner-tool' 'adobe-digital-editions' 'adobe-dng-converter' 'adoptopenjdk' 'adrive' 'advancedrestclient' 'aegisub' 'aerial' 'aether' 'aethersx2' 'aexol-remote-mouse' 'affinity-designer' 'affinity-photo' 'affinity-publisher' 'after-dark-classic' 'agenda' 'aimersoft-video-converter-ultimate' 'air-video-server-hd' 'airbuddy' 'aircall' 'airdisplay' 'airdroid' 'airflow' 'airfoil' 'airmedia' 'airparrot' 'airpass' 'airserver' 'airtable' 'airtame' 'airtool' 'airtrash' 'airunlock' 'airy' 'ajour' 'akai-professional-lpd8-editor' 'akiflow' 'alacritty' 'aladin' 'alchemy' 'aldente' 'aleph-one' 'alfaview' 'alfred' 'algodoo' 'alinof-timer' 'alipay-development-assistant' 'aliwangwang' 'aliworkbench' 'all-in-one-messenger' 'alloy' 'almighty' 'alpha' 'alt-c' 'alt-tab' 'altair-graphql-client' 'altdeploy' 'alternote' 'altserver' 'alva' 'amadeus-pro' 'amadine' 'amazon-chime' 'amazon-luna' 'amazon-music' 'amazon-photos' 'amazon-workdocs' 'amazon-workdocs-drive' 'amazon-workspaces' 'amd-power-gadget' 'amethyst' 'amitv87-pip' 'amm' 'ammonite' 'amorphousdiskmark' 'ampps' 'anaconda' 'ananas-analytics-desktop-edition' 'android-commandlinetools' 'android-file-transfer' 'android-messages' 'android-ndk' 'android-platform-tools' 'android-sdk' 'android-studio' 'androidtool' 'angband' 'angry-ip-scanner' 'anka-build-cloud-controller-and-registry' 'anka-virtualization' 'ankama' 'anki' 'ankiapp-anki' 'anonym' 'anonymousvpn' 'another-redis-desktop-manager' 'ansible-dk' 'antconc' 'anybar' 'anydesk' 'anydo' 'anylist' 'anypointstudio' 'ao' 'apache-couchdb' 'apache-directory-studio' 'apifox' 'apipost' 'apk-icon-editor' 'app-cleaner' 'app-fair' 'app-tamer' 'apparency' 'appcleaner' 'appcode' 'appdelete' 'appflowy' 'appgate-sdp-client' 'appgrid' 'appium' 'appium-inspector' 'apple-events' 'apple-hewlett-packard-printer-drivers' 'apple-juice' 'applepi-baker' 'apppolice' 'appstore-quickview' 'apptivate' 'apptrap' 'appzapper' 'aptakube' 'aptanastudio' 'aptible' 'aqua-data-studio' 'aquamacs' 'aquaskk' 'aquaterm' 'araxis-merge' 'archipelago' 'archiver' 'archy' 'arctype' 'arduino' 'arduino-ide' 'aria-maestosa' 'aria2d' 'aria2gui' 'ariang' 'ark-desktop-wallet' 'arkiwi' 'armory' 'around' 'arq' 'arq-cloud-backup' 'arrsync' 'artisan' 'artpip' 'asana' 'ascension' 'asciidocfx' 'asix-ax88179' 'asset-catalog-tinkerer' 'assinador-serpro' 'astah-professional' 'astah-uml' 'astro-command-center' 'astrofox' 'astropad' 'astropad-studio' 'atemosc' 'atext' 'athens' 'atlantis' 'atlauncher' 'atok' 'atom' 'atomic-wallet' 'au-lab' 'audacity' 'audient-evo' 'audio-hijack' 'audiobook-builder' 'audiogridder-plugin' 'audiogridder-server' 'audiorelay' 'audioscrobbler' 'audioslicer' 'audirvana' 'audius' 'augur' 'aural' 'aurora-hdr' 'auryo' 'authy' 'autodesk-fusion360' 'autodmg' 'autofirma' 'automute' 'autopkgr' 'autovolume' 'autumn' 'avast-secure-browser' 'avast-security' 'avg-antivirus' 'aviatrix-vpn-client' 'avibrazil-rdm' 'avidcodecsle' 'avidemux' 'avifquicklook' 'avira-antivirus' 'avitools' 'avocode' 'avogadro' 'avtouchbar' 'awa' 'aware' 'awareness' 'awips-python' 'aws-vault' 'aws-vpn-client' 'axure-rp' 'azirevpn' 'azure-data-studio' 'babeledit' 'back-in-time' 'backblaze' 'backblaze-downloader' 'background-music' 'backlog' 'backuploupe' 'badlion-client' 'baiduinput' 'baidunetdisk' 'balance-lock' 'balenaetcher' 'ballast' 'balsamiq-wireframes' 'banana-cake-pop' 'bandage' 'bankid' 'banking-4' 'banksiagui' 'banktivity' 'banshee' 'baretorrent' 'baritone' 'barrier' 'bartender' 'base' 'basecamp' 'basictex' 'batchmod' 'bathyscaphe' 'batteries' 'battery-buddy' 'battery-report' 'battle-net' 'battlescribe' 'baudline' 'bbc-iplayer-downloads' 'bbedit' 'bdash' 'bdinfo' 'beacon-scanner' 'beaker-browser' 'beamer' 'bean' 'beardedspice' 'beast2' 'beatunes' 'bee' 'beekeeper-studio' 'beeper' 'beersmith' 'behringer-x32-edit' 'berrycast' 'bespoke' 'bestres' 'betaflight-configurator' 'betelguese' 'better-window-manager' 'betterandbetter' 'betterdiscord-installer' 'betterdisplay' 'betterdummy' 'bettermouse' 'bettertouchtool' 'betterzip' 'between' 'betwixt' 'beyond-compare' 'bfxr' 'bibdesk' 'big-mean-folder-machine' 'biglybt' 'bike' 'bili-downloader' 'bilibili' 'bilimini' 'billings-pro' 'binance' 'binary-ninja' 'bing-wallpaper' 'bingpaper' 'bino' 'birdfont' 'biscuit' 'bisq' 'bit-fiddle' 'bit-slicer' 'bitbar' 'bitcoin-core' 'bitmessage' 'bitrix24' 'bitwarden' 'bitwig-studio' 'black-ink' 'black-light' 'black-light-pro' 'blackhole-16ch' 'blackhole-2ch' 'blackhole-64ch' 'blackvue-viewer' 'blender' 'blender-benchmark' 'bleunlock' 'blheli-configurator' 'blink1control' 'blisk' 'blitz' 'blobby-volley2' 'blobsaver' 'blockbench' 'blockblock' 'blocks-code' 'blockstack' 'blocs' 'bloodhound' 'bloomrpc' 'blu-ray-player' 'blu-ray-player-pro' 'blue-sherpa' 'bluebubbles' 'bluefish' 'bluegriffon' 'blueharvest' 'bluej' 'bluejeans' 'bluesense' 'bluesnooze' 'bluestacks' 'bluetility' 'bluewallet' 'blurred' 'bob' 'boinc' 'bome-network' 'bonitastudiocommunity' 'bonjeff' 'bonjour-browser' 'bookends' 'bookmacster' 'bookwright' 'boom' 'boom-3d' 'boop' 'boost-note' 'bootstrap-studio' 'bootxchanger' 'bose-soundtouch' 'bose-updater' 'bossa' 'bot-framework-emulator' 'bowtie' 'box-drive' 'box-notes' 'box-sync' 'box-tools' 'boxcryptor' 'boxer' 'boxofsnoo-fairmount' 'boxy-suite' 'brackets' 'bragi-updater' 'brain-workshop' 'brainfm' 'brave-browser' 'breaktimer' 'breitbandmessung' 'brewlet' 'brewservicesmenubar' 'brewtarget' 'bria' 'bricklink-partdesigner' 'bricklink-studio' 'bricksmith' 'bridge' 'brightness' 'brightness-sync' 'brisk' 'brisync' 'brl-cad-mged' 'brook' 'brooklyn' 'brother-p-touch-update-software' 'browserosaurus' 'browserstacklocal' 'btcpayserver-vault' 'bubo' 'buckets' 'bugdom' 'buildsettingextractor' 'bunch' 'bunqcommunity-bunq' 'burn' 'burp-suite' 'burp-suite-professional' 'busycal' 'busycontacts' 'butler' 'butt' 'butter' 'buttercup' 'bwana' 'bzflag' 'c0re100-qbittorrent' 'cabal' 'cacher' 'caffeine' 'cajviewer' 'cakebrew' 'cakebrewjs' 'calcservice' 'caldigit-docking-utility' 'caldigit-thunderbolt-charging' 'calendar-366' 'calhash' 'calibre' 'calibrite-ccprofiler' 'calmly-writer' 'camed' 'camengine' 'camera-live' 'camerabag-photo' 'cameracontroller' 'camo-studio' 'camtasia' 'camunda-modeler' 'candybar' 'canon-captureontouch-utility' 'canon-eos-utility' 'canon-eos-webcam-utility' 'canon-fax' 'canon-ijscanner1' 'canon-ijscanner13f' 'canon-ijscanner14f' 'canon-ijscanner15f' 'canon-ijscanner16f' 'canon-ijscanner2' 'canon-ijscanner3' 'canon-ijscanner4' 'canon-ijscanner5' 'canon-ijscanner6' 'canon-imageformula-driver' 'canon-mf-printer' 'canon-mf-ufr2-printer' 'canon-pixma25xx-printer' 'canon-pixma72xx-printer' 'canon-print-studio-pro' 'canon-scangear-mf' 'cantata' 'canva' 'caprine' 'captain' 'captin' 'caption' 'capto' 'carbon-copy-cloner' 'cardhop' 'cardinal' 'cardo-update' 'cardpresso' 'caret' 'cashnotify' 'castr' 'catch' 'catlight' 'cave-story' 'ccleaner' 'ccmenu' 'cctalk' 'cd-to' 'celestia' 'celestialteapot-runway' 'cellprofiler' 'cemu' 'centered' 'cerebro' 'cernbox' 'cevelop' 'chai' 'chalk' 'charles' 'charlessoft-timetracker' 'chatmate-for-facebook' 'chatmate-for-whatsapp' 'chatology' 'chatterino' 'chatty' 'chatwork' 'cheatsheet' 'checkra1n' 'cheetah3d' 'chef-workstation' 'chemdoodle' 'chessx' 'chia' 'chiaki' 'chirp' 'choosy' 'chrome-devtools' 'chrome-remote-desktop-host' 'chromedriver' 'chromium' 'chromium-gost' 'chronicle' 'chronoagent' 'chronos' 'chronosync' 'chronycontrol' 'chrysalis' 'cider' 'cinc-workstation' 'cinch' 'cinco' 'cinder' 'cinderella' 'cinebench' 'circuitjs1' 'cirrus' 'cisco-jabber' 'cisco-proximity' 'cisdem-data-recovery' 'cisdem-document-reader' 'cisdem-duplicate-finder' 'cisdem-pdf-converter-ocr' 'cisdem-pdfmanagerultimate' 'citra' 'citrix-workspace' 'cityofzion-neon' 'ckan' 'ckb-next' 'clamxav' 'clash-for-windows' 'clashx' 'classicftp' 'classroom-assistant' 'classroom-mode-for-minecraft' 'clavia-nord-sound-manager' 'clay' 'clean-me' 'cleanapp' 'cleaneronepro' 'cleanmymac' 'cleanmymac-zh' 'cleanshot' 'cleartext' 'clementine' 'clickcharts' 'clicker-for-netflix' 'clicker-for-youtube' 'clickup' 'clion' 'clip-studio-paint' 'clipgrab' 'clips-ide' 'clipy' 'clix' 'cljstyle' 'clock' 'clock-bar' 'clock-signal' 'clocker' 'clockify' 'clocksaver' 'clone-hero' 'clonk' 'cloud-pbx' 'cloud189' 'cloudapp' 'cloudash' 'cloudcompare' 'cloudflare-warp' 'cloudmounter' 'cloudup' 'cloudytabs' 'clover' 'clover-configurator' 'cmake' 'cmd-eikana' 'cmdtap' 'cncjs' 'cncnet' 'cnkiexpress' 'coccinellida' 'coccoc' 'cockatrice' 'cocktail' 'cocoapods' 'cocoarestclient' 'cocoaspell' 'coconutbattery' 'coconutid' 'coda' 'code-composer-studio' 'code-notes' 'code42-crashplan' 'codeexpander' 'codekit' 'codelite' 'codeql' 'coderunner' 'codespace' 'coffitivity-offline' 'cog' 'coin-wallet' 'coinomi-wallet' 'cold-turkey-blocker' 'color-oracle' 'colorchecker-camera-calibration' 'colorpicker-developer' 'colorpicker-materialdesign' 'colorpicker-propicker' 'colorpicker-skalacolor' 'colorsnapper' 'colortester' 'colorwell' 'colour-contrast-analyser' 'combine-pdfs' 'comictagger' 'comma-chameleon' 'command-pad' 'command-tab-plus' 'commander-one' 'commandq' 'composercat' 'compositor' 'concept2-utility' 'conferences' 'confluent-cli' 'connectiq' 'connectmenow' 'console' 'container-ps' 'content-manager-assistant' 'contexts' 'continuity-activation-tool' 'contour' 'contraste' 'controllermate' 'controlplane' 'convert3dgui' 'cookie' 'cool-retro-term' 'coolterm' 'copyclip' 'copyq' 'copytranslator' 'coqide' 'cord' 'core-data-editor' 'corelocationcli' 'cornercal' 'cornerstone' 'corona-tracker' 'corretto' 'corsair-icue' 'coscreen' 'coteditor' 'couchbase-server-community' 'couchbase-server-enterprise' 'couchpotato' 'couleurs' 'countdown' 'coverload' 'cozy-drive' 'cpuinfo' 'cr' 'craftmanager' 'creality-slicer' 'create-recovery-partition-installer' 'createuserpkg' 'creative-sb-command' 'creepy' 'crescendo' 'criptext' 'cro-mag-rally' 'cron' 'cronnix' 'crossover' 'crosspack-avr' 'crunch' 'crushftp' 'cryo' 'crypter' 'cryptomator' 'cryptonomic-galleon' 'cryptr' 'crystalmaker' 'cscreen' 'cubicsdr' 'cuda-z' 'cumulus' 'cura-lulzbot' 'curio' 'curiosity' 'curseforge' 'cursorcerer' 'cursorsense' 'customshortcuts' 'cutesdr' 'cutter' 'cyberduck' 'cyberghost-vpn' 'cycling74-max' 'cycliq-cycliqplus' 'cycliqplus-firmware-updater' 'daedalus-mainnet' 'daedalus-testnet' 'daisydisk' 'dangerzone' 'darktable' 'darwindumper' 'dash' 'dash-dash' 'dashcam-viewer' 'dat' 'data-integration' 'data-rescue' 'data-science-studio' 'datacolor-spyder-elite' 'datacolor-spyder-express' 'datacolor-spyder-pro' 'datadog-agent' 'datagraph' 'datagrip' 'datasette' 'dataspell' 'datazenit' 'datovka' 'datweatherdoe' 'davmail' 'day-o' 'db-browser-for-sqlite' 'dbeaver-community' 'dbeaver-enterprise' 'dbgate' 'dbglass' 'dbkoda' 'dbngin' 'dbschema' 'dbvisualizer' 'dcommander' 'dcp-o-matic' 'dcp-o-matic-batch-converter' 'dcp-o-matic-combiner' 'dcp-o-matic-disk-writer' 'dcp-o-matic-editor' 'dcp-o-matic-encode-server' 'dcp-o-matic-kdm-creator' 'dcp-o-matic-player' 'dcp-o-matic-playlist-editor' 'dcv-viewer' 'dd-utility' 'ddnet' 'deadbolt' 'deathtodsstore' 'debookee' 'decentr' 'deckset' 'decloner' 'deco' 'decrediton' 'deeper' 'deepgit' 'deepl' 'deepnest' 'deepstream' 'deezer' 'default-folder-x' 'defold' 'dejalu' 'deltachat' 'deltawalker' 'deluge' 'dendroscope' 'denemo' 'depthmapx' 'descript' 'deskreen' 'desktoppr' 'desktoputility' 'desmume' 'detail' 'detectx-swift' 'detexify' 'devbook' 'devcleaner' 'devdocs' 'developerexcuses' 'deviceinfo' 'devilutionx' 'devkinsta' 'devolo-cockpit' 'devonagent' 'devonthink' 'devtoys' 'devutils' 'dexed' 'dhs' 'dia' 'diagnostics' 'dialpad' 'diashapes' 'dictater' 'dictcc-en-de-dictionary-plugin' 'dictionaries' 'dictunifier' 'difffork' 'diffmerge' 'digikam' 'digital' 'dingtalk' 'dingtalk-lite' 'direqual' 'discord' 'discretescroll' 'disk-arbitrator' 'disk-diet' 'disk-drill' 'disk-expert' 'disk-inventory-x' 'diskcatalogmaker' 'diskmaker-x' 'diskwave' 'displaperture' 'displaycal' 'displaylink' 'displaylink-login-extension' 'displays' 'ditto' 'divvy' 'dixa' 'djv' 'djview' 'dmenu-mac' 'dmg-canvas' 'dmidiplayer' 'dmm-player' 'dmm-player-for-chrome' 'do-not-disturb' 'docker' 'docker-toolbox' 'dockey' 'dockmate' 'dockstation' 'dockview' 'dogecoin' 'doll' 'dolphin' 'doomsday-engine' 'dosbox' 'dosbox-x' 'doteditor' 'dotnet' 'dotnet-sdk' 'double-commander' 'doubletwist' 'doughnut' 'douyin' 'downie' 'doxie' 'doxygen' 'dozer' 'drawbot' 'drawio' 'drawpile' 'dremel-slicer' 'drivedx' 'drivethrurpg' 'drobo-dashboard' 'droidcam-obs' 'droidid' 'drop-to-gif' 'dropbox' 'dropbox-capture' 'dropbox-passwords' 'dropdmg' 'dropletmanager' 'droplr' 'dropshare' 'dropzone' 'drovio' 'dteoh-devdocs' 'duckduckgo' 'duckietv' 'duefocus' 'duet' 'dungeon-crawl-stone-soup-console' 'dungeon-crawl-stone-soup-tiles' 'duo-connect' 'dupeguru' 'duplicacy' 'duplicacy-web-edition' 'duplicate-annihilator-for-photos' 'duplicate-file-finder' 'duplicati' 'dupscanub' 'dust3d' 'dvdstyler' 'dwarf-fortress' 'dwarf-fortress-lmp' 'dwgsee' 'dwihn0r-keepassx' 'dyalog' 'dymo-label' 'dyn-updater' 'dynalist' 'dynamic-dark-mode' 'dynamodb-local' 'dynobase' 'eagle' 'eaglefiler' 'ealeksandrov-cd-to' 'ears' 'easy-move-plus-resize' 'easyeda' 'easyfind' 'easytether' 'ebibookreader' 'ebmac' 'ecamm-live' 'eclipse-cpp' 'eclipse-dsl' 'eclipse-ide' 'eclipse-installer' 'eclipse-java' 'eclipse-javascript' 'eclipse-jee' 'eclipse-modeling' 'eclipse-php' 'eclipse-platform' 'eclipse-rcp' 'eclipse-testing' 'eddie' 'edex-ui' 'edfbrowser' 'editaro' 'eiskaltdcpp' 'eizo-colornavigator' 'ejector' 'elan' 'elasticwolf' 'elecom-mouse-assistant' 'electerm' 'electorrent' 'electric-sheep' 'electricbinary' 'electrocrud' 'electron' 'electron-api-demos' 'electron-cash' 'electron-fiddle' 'electronic-wechat' 'electronmail' 'electrum' 'electrum-grs' 'electrum-ltc' 'electrumsv' 'elektron-overbridge' 'elektron-transfer' 'element' 'elephicon' 'elgato-camera-hub' 'elgato-control-center' 'elgato-game-capture-hd' 'elgato-stream-deck' 'elgato-thunderbolt-dock' 'elgato-video-capture' 'elgato-wave-link' 'eliot' 'elmedia-player' 'eloston-chromium' 'elpass' 'emacs' 'emacsclient' 'emailchemy' 'emby-server' 'emclient' 'eme' 'emmetapp' 'emojipedia' 'empoche' 'enclave' 'encryptme' 'encryptr' 'endless-sky' 'endnote' 'endurance' 'energia' 'energybar' 'enfusegui' 'engine-prime' 'enigma' 'enjoyable' 'enpass' 'envkey' 'enzymex' 'eobcanka' 'epic' 'epic-games' 'epichrome' 'epilogue-operator' 'epoccam' 'epoch-flip-clock' 'epub-to-pdf' 'epubmdimporter' 'epubquicklook' 'eqmac' 'equinox' 'eset-cyber-security-pro' 'espanso' 'espresso' 'ethereum-wallet' 'etrecheckpro' 'eudic' 'eul' 'eurkey' 'ev3-classroom' 'eve-launcher' 'evernote' 'evkey' 'evoluent-vertical-mouse-device-controller' 'evolv-escribe-suite' 'exactscan' 'exfalso' 'exifcleaner' 'exifrenamer' 'exist-db' 'exodus' 'expandrive' 'explorer' 'expo-xde' 'expressions' 'expressscribe' 'expressvpn' 'extraterm' 'f-bar' 'fabfilter-micro' 'fabfilter-one' 'fabfilter-pro-c' 'fabfilter-pro-ds' 'fabfilter-pro-g' 'fabfilter-pro-l' 'fabfilter-pro-mb' 'fabfilter-pro-q' 'fabfilter-pro-r' 'fabfilter-saturn' 'fabfilter-simplon' 'fabfilter-timeless' 'fabfilter-twin' 'fabfilter-volcano' 'factor' 'fake' 'falcon-sql-client' 'fanny' 'fantastical' 'fantasy-grounds' 'fantasy-map-generator' 'far2l' 'farrago' 'fastclicker' 'fastmarks' 'fastrawviewer' 'fastscripts' 'fauxpas' 'favro' 'fawkes' 'fbreader' 'fedora-media-writer' 'feed-the-beast' 'feem' 'feishu' 'fellow' 'fenix' 'ferdi' 'ferdium' 'fertigt-slate' 'fetch' 'ff-works' 'fig' 'figma' 'figmadaemon' 'figtree' 'fiji' 'file-juicer' 'filebot' 'filemaker-pro' 'filemon' 'filen' 'filepane' 'final-cut-library-manager' 'final-fantasy-xiv-online' 'finalshell' 'find-any-file' 'find-empty-folders' 'findergo' 'fing' 'fing-cli' 'finicky' 'firealpaca' 'firebase-admin' 'firebird-emu' 'firecamp' 'firefly' 'firefox' 'firestorm' 'fireworks' 'firmaec' 'fiscript' 'fishing-funds' 'fission' 'fitbit-connect' 'fitbit-os-simulator' 'fl-studio' 'flacon' 'flame' 'flameshot' 'flash-decompiler-trillix' 'flashforge-flashprint' 'fldigi' 'flexiglass' 'flic' 'flickr-uploadr' 'flightgear' 'flipper' 'fliqlo' 'flirc' 'flixtools' 'flock' 'flomo' 'flotato' 'flow' 'flowsync' 'flrig' 'fluent-reader' 'fluid' 'flume' 'fluor' 'flutter' 'flux' 'fly' 'fly-key' 'flycast' 'flycut' 'flying-carpet' 'fmail' 'fmail2' 'fman' 'fme' 'fnatic-op' 'focus' 'focus-booster' 'focusatwill' 'focused' 'focusrite-control' 'focusrite-saffire-mixcontrol' 'focusrite-thunderbolt' 'fog' 'folder-colorizer' 'folding-at-home' 'foldingtext' 'foldit' 'folx' 'font-smoothing-adjuster' 'fontbase' 'fontexplorer-x-pro' 'fontforge' 'fontgoggles' 'fontlab' 'fontplop' 'fontstand' 'foobar2000' 'force-paste' 'forecast' 'fork' 'forklift' 'forticlient' 'forticlient-vpn' 'fotokasten' 'foxglove-studio' 'foxit-pdf-editor' 'foxitreader' 'foxmail' 'fpc-laz' 'fpc-src-laz' 'fractal-bot' 'framer' 'framer-x' 'franz' 'freac' 'fredm-fuse' 'free-download-manager' 'free-gpgmail' 'free-ruler' 'free42-binary' 'free42-decimal' 'freecad' 'freecol' 'freedom' 'freedome' 'freemind' 'freenettray' 'freeorion' 'freeplane' 'freesmug-chromium' 'freesurfer' 'freetube' 'freeyourmusic' 'freeze' 'frescobaldi' 'fresh' 'frhelper' 'fromscratch' 'front' 'fs-uae' 'fs-uae-launcher' 'fsmonitor' 'fsnotes' 'fspy' 'fstream' 'ftdi-vcp-driver' 'fugu' 'fujifilm-x-acquire' 'fujifilm-x-raw-studio' 'fujifilm-x-webcam' 'fujitsu-scansnap-home' 'fujitsu-scansnap-manager' 'fujitsu-scansnap-manager-ix500' 'fujitsu-scansnap-manager-s1300' 'functionflip' 'funter' 'fuse' 'futubull' 'futurerestore-gui' 'fuwari' 'fuzzyclock' 'fvim' 'fxfactory' 'g-desktop-suite' 'g-raid-with-thunderbolt-configurator' 'gactions' 'gama' 'gama-jdk' 'gamemaker' 'gameranger' 'gamma-control' 'ganache' 'ganttproject' 'gaphor' 'garagesale' 'gargoyle' 'garmin-basecamp' 'garmin-express' 'garmin-virb-edit' 'gas-mask' 'gather' 'gb-studio' 'gcc-aarch64-embedded' 'gcc-arm-embedded' 'gcollazo-mongodb' 'gcs' 'gdat' 'gdevelop' 'gdisk' 'gdlauncher' 'geany' 'gearboy' 'gearsystem' 'geburtstagschecker' 'geekbench' 'geektool' 'gemini' 'geneious-prime' 'genki-softwave' 'genki-wave-for-work' 'genymotion' 'geogebra' 'geomap' 'geotag' 'geotag-photos-pro' 'geph' 'gephi' 'get-backup-pro' 'get-iplayer-automator' 'get-lyrical' 'gfxcardstatus' 'ghdl' 'ghidra' 'ghost-browser' 'ghosttile' 'gifcapture' 'gifox' 'gifrocket' 'gimp' 'gingko' 'gisto' 'git-it' 'gitahead' 'gitblade' 'gitdock' 'gitee' 'gitfiend' 'gitfinder' 'gitfox' 'github' 'githubpulse' 'gitify' 'gitkraken' 'gitnote' 'gitpigeon' 'gitscout' 'gitter' 'gittyup' 'gitup' 'gitx' 'gk6-plus' 'glance' 'glance-chamburr' 'glimmerblocker' 'gltfquicklook' 'gluemotion' 'glyphs' 'gmail-notifier' 'gmvault' 'gns3' 'gnucash' 'go-agent' 'go-server' 'go2shell' 'go64' 'gobdokumente' 'godot' 'godot-mono' 'gog-galaxy' 'gogs' 'goland' 'goldencheetah' 'goldendict' 'goldenpassport' 'golly' 'goneovim' 'goodsync' 'goofy' 'google-ads-editor' 'google-analytics-opt-out' 'google-assistant' 'google-chat' 'google-chat-electron' 'google-chrome' 'google-cloud-sdk' 'google-drive' 'google-drive-file-stream' 'google-earth-pro' 'google-japanese-ime' 'google-trends' 'google-web-designer' 'googleappengine' 'gopanda' 'gopass-ui' 'gosign' 'gotiengviet' 'gotomeeting' 'goxel' 'gpg-suite' 'gpg-suite-no-mail' 'gpg-suite-pinentry' 'gpg-sync' 'gplates' 'gpodder' 'gpxsee' 'gqrx' 'grads' 'grafx' 'grammarly' 'grammarly-desktop' 'gramps' 'grandperspective' 'grandtotal' 'graphicconverter' 'graphiql' 'graphql-ide' 'graphql-playground' 'graphsketcher' 'gray' 'greenfoot' 'gretl' 'grid' 'grid-clock' 'gridea' 'grids' 'gridtracker' 'grisbi' 'groestlcoin-core' 'growlnotify' 'gswitch' 'gtkwave' 'guijs' 'guild-wars2' 'guilded' 'guitar-pro' 'gulp' 'guppy' 'gureumkim' 'gutenprint' 'gyazmail' 'gyazo' 'gyroflow' 'gzdoom' 'ha-menu' 'hacker-menu' 'hackintool' 'hackmd' 'hackolade' 'hakuneko' 'hammerspoon' 'hancock' 'hancom-word' 'handbrake' 'handbrakebatch' 'handshaker' 'happygrep' 'happymac' 'haptic-touch-bar' 'haptickey' 'harbor' 'harmony' 'haroopad' 'hashbackup' 'hazel' 'hazeover' 'hbuilderx' 'hdfview' 'hdhomerun' 'hdrmerge' 'headlamp' 'headset' 'heaven' 'hedgewars' 'heimdall-suite' 'helium' 'helo' 'hepta' 'hermes' 'hermit-crab' 'heroic' 'hex-fiend' 'hey' 'hfsleuth' 'hhkb-keymap-tool' 'hhkb-pro-driver' 'hiarcs-chess-explorer' 'hiddenbar' 'hightop' 'historyhound' 'hma-pro-vpn' 'holavpn' 'home-assistant' 'home-inventory' 'homebrew/core/=3.7.0' 'honer' 'honto' 'hook' 'hookshot' 'hopper-debugger-server' 'horndis' 'horos' 'hostsx' 'hot' 'hotswitch' 'houdahspot' 'houseparty' 'hp-connectivity-kit' 'hp-easy-start' 'hp-eprint' 'hp-prime' 'hstracker' 'http-toolkit' 'httpie' 'hubstaff' 'hue-topia' 'hugin' 'huiontablet' 'hush' 'hwsensors' 'hydrogen' 'hydrus-network' 'hype' 'hyper' 'hyperbackupexplorer' 'hyperdock' 'hyperkey' 'hyperswitch' 'i1profiler' 'ibabel' 'ibackup' 'ibackup-viewer' 'ibackupbot' 'ibettercharge' 'ibm-aspera-connect' 'ibm-cloud-cli' 'ibored' 'icab' 'icanhazshortcut' 'icc' 'iceberg' 'icefloor' 'icestudio' 'icloud-control' 'icollections' 'iconizer' 'iconjar' 'icons' 'icons8' 'iconscout' 'iconset' 'icq' 'id3-editor' 'idafree' 'idagio' 'idefrag' 'idisplay' 'idrive' 'ieasemusic' 'iexplorer' 'ifunbox' 'igdm' 'igetter' 'iglance' 'igv' 'iina' 'iina-plus' 'ilok-license-manager' 'ilspy' 'ilya-birman-typography-layout' 'image-tool' 'image2icon' 'imagealpha' 'imagej' 'imagemin' 'imageoptim' 'imagex' 'imazing' 'imdone' 'imgotv' 'imhex' 'imo' 'impactor' 'inav-configurator' 'infinity' 'infoflow' 'inform' 'infra' 'inkdrop' 'inkscape' 'inkstitch' 'inky' 'inloop-qlplayground' 'input-source-pro' 'inso' 'insomnia' 'inssider' 'insta360-studio' 'install-disk-creator' 'instatus-out' 'insync' 'integrity' 'intel-haxm' 'intel-power-gadget' 'intel-psxe-ce-c-plus-plus' 'intellidock' 'intellij-idea' 'intellij-idea-ce' 'internxt-drive' 'interstuhl-s40' 'intune-company-portal' 'invesalius' 'invisiblix' 'invisionsync' 'invisor-lite' 'invoker' 'ionic-lab' 'ioquake3' 'ios-app-signer' 'ios-console' 'ios-saver' 'iota-wallet' 'ip-in-menu-bar' 'ipa-manager' 'ipartition' 'ipe' 'ipepresenter' 'ipfs' 'iphoto-library-manager' 'ipremoteutility' 'ipsecuritas' 'iptvnator' 'ipvanish-vpn' 'ipynb-quicklook' 'iqmol' 'irccloud' 'ireadfast' 'iridium' 'iris' 'iriunwebcam' 'irpf2021' 'irpf2022' 'isabelle' 'ishowu' 'ishowu-instant' 'isimulator' 'islide' 'isolator' 'istat-menus' 'istat-server' 'isteg' 'isubtitle' 'iswiff' 'isyncer' 'isyncr' 'itau' 'itch' 'iterm2' 'ithoughtsx' 'itk-snap' 'itraffic' 'itsycal' 'itubedownloader' 'itunes-producer' 'itunes-volume-control' 'ivideonserver' 'ivolume' 'ivpn' 'izip' 'izotope-product-portal' 'j' 'jabra-direct' 'jabref' 'jad' 'jaikoz' 'jalview' 'jameica' 'james' 'jamf-migrator' 'jami' 'jamkazam' 'jamovi' 'jamulus' 'jandi' 'jandi-statusbar' 'jasp' 'jasper' 'jaxx-liberty' 'jazzup' 'jbrowse' 'jclasslib-bytecode-viewer' 'jcryptool' 'jd-gui' 'jdiskreport' 'jdk-mission-control' 'jdownloader' 'jedit' 'jedit-omega' 'jellybeansoup-netflix' 'jellyfin' 'jellyfin-media-player' 'jenkins-menu' 'jet' 'jetbrains-gateway' 'jetbrains-space' 'jetbrains-toolbox' 'jettison' 'jewelrybox' 'jgrasp' 'jgrennison-openttd' 'jietu' 'jiggler' 'jitouch' 'jitsi' 'jitsi-meet' 'jmc' 'joinme' 'joker' 'jollysfastvnc' 'joplin' 'joshjon-nocturnal' 'josm' 'journey' 'jpadilla-rabbitmq' 'jpadilla-redis' 'jpc-qlcolorcode' 'jprofiler' 'jqbx' 'jquake' 'jt-bridge' 'jtool' 'jtool2' 'jubler' 'juice' 'julia' 'jump' 'jump-desktop-connect' 'jumpcut' 'jumpshare' 'jupyter-notebook-ql' 'jupyter-notebook-viewer' 'jupyterlab' 'kactus' 'kakapo' 'kaku' 'kaleidoscope' 'kap' 'kapitainsky-rclone-browser' 'karabiner-elements' 'katalon-studio' 'katana' 'katrain' 'kawa' 'kdenlive' 'kdiff3' 'kdocs' 'kdrive' 'keep' 'keep-it' 'keepassx' 'keepassxc' 'keeper-password-manager' 'keepingyouawake' 'keet' 'keeweb' 'keka' 'kekaexternalhelper' 'kensington-trackball-works' 'kensingtonworks' 'kern' 'kext-updater' 'kext-utility' 'kextviewr' 'key-codes' 'keybase' 'keyboard-cleaner' 'keyboard-maestro' 'keyboardcleantool' 'keyboardholder' 'keycast' 'keycastr' 'keycombiner' 'keycue' 'keyfinder' 'keyman' 'keymanager' 'keypad-layout' 'keysafe' 'keyshot' 'keysmith' 'keystore-explorer' 'kicad' 'kid3' 'kieler' 'kiibohd-configurator' 'kindavim' 'kindle' 'kindle-comic-converter' 'kindle-comic-creator' 'kindle-previewer' 'kinza' 'kitematic' 'kitty' 'kiwi-for-gmail' 'kiwix' 'kkbox' 'klatexformula' 'klayout' 'klogg' 'klokki' 'kmbmpdc' 'kmeet' 'kmplayer' 'knime' 'knock' 'knockknock' 'knotes' 'knuff' 'koa11y' 'koala' 'kobo' 'kodelife' 'kodi' 'komet' 'komodo-edit' 'komodo-ide' 'konica-minolta-bizhub-c220-c280-c360-driver' 'konica-minolta-bizhub-c750i-driver' 'konica-minolta-bizhub-c759-c658-c368-c287-c3851-driver' 'koodo-reader' 'kotlin-native' 'krisp' 'krita' 'kryoflux' 'ksdiff' 'ksnip' 'kstars' 'kube-cluster' 'kube-forwarder' 'kubecontext' 'kubenav' 'kubernetic' 'kugoumusic' 'kui' 'kvirc' 'kyocera-printer-drivers' 'kyokan-bob' 'lab' 'lacie-network-assistant' 'lacona' 'laconvolver' 'lagrange' 'lando' 'landrop' 'languagetool' 'lantern' 'lapce' 'laravel-kit' 'lark' 'lastfm' 'lastpass' 'latest' 'latexdraw' 'latexit' 'launchbar' 'launchcontrol' 'launchpad-manager' 'launchrocket' 'launchy' 'laverna' 'lazarus' 'lazpaint' 'lazy' 'lbry' 'league-displays' 'league-of-legends' 'leanote' 'leap-motion' 'leapp' 'lectrote' 'ledger-live' 'leech' 'leela' 'lego-mindstorms-ev3' 'lehreroffice' 'lemonlime' 'lens' 'leocad' 'lepton' 'letter-opener' 'lg-dual-controller' 'lg-onscreen-control' 'libcblite' 'libcblite-community' 'librecad' 'libreelec-usb-sd-creator' 'libreoffice' 'libreoffice-language-pack' 'librepcb' 'librewolf' 'licecap' 'license-control-center' 'licensed' 'liclipse' 'lidarr' 'lifesize' 'lightform' 'lightgallery' 'lighting' 'lightkey' 'lightproxy' 'lighttable' 'lightworks' 'lincastor' 'line-bot-designer' 'linear' 'linear-linear' 'linearmouse' 'lingon-x' 'linkliar' 'linn-konfig' 'linphone' 'listen1' 'litecoin' 'liteicon' 'liteide' 'little-navmap' 'little-snitch' 'live-home-3d' 'livebook' 'livetail' 'lmms' 'lmsclients-squeezeplay' 'loading' 'loaf' 'local' 'localdev' 'localizationeditor' 'localxpose' 'locationsimulator' 'lockdown' 'lockrattler' 'lofi' 'logdna-agent' 'logdna-cli' 'logi-options-plus' 'logicalshift-zoom' 'logicsniffer' 'loginputmac' 'logisim' 'logisim-evolution' 'logitech-camera-settings' 'logitech-control-center' 'logitech-firmwareupdatetool' 'logitech-g-hub' 'logitech-gaming-software' 'logitech-myharmony' 'logitech-options' 'logitech-presentation' 'logitech-unifying' 'logmein-client' 'logmein-hamachi' 'logos' 'logseq' 'lookin' 'lookingglassbridge' 'lookingglassstudio' 'loom' 'loopback' 'losslesscut' 'loupedeck' 'love' 'lovense-remote' 'lrtimelapse' 'ltspice' 'ludwig' 'luftdateninfo-flashing-tool' 'lulu' 'lumen' 'luminance-hdr' 'luna-display' 'luna-secondary' 'lunacy' 'lunar' 'lunar-client' 'lunasea' 'lunastudio' 'luxmark' 'luyten' 'lx-music' 'lycheeslicer' 'lyn' 'lynkeos' 'lynx' 'lynxlet' 'lyrics-master' 'lyricsx' 'lyx' 'm3unify' 'mac2imgur' 'macast' 'macbreakz' 'maccleaner-pro' 'maccpuid' 'maccy' 'macdependency' 'macdive' 'macdjview' 'macdown' 'macdroid' 'macdropany' 'macforge' 'macfuse' 'macfusion-ng' 'macgamestore' 'macgdbp' 'macgesture' 'machacha' 'machg' 'machoexplorer' 'machoview' 'maciasl' 'macintoshjs' 'macjournal' 'macloggerdx' 'macmediakeyforwarder' 'macmorpheus' 'macpar-deluxe' 'macpass' 'macpilot' 'macrorecorder' 'macs-fan-control' 'macstroke' 'macsvg' 'macterm' 'mactex' 'mactex-no-gui' 'mactracker' 'macupdate' 'macupdater' 'macvim' 'macwinzipper' 'macx-dvd-ripper-mac-free-edition' 'macx-dvd-ripper-pro' 'macx-video' 'macx-video-converter-pro' 'macx-youtube-downloader' 'maczip' 'maczip4win' 'maelstrom' 'maestral' 'magicavoxel' 'magiccap' 'magicplot' 'mailbutler' 'mailmaster' 'mailmate' 'mailplane' 'mailspring' 'mailtrackerblocker' 'maintenance' 'majsoul-plus' 'makehuman' 'makemkv' 'maltego' 'malus' 'malwarebytes' 'mambaforge' 'mame' 'mamp' 'mana-security' 'manageengine-mibbrowser' 'manico' 'manictime' 'manila' 'manta' 'manuskript' 'manymc' 'manyverse' 'marathon' 'marathon-infinity' 'marathon2' 'marble' 'marginnote' 'mari0' 'maria' 'mark-text' 'markdown-service-tools' 'markdownmdimporter' 'marked' 'markright' 'mars' 'marsedit' 'marshallofsound-google-play-music-player' 'marta' 'marvel' 'marvin' 'masscode' 'massreplaceit' 'master-pdf-editor' 'mat' 'mate-translate' 'mater' 'material-colors' 'mathcha-notebook' 'mathpix-snipping-tool' 'mathtype' 'matterhorn' 'mattermost' 'mattr-slate' 'mauve' 'mavensmate' 'max' 'maxon' 'mazda-toolbox' 'mbcord' 'mbed-studio' 'mblock' 'mcbopomofo' 'mcedit' 'mcgimp' 'mcreator' 'mdimagesizemdimporter' 'mdrp' 'mds' 'mechvibes' 'media-center' 'media-converter' 'mediaelch' 'mediahuman-audio-converter' 'mediahuman-youtube-downloader' 'mediainfo' 'mediathekview' 'medibangpaintpro' 'medis' 'meetingbar' 'mega' 'megacmd' 'megasync' 'megazeux' 'meld' 'mellel' 'mellow' 'mellowplayer' 'melodics' 'melonbooksviewer' 'melonds' 'mem' 'memo' 'memory' 'memory-clean-3' 'memory-cleaner' 'memory-map' 'mendeley' 'mendeley-reference-manager' 'menu-bar-splitter' 'menubar-colors' 'menubar-countdown' 'menubar-stats' 'menucalendarclock-ical' 'menumeters' 'menutube' 'menuwhere' 'merlin-project' 'mesasqlite' 'meshlab' 'messenger' 'messenger-native' 'messenger-unofficial' 'meta' 'metabase' 'metadatics' 'metaimage' 'metashape' 'metashapepro' 'metasploit' 'metaz' 'meteorologist' 'mgba' 'mi' 'mia-for-gmail' 'miaoyan' 'mic-drop' 'michaelvillar-timer' 'micro-sniff' 'micro-snitch' 'microblog' 'micromamba' 'microsoft-auto-update' 'microsoft-azure-storage-explorer' 'microsoft-edge' 'microsoft-excel' 'microsoft-intellipoint' 'microsoft-office' 'microsoft-openjdk' 'microsoft-outlook' 'microsoft-powerpoint' 'microsoft-remote-desktop' 'microsoft-teams' 'microsoft-word' 'middle' 'middleclick' 'midi-monitor' 'midi-router-client' 'midikeys' 'midistroke' 'miditrail' 'midiview' 'mighty-mike' 'mikogo' 'miktex-console' 'milanote' 'milkman' 'milkytracker' 'millie' 'miln-movie-splitter' 'mimecast' 'mimestream' 'mimu-glover' 'min' 'mindforger' 'mindjet-mindmanager' 'mindmaster' 'minecraft' 'minecraft-server' 'minecraftpe' 'mini-program-studio' 'mini-vmac' 'miniconda' 'miniforge' 'minishift' 'minitimer' 'minitube' 'miniwol' 'minizincide' 'mints' 'mipony' 'miro' 'mirrordisplays' 'mirrorop' 'mission-control-plus' 'missive' 'mit-app-inventor' 'mixed-in-key' 'mixed-in-key-live' 'mixxx' 'mjml' 'mjolnir' 'mkchromecast' 'mks' 'mkvtoolnix' 'mkvtools' 'mmex' 'mmhmm' 'mnemosyne' 'mob' 'mobirise' 'mobster' 'mochi' 'mockoon' 'mockplus' 'mockuuups-studio' 'modelio' 'modern-csv' 'moderndeck' 'modmove' 'moebius' 'moefe-google-translate' 'mojibar' 'molotov' 'monal' 'monero-wallet' 'moneydance' 'moneymoney' 'moneywiz' 'mongodb-compass' 'mongodb-compass-isolated-edition' 'mongodb-compass-readonly' 'mongodb-realm-studio' 'mongodbpreferencepane' 'mongotron' 'monitorcontrol' 'monity-helper' 'mono-mdk' 'monodraw' 'monolingual' 'monterey-cache-cleaner' 'moom' 'moonlight' 'moose' 'moradownloader' 'morkro-papyrus' 'morpheus' 'mos' 'mosaic' 'moscow-ml' 'motrix' 'motu-m-series' 'mountain' 'mountain-duck' 'mounty' 'mouse-fix' 'mouse-locator' 'mousepose' 'movist' 'movist-pro' 'mp3gain-express' 'mp3tag' 'mp4tools' 'mpeg-streamclip' 'mplab-xc16' 'mplab-xc32' 'mplab-xc8' 'mplabx-ide' 'mplayer-osx-extended' 'mplayerx' 'mps' 'mpv' 'mqtt-explorer' 'mqttfx' 'mqttx' 'mtgaprotracker' 'mtmr' 'mu-editor' 'mubu' 'mucommander' 'mudlet' 'mullvadvpn' 'multi' 'multibit-hd' 'multifirefox' 'multimc' 'multipass' 'multipatch' 'multitouch' 'mumble' 'mumu' 'munki' 'munkiadmin' 'mural' 'murus' 'musaicfm' 'muse' 'museeks' 'musescore' 'music-bar' 'music-manager' 'musicbrainz-picard' 'musictube' 'muteme' 'mutespotifyads' 'mutesync' 'mutify' 'muzzle' 'mweb-pro' 'mx-power-gadget' 'my-budget' 'my-image-garden' 'mycloud' 'mycrypto' 'mylio' 'mymonero' 'mysides' 'mysql-connector-python' 'mysql-shell' 'mysqlworkbench' 'mysteriumvpn' 'n1ghtshade' 'nagbar' 'nagstamon' 'nally' 'name-mangler' 'namebench' 'namechanger' 'nano' 'nanoem' 'nanosaur' 'nanostudio' 'nasas-eyes' 'native-access' 'nativedisplaybrightness' 'natron' 'nault' 'nautilus' 'naver-whale' 'navicat-data-modeler' 'navicat-data-modeler-essentials' 'navicat-for-mariadb' 'navicat-for-mysql' 'navicat-for-oracle' 'navicat-for-postgresql' 'navicat-for-sql-server' 'navicat-for-sqlite' 'navicat-premium' 'navicat-premium-essentials' 'ncar-ncl' 'ndm' 'neat-reader' 'neo4j' 'neofinder' 'neovide' 'nestopia' 'netbeans' 'netdownloadhelpercoapp' 'neteasemusic' 'netgear-switch-discovery-tool' 'nethackcocoa' 'netiquette' 'netlogo' 'netnewswire' 'netron' 'netspot' 'network-radar' 'netxms-console' 'next' 'nextcloud' 'nfov' 'ngrok' 'nheko' 'ni-488-2' 'nifty' 'niftyman' 'night-owl' 'nightfall' 'nightingale' 'nightowl' 'nimble-commander' 'nimblenote' 'nimbus' 'ninja-download-manager-ndm' 'nisus-thesaurus' 'nitro-pdf-pro' 'nitrokey' 'nitroshare' 'no-ip-duc' 'nocturn' 'nocturnal' 'nocturne' 'nodebox' 'nodeclipse' 'noisebuddy' 'noisy' 'nomachine' 'nomachine-enterprise-client' 'nomad' 'nordic-nrf-command-line-tools' 'nordic-nrf-connect' 'nordlayer' 'nordlocker' 'nordpass' 'nordvpn' 'northernspysoftware-colorpicker' 'nosleep' 'nosql-workbench' 'nosqlbooster-for-mongodb' 'not-pacman' 'not-tetris' 'nota' 'notable' 'notational-velocity' 'notch-simulator' 'notebooks' 'notedup' 'notesnook' 'noti' 'notion' 'notion-enhanced' 'noto' 'notunes' 'noun-project' 'nova' 'novabench' 'now-tv-player' 'noxappplayer' 'nrlquaker-winbox' 'nslogger' 'nsregextester' 'nteract' 'ntfstool' 'nuage' 'nuclear' 'nucleo' 'nuclino' 'nudge' 'nulloy' 'nullpomino' 'numi' 'nutstore' 'nvalt' 'nvidia-cuda-toolkit' 'nvidia-geforce-now' 'nvidia-web-driver' 'nwjs' 'nym-wallet' 'nzbget' 'nzbvortex' 'obinskit' 'objectivesharpie' 'objektiv' 'obs' 'obs-ios-camera-source' 'obs-ndi' 'obs-virtualcam' 'obs-websocket' 'obsbot-me-tool' 'obsbot-tinycam' 'obsidian' 'ocenaudio' 'oclint' 'octomouse' 'odbc-manager' 'odrive' 'offset-explorer' 'ogdesign-eagle' 'okta-advanced-server-access' 'old-school-runescape' 'olive' 'omegat' 'omnidazzle' 'omnidb' 'omnidisksweeper' 'omnifocus' 'omnigraffle' 'omnioutliner' 'omniplan' 'omnipresence' 'ondesoft-audiobook-converter' 'one-switch' 'onecast' 'onedrive' 'onenote-importer-preview' 'onepile' 'onionshare' 'only-switch' 'onlyoffice' 'onyx' 'oolite' 'open-in-code' 'open-video-downloader' 'openaudible' 'openbazaar' 'openbci' 'openboard' 'openboardview' 'openconnect-gui' 'opencore-configurator' 'opencore-patcher' 'opencpn' 'opendnsupdater' 'openemu' 'openframeworks' 'openin' 'openineditor-lite' 'openintelwireless-heliport' 'openinterminal' 'openinterminal-lite' 'openkey' 'openloco' 'openlp' 'openmsx' 'openmtp' 'openmw' 'openoffice' 'openphone' 'openpht' 'openra' 'openrct2' 'openrefine' 'opensc' 'openscad' 'opensesame' 'openshift-client' 'openshot-video-editor' 'opensim' 'opensong' 'opentoonz' 'openttd' 'opentx-companion' 'openvanilla' 'openvisualtraceroute' 'openvpn-connect' 'openwebstart' 'openzfs' 'opera' 'opera-gx' 'opera-mobile-emulator' 'opera-neon' 'operadriver' 'operator' 'opgg' 'optimage' 'optimus-player' 'oracle-jdk' 'oracle-jdk-javadoc' 'orange' 'orangedrangon-android-messages' 'orca' 'origami-studio' 'origin' 'orion' 'orka' 'orka-vm-tools' 'oryoki' 'osbuddy' 'oscar' 'oscilloscope' 'osculator' 'osirix-quicklook' 'osmc' 'oso-cloud' 'osp-tracker' 'osquery' 'oss-browser' 'osu' 'osxfuse' 'otto-matic' 'otx' 'outguess' 'outline' 'outline-manager' 'output-factory' 'outset' 'overdrive-media-console' 'overflow' 'overkill' 'oversight' 'owasp-zap' 'owncloud' 'oxwu' 'oxygen-xml-editor' 'p4' 'p4v' 'pablodraw' 'pacifist' 'packages' 'packet-peeper' 'packetproxy' 'packetsender' 'paddle-easydl' 'padloc' 'pages-data-merge' 'pagico' 'paintbrush' 'paintcode' 'paletro' 'pallotron-yubiswitch' 'panda' 'pandora' 'panic-unison' 'panoply' 'panwriter' 'paparazzi' 'paperpile' 'papers' 'paperspace' 'papyrus' 'paragon-camptune' 'paragon-extfs' 'paragon-ntfs' 'paragon-vmdk-mounter' 'parallels' 'parallels-access' 'parallels-client' 'parallels-toolbox' 'parallels-virtualization-sdk' 'paraview' 'parse' 'parsec' 'parsehub' 'parsify' 'particle-dev' 'pashua' 'password-gorilla' 'pastebot' 'patchwork' 'path-finder' 'pathephone' 'paw' 'pb' 'pcoipclient' 'pd' 'pd-extended' 'pd-l2ork' 'pdf-converter-master' 'pdf-expert' 'pdf-images' 'pdf-over' 'pdf-reader-pro' 'pdf-squeezer' 'pdf-toolbox' 'pdfelement' 'pdfelement-express' 'pdfextractor' 'pdfify' 'pdfkey-pro' 'pdfpen' 'pdfpenpro' 'pdfsam-basic' 'pdfshaver' 'peakhour' 'penc' 'pencil' 'pencil2d' 'pennywise' 'pensela' 'perforce' 'perimeter81' 'permute' 'persepolis-download-manager' 'pester' 'pext' 'pflists' 'pg-commander' 'pgadmin4' 'phantomjs' 'phd2' 'phew' 'phidget-control-panel' 'philips-hue-sync' 'phoenix' 'phoenix-slides' 'phonegap' 'photo-supreme-single-user' 'photoninja' 'photosrevive' 'photosweeper-x' 'photosync' 'photozoom-pro' 'phpstorm' 'phpwebstudy' 'physics-101' 'physicseditor' 'pibar' 'picgo' 'pichon' 'picoscope' 'pictogram' 'pictureview' 'piezo' 'pika' 'pikopixel' 'pine' 'pineapple' 'pinegrow' 'pingid' 'pingmenu' 'pingnoo' 'pingplotter' 'pinta' 'pitch' 'pitchperfect' 'pivy' 'pixel-check' 'pixel-picker' 'pixelorama' 'pixelsnap' 'pixelstick' 'pktriot' 'plain-clip' 'plan' 'plantronics-hub' 'plasticscm-cloud-edition' 'platypus' 'play' 'playback' 'playcover-community' 'playdate-mirror' 'playdate-simulator' 'playmemories-home' 'playonmac' 'plex' 'plex-htpc' 'plex-media-player' 'plex-media-server' 'plexamp' 'pliim' 'plistedit-pro' 'plotdigitizer' 'plover' 'plug' 'plugdata' 'pluginval' 'plus42-binary' 'plus42-decimal' 'pngyu' 'pock' 'pocket-casts' 'podcastmenu' 'podman-desktop' 'podolski' 'podpisuj' 'poedit' 'poi' 'pokemon-reborn' 'pokemon-showdown' 'pokemon-trading-card-game-online' 'poker-copilot' 'pokerstars' 'pokerth' 'polar-bookshelf' 'polkadot-js' 'pololu-avr-programmer-v2' 'polycom-content' 'polycom-realpresence' 'polymail' 'polymc' 'polypad' 'polypane' 'polyphone' 'pomatez' 'pomello' 'pomodone' 'pomotodo' 'pomotroid' 'pongsaver' 'pop' 'popchar' 'popclip' 'popmaker' 'popo' 'popsql' 'portfolioperformance' 'porting-kit' 'portx' 'post-haste' 'postbird' 'postbox' 'posterazor' 'postgres-unofficial' 'postgrespreferencepane' 'postico' 'postman' 'postman-agent' 'postman-cli' 'powder' 'powder-player' 'power-manager' 'powerpanel' 'powerphotos' 'powershell' 'ppduck' 'pppc-utility' 'ppsspp' 'praat' 'pragli' 'pref-setter' 'preference-manager' 'preferencecleaner' 'preform' 'prefs-editor' 'prepros' 'presentation' 'pretzel' 'prezi-classic' 'prezi-next' 'prezi-video' 'prince' 'principle' 'printopia' 'prisma-studio' 'prismatik' 'pritunl' 'privadovpn' 'private-eye' 'private-internet-access' 'privatetunnel' 'privatevpn' 'privileges' 'prizmo' 'processing' 'procexp' 'proclaim' 'product-hunt' 'profilecreator' 'profind' 'programmer-dvorak' 'progressive-downloader' 'projectlibre' 'projector' 'prolific-pl2303' 'pronterface' 'propresenter' 'prosys-opc-ua-browser' 'protege' 'protoio-overflow' 'protokol' 'protonmail-bridge' 'protonvpn' 'protopie' 'provisioning' 'provisionql' 'prowlarr' 'prowritingaid' 'proxifier' 'proximity' 'proxyman' 'prudent' 'prusaslicer' 'psi' 'psi-plus' 'psst' 'psychopy' 'ptpwebcam' 'publii' 'publish-or-perish' 'pulse' 'pulse-sms' 'puppetry' 'pure-writer' 'purei-play' 'purevpn' 'pusher' 'pushplaylabs-sidekick' 'putio-adder' 'puush' 'puzzles' 'pwnagetool' 'pycharm' 'pycharm-ce' 'pycharm-ce-with-anaconda-plugin' 'pycharm-edu' 'pycharm-with-anaconda-plugin' 'pyfa' 'pym-player' 'pynsource' 'pyzo' 'qbittorrent' 'qblocker' 'qbserve' 'qcad' 'qcma' 'qctools' 'qdesktop' 'qdslrdashboard' 'qfinder-pro' 'qflipper' 'qgis' 'qgroundcontrol' 'qingg' 'qiyimedia' 'ql-ansilove' 'qlab' 'qladdict' 'qlc-plus' 'qlcolorcode' 'qlcommonmark' 'qldds' 'qlfits' 'qlgradle' 'qlimagesize' 'qlmarkdown' 'qlmobi' 'qlnetcdf' 'qlplayground' 'qlprettypatch' 'qlrest' 'qlstephen' 'qlswift' 'qlvideo' 'qmk-toolbox' 'qmoji' 'qnap-external-raid-manager' 'qnapi' 'qobuz' 'qownnotes' 'qq' 'qqlive' 'qqmacmgr' 'qqmusic' 'qr-journal' 'qspace-pro' 'qsync-client' 'qsyncthingtray' 'qt-creator' 'qt3dstudio' 'qth' 'qtox' 'qtpass' 'qtspim' 'quail' 'quakespasm' 'quarto' 'quassel' 'quassel-client' 'quaternion' 'qudedup-extract-tool' 'querious' 'querypie' 'questrade-iq-edge' 'quickbooks' 'quickbooks-online' 'quickboot' 'quicken' 'quickgeojson' 'quickhash' 'quickhue' 'quickjson' 'quicklook-csv' 'quicklook-json' 'quicklook-pat' 'quicklook-pfm' 'quicklookapk' 'quicklookase' 'quicknfo' 'quicksilver' 'quicksync' 'quickwords' 'quik' 'quip' 'quit-all' 'quiterss' 'quitter' 'quodlibet' 'qutebrowser' 'qv2ray' 'qview' 'qwerty-fr' 'qxmledit' 'r' 'r-name' 'racket' 'radar' 'radarr' 'radiant-player' 'radicle-upstream' 'radio-silence' 'raindropio' 'rambox' 'ramme' 'rancher' 'ransomwhere' 'rapidminer-studio' 'rapidweaver' 'rapoo-mt750s' 'rar' 'raspberry-pi-imager' 'raven-reader' 'raw-photo-processor' 'rawtherapee' 'ray' 'raycast' 'raze' 'razer-synapse' 'razorsql' 'rclone-browser' 'react-native-debugger' 'react-proto' 'react-studio' 'reactotron' 'readyapi' 'realforce' 'reamp' 'reaper' 'recaf' 'receiptquicklook' 'receipts' 'recents' 'recordit' 'recovery-disk-assistant' 'rectangle' 'rectangle-pro' 'recut' 'red-eye' 'redcine-x-pro' 'redeclipse' 'redis-pro' 'redisinsight' 'redream' 'reflect' 'reflector' 'regexhibit' 'reggy' 'reikey' 'reinersct-cyberjack' 'rekordbox' 'remarkable' 'rember' 'remember-the-milk' 'remix-ide' 'remnote' 'remote-buddy' 'remote-desktop-manager' 'remote-desktop-manager-free' 'remote-wake-up' 'remotehamradio' 'remoteviewer' 'remotion' 'remotix-agent' 'removebg' 'renamer' 'renpy' 'reolink-client' 'repetier-host' 'replacicon' 'repoz' 'rescuetime' 'resilio-sync' 'resolume-arena' 'resolutionator' 'responsively' 'restream-chat' 'retro-virtual-machine' 'retroactive' 'retroarch' 'retroarch-metal' 'retrobatch' 'retroshare' 'reunion' 'reveal' 'reverso' 'revolver-office' 'rhino' 'ricochet' 'ricochet-refresh' 'ricoh-ps-printers-vol3-exp-driver' 'ricoh-ps-printers-vol4-exp-driver' 'ricoh-theta' 'rider' 'ridibooks' 'rightfont' 'rightzoom' 'ringcentral' 'ringcentral-classic' 'ringcentral-meetings' 'ringcentral-phone' 'ripcord' 'ripme' 'rnnoise' 'roam-research' 'roaringapps' 'robo-3t' 'robofont' 'roboform' 'rockboxutility' 'rocket' 'rocket-chat' 'rocket-typist' 'rocks-n-diamonds' 'rode-central' 'rodeo' 'roku-remote-tool' 'roland-quad-capture-usb-driver' 'roli-connect' 'rolisteam' 'roon' 'roonbridge' 'rosaimagewriter' 'rotato' 'rotki' 'routebuddy' 'routeconverter' 'rowanj-gitx' 'rowmote-helper' 'royal-tsx' 'rpn-scientific' 'rq' 'rrcc' 'rssowl' 'rstudio' 'rsyncosx' 'rubymine' 'rubymotion' 'runelite' 'runescape' 'runjs' 'runway' 'rustdesk' 'rwts-pdfwriter' 'ryver' 'sabaki' 'sabnzbd' 'safe-exam-browser' 'safe-multisig' 'safeincloud-password-manager' 'safenet-authentication-client' 'sage' 'saleae-logic' 'sameboy' 'samsung-dex' 'samsung-portable-ssd-t5' 'sandisk-security' 'sanesidebuttons' 'santa' 'saoimageds9' 'sapmachine-jdk' 'satellite-eyes' 'sauce-connect' 'sauerbraten' 'save-hollywood' 'scala-ide' 'scansion' 'scap-workbench' 'scapple' 'scatter' 'scenebuilder' 'schildichat' 'schism-tracker' 'scidavis' 'scidvsmac' 'scihubeva' 'scilab' 'scout' 'scrapp' 'scratch' 'screaming-frog-seo-spider' 'screencast' 'screenflick' 'screenflow' 'screenfocus' 'screens' 'screens-connect' 'scribus' 'script-debugger' 'scriptql' 'scrivener' 'scroll' 'scroll-reverser' 'scummvm' 'sdformatter' 'sdm' 'sdrdx' 'seadrive' 'seafile-client' 'seagate-dashboard' 'seaglass' 'seamonkey' 'second-life-viewer' 'secretive' 'secure-pipes' 'securesafe' 'securid' 'security-growler' 'securityspy' 'segger-embedded-studio-for-arm' 'segger-jlink' 'segger-ozone' 'sejda-pdf' 'sekey' 'selfcontrol' 'semeru-jdk-open' 'semulov' 'sencha' 'send-anywhere' 'send-to-kindle' 'sengi' 'sensei' 'sensiblesidebuttons' 'sentinel' 'senuti' 'sequel-ace' 'sequel-pro' 'sequential' 'serial' 'serial-tools' 'serviio' 'servo' 'servpane' 'session' 'session-manager-plugin' 'sessionrestore' 'setapp' 'sf-symbols' 'sfdx' 'shades' 'shadow' 'shadowsocksx' 'shadowsocksx-ng' 'shadowsocksx-ng-r' 'shapes' 'shapr3d' 'sharemouse' 'sharepod' 'shearwater' 'shearwater-cloud' 'shellhere' 'sherlock' 'shiba' 'shield' 'shift' 'shiftit' 'shifty' 'shimeike-formulatepro' 'shimo' 'shimonote' 'shiori' 'shop-different' 'shortcat' 'shortcutdetective' 'shortcutor' 'shortcuts' 'shotcut' 'shottr' 'showhiddenfiles' 'showyedge' 'shrinkit' 'shupapan' 'shureplus-motiv' 'shutter-encoder' 'shuttle' 'sia-ui' 'sidekick' 'sidenotes' 'sidequest' 'sidestep' 'sigdigger' 'sigil' 'sigmaos' 'signal' 'signet' 'silentknight' 'silicon' 'silicon-info' 'silicon-labs-vcp-driver' 'silnite' 'silo' 'sim-daltonism' 'sim-genie' 'simpholders' 'simple-comic' 'simplediagrams' 'simplefloatingclock' 'simplelink-msp432-sdk' 'simplemind' 'simplenote' 'simplesynth' 'simplistic' 'simply-fortran' 'simsim' 'singularity' 'sioyek' 'sip' 'sipgate-softphone' 'sirimote' 'sitala' 'sitesucker-pro' 'sixtyforce' 'siyuan' 'sizeup' 'sizzy' 'skala-preview' 'sketch' 'sketch-toolbox' 'sketchbook' 'sketchpacks' 'sketchup' 'skim' 'skitch' 'skychart' 'skyfonts' 'skype' 'skype-for-business' 'slack' 'sleek' 'sleipnir' 'slic3r' 'slicer' 'slidepilot' 'slik' 'slimbatterymonitor' 'slimhud' 'slingplayer' 'slippi-dolphin' 'slite' 'sloth' 'smart-converter-pro' 'smartgit' 'smartreporter-free' 'smartscope' 'smartsvn' 'smartsynchronize' 'smcfancontrol' 'smlnj' 'smoothscroll' 'smooze' 'smplayer' 'smultron' 'snagit' 'snapmaker-luban' 'snapmotion' 'snapndrag' 'snappy' 'sneek' 'snes9x' 'snip' 'snipaste' 'snipy' 'snowflake-snowsql' 'snwe' 'soapui' 'socket-io-tester' 'sococo' 'soda-player' 'soduto' 'sofa-server' 'softmaker-freeoffice' 'softorino-youtube-converter' 'softraid' 'softube-central' 'sogouinput' 'sol' 'solar2d' 'solvespace' 'sonarr' 'sonarr-menu' 'sonic-lineup' 'sonic-pi' 'sonic-robo-blast-2' 'sonic-robo-blast-2-kart' 'sonic-visualiser' 'sonic3air' 'sonixd' 'sonoair' 'sonobus' 'sonos' 'sony-ps-remote-play' 'sony-rcs300' 'sony-xperia-companion' 'soothe2' 'soqlxplorer' 'soulseek' 'soulver' 'sound-blaster-play3' 'sound-control' 'sound-siphon' 'soundboosterlite' 'soundcleod' 'soundflower' 'soundflowerbed' 'soundsource' 'soundtoys' 'sourcenote' 'sourcetrail' 'sourcetree' 'space-saver' 'spaceid' 'spacelauncher' 'spaceman' 'spaceradar' 'spamsieve' 'spark' 'spark-ar-studio' 'sparkle' 'sparkleshare' 'sparrow' 'spatial' 'spatterlight' 'spechtlite' 'spectacle' 'spectacle-editor' 'specter' 'speedcrunch' 'speedify' 'speedtest' 'spideroakone' 'spillo' 'spires' 'spitfire-audio' 'splashtop-business' 'splashtop-personal' 'splashtop-streamer' 'splayer' 'splice' 'spline' 'splitshow' 'spotifree' 'spotify' 'spotify-now-playing' 'spotmenu' 'spotspot' 'spotter' 'springtoolsuite' 'spyder' 'sql-tabs' 'sqlcl' 'sqlectron' 'sqleditor' 'sqlexplorer' 'sqlight' 'sqlitemanager' 'sqlitestudio' 'sqlpro-for-mssql' 'sqlpro-for-mysql' 'sqlpro-for-postgres' 'sqlpro-for-sqlite' 'sqlpro-studio' 'sqlworkbenchj' 'squash' 'squeak' 'squidman' 'squirrel' 'squirrelsql' 'ssdreporter-free' 'ssh-config-editor' 'ssh-tunnel-manager' 'ssokit' 'stack' 'stack-exchange-notifier' 'stack-stack' 'stand' 'standard-notes' 'starcraft' 'starleaf' 'starsector' 'start' 'startninja' 'startupizer' 'staruml' 'stationtv-link' 'stats' 'statusfy' 'stay' 'steam' 'steam-plus-plus' 'steamcmd' 'steelseries-engine' 'steelseries-exactmouse-tool' 'steelseries-gg' 'steermouse' 'stella' 'stellarium' 'stepmania' 'steveschow-gfxcardstatus' 'stoplight-studio' 'stork' 'storyboarder' 'strawberry' 'strawberry-wallpaper' 'streamlabs-obs' 'streamlink-twitch-gui' 'stremio' 'stretchly' 'stringsfile' 'stringz' 'strongvpn' 'studio-3t' 'studiolinkstandalone' 'subethaedit' 'subgit' 'subler' 'sublercli' 'sublime-merge' 'sublime-text' 'subnetcalc' 'subsurface' 'subsync' 'subtitle-master' 'subtitles' 'subtools' 'suitcase-fusion' 'sunloginclient' 'sunlogincontrol' 'sunsama' 'sunvox' 'supercollider' 'superduper' 'superhuman' 'supermjograph' 'supernotes' 'superproductivity' 'superslicer' 'supersync' 'supertuxkart' 'surfeasy-vpn' 'surfshark' 'surge' 'surge-synthesizer' 'surge-xt' 'suspicious-package' 'suunto-moveslink2' 'suuntodm5' 'svgcleaner' 'sweet-home3d' 'swift' 'swift-publisher' 'swiftbar' 'swiftcord' 'swiftdefaultappsprefpane' 'swiftformat-for-xcode' 'swiftplantumlapp' 'swiftpm-catalog' 'swiftstack-client' 'swifty' 'swiftybeaver' 'swimat' 'swinsian' 'swish' 'switch' 'switchhosts' 'switchkey' 'switchresx' 'symboliclinker' 'synalyze-it-pro' 'sync' 'sync-my-l2p' 'syncalicious' 'syncmate' 'syncovery' 'syncplay' 'syncroom' 'syncsettings' 'syncterm' 'syncthing' 'synfigstudio' 'synology-chat' 'synology-cloud-station-backup' 'synology-drive' 'synology-note-station-client' 'synology-photo-station-uploader' 'synology-surveillance-station-client' 'synologyassistant' 'syntax-highlight' 'synthesia' 'sysdig-inspect' 'sysex-librarian' 'tabby' 'table-tool' 'tableau' 'tableau-prep' 'tableau-public' 'tableau-reader' 'tablecruncher' 'tableflip' 'tableplus' 'tabtopus' 'tabula' 'tad' 'tag' 'tagger' 'tagspaces' 'tailscale' 'tales-of-majeyal' 'talon' 'tandem' 'tap-forms' 'taskade' 'taskexplorer' 'taskpaper' 'taskwarrior-pomodoro' 'tastyworks' 'tau' 'td-agent' 'tdr-kotelnikov' 'tdr-nova' 'tdr-vos-slickeq' 'teacode' 'teambition' 'teamookla/speedtest/speedtest' 'teamspeak-client' 'teamviewer' 'teamviewer-host' 'teamviewer-quickjoin' 'teamviewer-quicksupport' 'teamviewermeeting' 'techsmith-capture' 'teensy' 'teeworlds' 'telegram' 'telegram-desktop' 'tempo' 'temurin' 'tenable-nessus-agent' 'tencent-docs' 'tencent-lemon' 'tencent-meeting' 'tenor' 'tentacle-sync-studio' 'termhere' 'terminology' 'termius' 'tetrio' 'tev' 'tex-live-utility' 'texifier' 'texmacs' 'texmaker' 'texshop' 'texstudio' 'textadept' 'textbar' 'textbuddy' 'textexpander' 'textmate' 'texts' 'textsniper' 'textual' 'texturepacker' 'texworks' 'tg-pro' 'the-archive' 'the-archive-browser' 'the-battle-for-wesnoth' 'the-cheat' 'the-clock' 'the-tagger' 'the-unarchiver' 'the-unofficial-homestuck-collection' 'the-watcher' 'thebrain' 'thedesk' 'themeengine' 'there' 'therm' 'thetimemachinemechanic' 'thingsmacsandboxhelper' 'thinkorswim' 'thinlinc-client' 'thonny' 'thonny-xxl' 'thor' 'thorium' 'threads' 'threema' 'threema-work' 'thumbsup' 'thunder' 'thunderbird' 'thyme' 'ti-connect-ce' 'ti-smartview-ce-for-the-ti-84-plus-family' 'tibco-jaspersoft-studio' 'tic80' 'tickeys' 'ticktick' 'tidal' 'tiddly' 'tidelift' 'tidgi' 'tiger-trade' 'tigerjython' 'tigervnc-viewer' 'tikz-editor' 'tikzit' 'tiled' 'tiles' 'timche-gmail-desktop' 'time-lapse-assembler' 'time-out' 'time-sink' 'time-to-leave' 'time-tracker' 'timecamp' 'timelane' 'timely' 'timemachineeditor' 'timemator' 'timer' 'timestamp' 'timeular' 'timing' 'timings' 'tinderbox' 'tinkerwell' 'tint' 'tiny-player' 'tinymediamanager' 'tinypng4mac' 'tip' 'tipp10' 'tiptoi-manager' 'tl-legacy' 'tla-plus-toolbox' 'tlv' 'tmpdisk' 'tn3270-x' 'tnefs-enough' 'today-scripts' 'todesk' 'todoist' 'todometer' 'todotxt' 'todour' 'tofu' 'toggl-track' 'toinane-colorpicker' 'toland-qlmarkdown' 'tomatobar' 'tomighty' 'tomtom-mydrive-connect' 'tomtom-sports-connect' 'toneprint' 'tongbu' 'toolreleases' 'toontown-rewritten' 'topcat' 'topnotch' 'toptracker' 'tor-browser' 'torguard' 'torrent-file-editor' 'tortoisehg' 'toshiba-color-mfp' 'touch-bar-simulator' 'touch-portal' 'touchbarserver' 'touchdesigner' 'touchosc' 'touchosc-bridge' 'touchosc-editor' 'touchswitcher' 'tower' 'townwifi' 'tqsl' 'trackerzapper' 'trader-workstation' 'tradingview' 'trailer' 'trainerroad' 'transcribe' 'transfer' 'transmission' 'transmission-remote-gui' 'transmit' 'transnomino' 'transocks' 'trash-it' 'treesheets' 'tresorit' 'trex' 'trezor-bridge' 'trezor-suite' 'tribler' 'trilium-notes' 'trim-enabler' 'trinity' 'triplecheese' 'tripmode' 'trivial' 'trojanx' 'trolcommander' 'tropy' 'trunk-io' 'ttscoff-mmd-quicklook' 'tuck' 'tunein' 'tuneinstructor' 'tuneskit-m4v-converter' 'tunnelbear' 'tunnelblick' 'tuple' 'turbo-boost-switcher' 'turbovnc-viewer' 'turtl' 'tusk' 'tutanota' 'tuxera-ntfs' 'tuxguitar' 'tv-browser' 'tvrenamer' 'tweet-tray' 'tweetbot' 'tweeten' 'twilioquest' 'twine' 'twist' 'twitch-studio' 'twitterrific' 'twobird' 'twonkyserver' 'tyke' 'tyme' 'typcn-bilibili' 'typeface' 'typeit4me' 'typinator' 'typora' 'tysimulator' 'ubar' 'ubersicht' 'ubiquiti-unifi-controller' 'ubiquiti-unifi-controller-lts' 'ubports-installer' 'udeler' 'udig' 'ueli' 'uhk-agent' 'ui' 'ui-browser' 'ujam' 'ukelele' 'ukrainian-typographic-keyboard' 'ukrainian-unicode-layout' 'ultdata' 'ultimaker-cura' 'ultimate' 'ultimate-control' 'ultracopier' 'ultrastardeluxe' 'unclack' 'unclutter' 'uncolored' 'uncrustifyx' 'understand' 'unetbootin' 'unexpectedly' 'unicodechecker' 'unicopedia-plus' 'unified-remote' 'uniflash' 'uninstallpkg' 'unipro-ugene' 'unison' 'unite' 'unity' 'unity-android-support-for-editor' 'unity-hub' 'unity-ios-support-for-editor' 'unity-webgl-support-for-editor' 'unity-windows-support-for-editor' 'universal-android-debloater' 'universal-battle' 'universal-gcode-platform' 'universal-media-server' 'unlox' 'unnaturalscrollwheels' 'unpkg' 'unshaky' 'upm' 'upterm' 'usage' 'usb-overdrive' 'usbimager' 'usenapp' 'usr-sse2-rdm' 'utc-menu-clock' 'utm' 'utools' 'utterly' 'uu-booster' 'uvtools' 'uxprotect' 'v2ray-unofficial' 'v2rayu' 'v2rayx' 'vagrant' 'vagrant-manager' 'vagrant-vmware-utility' 'valentina-studio' 'valkyrie' 'valley' 'vallum' 'vamiga' 'vanilla' 'vapor' 'vassal' 'vb-cable' 'vcv-rack' 'ved' 'veepn' 'vellum' 'veracrypt' 'versions' 'vertcoin-core' 'vesta' 'veusz' 'via' 'vial' 'viber' 'vidcutter' 'videoduke' 'videofusion' 'videostream' 'vidl' 'vieb' 'vienna' 'vimediamanager' 'vimr' 'vine-server' 'vip-access' 'vipriser' 'virtual-ii' 'virtualbox' 'virtualbox-extension-pack' 'virtualbuddy' 'virtualc64' 'virtualgl' 'virtualhere' 'virtualhereserver' 'virtualhostx' 'viscosity' 'visit' 'visual' 'visual-paradigm' 'visual-paradigm-ce' 'visual-studio' 'visual-studio-code' 'visualboyadvance-m' 'visualvm' 'vitals' 'vitalsigns' 'vitalsource-bookshelf' 'vitamin-r' 'vivaldi' 'vivid' 'vk-messenger' 'vlc' 'vlc-setup' 'vlc-webplugin' 'vlcstreamer' 'vmpk' 'vmware-fusion' 'vmware-horizon-client' 'vnc-server' 'vnc-viewer' 'vnote' 'vofa-plus' 'voicemac' 'voikkospellservice' 'volanta' 'volley' 'volt' 'voodoopad' 'voov-meeting' 'vorta' 'vox' 'vox-preferences-pane' 'voxql' 'vpn-enabler' 'vpn-tracker-365' 'vrew' 'vscodium' 'vsd-viewer' 'vsdx-annotator' 'vsee' 'vu' 'vuescan' 'vuze' 'vv' 'vym' 'vyprvpn' 'vysor' 'wacom-inkspace' 'wacom-tablet' 'wail' 'wallpaper-wizard' 'waltr' 'waltr-heic-converter' 'waltr-pro' 'wannianli' 'warp' 'warsow' 'warzone-2100' 'wasabi-wallet' 'waterfox' 'waterfox-classic' 'wavebox' 'waves-central' 'wavesurfer' 'wch-ch34x-usb-serial-driver' 'wd-drive-utilities' 'wd-firmware-updater' 'wd-security' 'weakauras-companion' 'webarchiveextractor' 'webcamoid' 'webcatalog' 'webex' 'webex-meetings' 'webots' 'webpack-dashboard' 'webplotdigitizer' 'webpquicklook' 'webrecorder-player' 'website-watchman' 'webstorm' 'webtorrent' 'webull' 'webviewscreensaver' 'wechat' 'wechatwebdevtools' 'wechatwork' 'weektodo' 'weiyun' 'weka' 'welly' 'wercker' 'wewechat' 'wey' 'wezterm' 'whale' 'whalebird' 'whatroute' 'whatsapp' 'whatsize' 'whatsyoursign' 'whichspace' 'whist-browser' 'whoozle-android-file-transfer' 'widelands' 'wifi-explorer' 'wifi-explorer-pro' 'wifispoof' 'winclone' 'window-switch' 'windows95' 'windscribe' 'windterm' 'wine-stable' 'wing-personal' 'wings3d' 'wintertime' 'winx-hd-video-converter' 'winzip' 'wire' 'wirecast' 'wireframe-sketcher' 'wireshark' 'wireshark-chmodbpf' 'witch' 'wiznote' 'wjoy' 'wkhtmltopdf' 'wolai' 'wombat' 'wonderfultools-screensaver' 'wondershare-edrawmax' 'wondershare-filmora' 'wondershare-uniconverter' 'wordpresscom' 'wordservice' 'workbench' 'workflowy' 'workman' 'workplace-chat' 'workspaces' 'wormhole' 'wow' 'wowmatrix' 'wowup' 'wpsoffice' 'wpsoffice-cn' 'wrike' 'write' 'writefull' 'writemapper' 'writer' 'wsjtx' 'wwdc' 'wxcrafter' 'wxmacmolplt' 'x-mirage' 'x-moto' 'x-swiftformat' 'x2goclient' 'xamarin-android' 'xamarin-ios' 'xamarin-mac' 'xamarin-profiler' 'xamarin-studio' 'xamarin-workbooks' 'xampp' 'xampp-vm' 'xaos' 'xattred' 'xbar' 'xbench' 'xbox360-controller-driver-unofficial' 'xca' 'xcodeclangformat' 'xcodes' 'xctu' 'xdm' 'xee' 'xemu' 'xerox-print-driver' 'xiami' 'ximalaya' 'xit' 'xiv-on-mac' 'xld' 'xlplayer' 'xmind' 'xmplify' 'xnconvert' 'xnviewmp' 'xonotic' 'xournal-plus-plus' 'xppen-pentablet' 'xpra' 'xprocheck' 'xquartz' 'xrg' 'xscope' 'xscreensaver' 'xstation5' 'xtorrent' 'yacreader' 'yakyak' 'yam-display' 'yamaha-usb-midi-driver' 'yandex' 'yandex-cloud-cli' 'yandex-disk' 'yandex-music-unofficial' 'yate' 'yattee' 'yed' 'yemuzip' 'yep' 'yesplaymusic' 'yggdrasil' 'yinxiangbiji' 'yippy' 'yo' 'yoda' 'yojimbo' 'youdaodict' 'youdaonote' 'youku' 'youll-never-take-me-alive' 'yousician' 'youtrack-workflow' 'youtube-downloader' 'youtube-to-mp3' 'yt-music' 'ytmdesktop-youtube-music' 'yu-writer' 'yubico-authenticator' 'yubico-yubikey-manager' 'yubico-yubikey-personalization-gui' 'yubico-yubikey-piv-manager' 'yubihsm2-sdk' 'yuna' 'yuque' 'zalo' 'zandronum' 'zappy' 'zazu' 'zdoom' 'zebra2' 'zecwallet-lite' 'zeebe-modeler' 'zeitgeist' 'zenbeats' 'zenmap' 'zenmate-vpn' 'zeplin' 'zerobranestudio' 'zeronet' 'zerotier-one' 'zesarux' 'zettelkasten' 'zettlr' 'zoc' 'zoho-docs' 'zoho-mail' 'zoho-workdrive' 'zoom' 'zoom-for-it-admins' 'zoomus' 'zotero' 'zprint' 'zsa-wally' 'zterm' 'zulip' 'zulu' 'zulufx' 'zwift' 'zxpinstaller' 'zy-player' -EO:list -)}"} ) diff --git a/zsh-macos/.config/zsh-macos/.zcompcache/brew_formulae b/zsh-macos/.config/zsh-macos/.zcompcache/brew_formulae deleted file mode 100644 index e698594..0000000 --- a/zsh-macos/.config/zsh-macos/.zcompcache/brew_formulae +++ /dev/null @@ -1,4 +0,0 @@ -list=( ${(Q)"${(z)$(<<\EO:list -'=3.7.0' 'a2ps' 'a52dec' 'aacgain' 'aalib' 'aamath' 'aarch64-elf-binutils' 'aarch64-elf-gcc' 'aardvark_shell_utils' 'abcde' 'abcl' 'abcm2ps' 'abcmidi' 'abduco' 'abi-compliance-checker' 'abi-dumper' 'abnfgen' 'abook' 'abricate' 'abseil' 'abuse' 'abyss' 'ace' 'aces_container' 'ack' 'acl' 'acl2' 'acme' 'acmetool' 'acpica' 'act' 'actionlint' 'activemq' 'activemq-cpp' 'adamstark-audiofile' 'adios2' 'admesh' 'adns' 'adplug' 'adr-tools' 'advancecomp' 'advancemame' 'advancescan' 'adwaita-icon-theme' 'aerc' 'aescrypt' 'aescrypt-packetizer' 'aespipe' 'afflib' 'afio' 'afl-fuzz' 'afsctool' 'aften' 'afuse' 'agda' 'age' 'age-plugin-yubikey' 'agedu' 'agg' 'aggregate' 'aha' 'ahcpd' 'ahoy' 'aida-header' 'aide' 'aircrack-ng' 'airshare' 'airspy' 'airspyhf' 'akamai' 'akka' 'alac' 'alda' 'aldo' 'alembic' 'alerter' 'alexjs' 'algernon' 'algol68g' 'aliddns' 'align' 'aliyun-cli' 'all-repos' 'allegro' 'allure' 'allureofthestars' 'alluxio' 'alot' 'alp' 'alpine' 'alpscore' 'alsa-lib' 'alure' 'amazon-ecs-cli' 'amdatu-bootstrap' 'amfora' 'ammonite-repl' 'amp' 'ampl-mp' 'amqp-cpp' 'amtk' 'amtterm' 'analog' 'angband' 'angle-grinder' 'angular-cli' 'anime-downloader' 'anjuta' 'ansible' 'ansible-cmdb' 'ansible-language-server' 'ansible-lint' 'ansible@2.8' 'ansible@2.9' 'ansifilter' 'ansilove' 'ansiweather' 'ant' 'ant-contrib' 'ant@1.9' 'antibody' 'antidote' 'antigen' 'antiword' 'antlr' 'antlr4-cpp-runtime' 'antlr@2' 'anttweakbar' 'anycable-go' 'anyenv' 'aoeui' 'aom' 'apache-archiva' 'apache-arrow' 'apache-arrow-glib' 'apache-brooklyn-cli' 'apache-ctakes' 'apache-drill' 'apache-flink' 'apache-forrest' 'apache-geode' 'apache-opennlp' 'apache-pulsar' 'apache-spark' 'apachetop' 'apcupsd' 'apgdiff' 'apib' 'apibuilder-cli' 'apidoc' 'apktool' 'apm-bash-completion' 'apng2gif' 'apngasm' 'apollo' 'apollo-cli' 'apophenia' 'app-engine-java' 'app-engine-python' 'apparix' 'appium' 'appscale-tools' 'appstream-glib' 'apr' 'apr-util' 'apt' 'apt-dater' 'aptly' 'aqbanking' 'arabica' 'arangodb' 'aravis' 'arb' 'arcade-learning-environment' 'archey' 'archey4' 'archi-steam-farm' 'archivemount' 'archiver' 'arduino-cli' 'argo' 'argocd' 'argocd-autopilot' 'argocd-vault-plugin' 'argon2' 'argp-standalone' 'argtable' 'argus' 'argus-clients' 'argyll-cms' 'aria2' 'arkade' 'arm-linux-gnueabihf-binutils' 'armadillo' 'armor' 'arp-scan' 'arp-sk' 'arpack' 'arping' 'arpoison' 'arrayfire' 'arss' 'artifactory' 'artillery' 'arturo' 'arx-libertatis' 'arxiv_latex_cleaner' 'as-tree' 'ascii' 'ascii2binary' 'asciidoc' 'asciidoctor' 'asciidoctorj' 'asciinema' 'asciiquarium' 'asciitex' 'asdf' 'asimov' 'asio' 'ask-cli' 'asn1c' 'aspcud' 'aspectj' 'aspell' 'asroute' 'assh' 'assimp' 'astro' 'astrometry-net' 'astyle' 'asuka' 'asymptote' 'asyncapi' 'asyncplusplus' 'at-spi2-atk' 'at-spi2-core' 'atari800' 'atasm' 'atdtool' 'aterm' 'atf' 'athenacli' 'atk' 'atkmm' 'atkmm@2.28' 'atlantis' 'atlas' 'atmos' 'atomicparsley' 'atomist-cli' 'atool' 'atop' 'ats2-postiats' 'attr' 'atuin' 'aubio' 'audacious' 'audiofile' 'auditbeat' 'augeas' 'augustus' 'aurora' 'austin' 'authoscope' 'autobench' 'autocannon' 'autocode' 'autoconf' 'autoconf-archive' 'autoconf@2.13' 'autoconf@2.69' 'autodiff' 'autoenv' 'autogen' 'autojump' 'automake' 'automysqlbackup' 'autopep8' 'autopsy' 'autorest' 'autorestic' 'autossh' 'avahi' 'avanor' 'avce00' 'avfs' 'aview' 'avimetaedit' 'avra' 'avrdude' 'avro-c' 'avro-cpp' 'avro-tools' 'awf' 'awk' 'aws-apigateway-importer' 'aws-auth' 'aws-cdk' 'aws-cfn-tools' 'aws-console' 'aws-elasticbeanstalk' 'aws-es-proxy' 'aws-google-auth' 'aws-iam-authenticator' 'aws-keychain' 'aws-nuke' 'aws-okta' 'aws-rotate-key' 'aws-sdk-cpp' 'aws-shell' 'aws-sso-util' 'aws-vault' 'aws2-wrap' 'awscli' 'awscli@1' 'awscurl' 'awslogs' 'awsume' 'awsweeper' 'axel' 'azcopy' 'aztfy' 'azure-cli' 'azure-storage-cpp' 'b2-tools' 'b2sum' 'b3sum' 'b43-fwcutter' 'babel' 'babeld' 'babl' 'backupninja' 'bacula-fd' 'bagit' 'baidupcs-go' 'balena-cli' 'ballerburg' 'ballerina' 'bam' 'bamtools' 'bandcamp-dl' 'bandit' 'bandwhich' 'baobab' 'bar' 'bareos-client' 'baresip' 'bartib' 'bartycrouch' 'bas55' 'base64' 'base91' 'basex' 'bash' 'bash-completion' 'bash-completion@2' 'bash-git-prompt' 'bash-language-server' 'bash-preexec' 'bash-snippets' 'bashdb' 'bashish' 'bash_unit' 'basis_universal' 'bastet' 'bat' 'bat-extras' 'batik' 'bats' 'bats-core' 'bazaar' 'bazarr' 'bazel' 'bazelisk' 'bbe' 'bbftp-client' 'bbtools' 'bc' 'bcal' 'bcftools' 'bchunk' 'bcoin' 'bcpp' 'bcrypt' 'bde' 'bdftopcf' 'bdw-gc' 'beagle' 'beancount' 'beansdb' 'beanstalkd' 'bear' 'beast' 'bedops' 'bedtools' 'bee' 'beecrypt' 'befunge93' 'bench' 'benthos' 'bento4' 'berglas' 'berkeley-db' 'berkeley-db@4' 'berkeley-db@5' 'bettercap' 'betty' 'bfg' 'bfgminer' 'bgpdump' 'bgpq3' 'bgpq4' 'bgpstream' 'bgrep' 'bib-tool' 'bibclean' 'biber' 'bibtex2html' 'bibtexconv' 'bibutils' 'bic' 'bigloo' 'binaryen' 'bind' 'bindfs' 'bingrep' 'binkd' 'binutils' 'binwalk' 'bioawk' 'bioperl' 'biosig' 'bison' 'bison@2.7' 'bit' 'bit-git' 'bitchx' 'bitcoin' 'bitlbee' 'bitrise' 'bittwist' 'bitwarden-cli' 'bitwise' 'bk' 'bkt' 'black' 'blackbox' 'blahtexml' 'blast' 'blastem' 'blaze' 'blazeblogger' 'blazegraph' 'blink1' 'blis' 'blitz' 'blitzwave' 'bloaty' 'blockhash' 'blogc' 'bltool' 'bluepill' 'bluetoothconnector' 'blueutil' 'bmake' 'bmon' 'bnd' 'bnfc' 'bochs' 'bogofilter' 'bombadillo' 'bond' 'bonnie++' 'bookloupe' 'boom-completion' 'boost' 'boost-bcp' 'boost-build' 'boost-mpi' 'boost-python3' 'boost@1.76' 'boot-clj' 'bootloadhid' 'bore-cli' 'borgbackup' 'borgmatic' 'boringtun' 'bork' 'bosh-cli' 'botan' 'bottom' 'bower' 'bowtie2' 'box2d' 'boxes' 'bpm-tools' 'bpython' 'bpytop' 'brag' 'braid' 'brainfuck' 'breezy' 'brev' 'brew-cask-completion' 'brew-gem' 'brew-php-switcher' 'brew-pip' 'brigade-cli' 'brightness' 'briss' 'brogue' 'brook' 'broot' 'brotli' 'browser' 'bsdconv' 'bsdiff' 'bsdmake' 'bsdsfv' 'bsponmpi' 'btfs' 'btop' 'btparse' 'btpd' 'bubblewrap' 'buildapp' 'buildifier' 'buildkit' 'buildozer' 'buildpulse-test-reporter' 'buku' 'bulk_extractor' 'bullet' 'bumpversion' 'bundler-completion' 'bundletool' 'bup' 'bupstash' 'burl' 'burp' 'burst' 'butane' 'bvi' 'bvm' 'bwa' 'bwctl' 'bwfmetaedit' 'bwm-ng' 'byacc' 'byobu' 'byteman' 'bzip2' 'bzr-builder' 'bzr-colo' 'bzr-externals' 'bzr-extmerge' 'bzr-rewrite' 'bzr-upload' 'bzr-xmloutput' 'bzrtools' 'bzt' 'c' 'c-ares' 'c-blosc' 'c-kermit' 'c10t' 'c14-cli' 'c2048' 'c2rust' 'c7n' 'ca-certificates' 'cabal-install' 'cabextract' 'cabocha' 'cacli' 'cadaver' 'caddy' 'cadence' 'cadence-workflow' 'cadical' 'cadubi' 'caf' 'cafeobj' 'caffe' 'caire' 'cairo' 'cairomm' 'cairomm@1.14' 'cake' 'calabash' 'calc' 'calceph' 'calcurse' 'calicoctl' 'camellia' 'camlp-streams' 'camlp5' 'canfigger' 'cap-completion' 'capnp' 'capstone' 'cargo-audit' 'cargo-bloat' 'cargo-bundle' 'cargo-c' 'cargo-crev' 'cargo-depgraph' 'cargo-edit' 'cargo-instruments' 'cargo-llvm-lines' 'cargo-nextest' 'cargo-outdated' 'cargo-udeps' 'cargo-watch' 'cargo-zigbuild' 'carla' 'carrot2' 'carthage' 'carton' 'cartridge-cli' 'cash-cli' 'cask' 'cassandra' 'cassandra-cpp-driver' 'cassandra-reaper' 'cassandra@2.1' 'cassandra@2.2' 'cassandra@3' 'cassowary' 'castget' 'castxml' 'cataclysm' 'catch2' 'catimg' 'cattle' 'cava' 'cayley' 'cbc' 'cbmbasic' 'cbmc' 'cc65' 'ccache' 'ccal' 'ccat' 'ccd2iso' 'ccextractor' 'ccfits' 'ccheck' 'ccls' 'ccm' 'cconv' 'ccrypt' 'cctz' 'ccze' 'cd-discid' 'cdargs' 'cdb' 'cddlib' 'cdecl' 'cdk' 'cdk8s' 'cdktf' 'cdlabelgen' 'cdo' 'cdogs-sdl' 'cdparanoia' 'cdpr' 'cdrdao' 'cdrtools' 'cedille' 'celero' 'censys' 'center-im' 'cereal' 'ceres-solver' 'cern-ndiff' 'certbot' 'certigo' 'certstrap' 'ceylon' 'cf' 'cf-tool' 'cf4ocl' 'cfengine' 'cfitsio' 'cflow' 'cfn-flip' 'cfn-format' 'cfn-lint' 'cfonts' 'cfr-decompiler' 'cfssl' 'cfv' 'cgal' 'cgdb' 'cgif' 'cgit' 'cgl' 'cglm' 'cgns' 'cgoban' 'cgrep' 'cgvg' 'chadwick' 'chafa' 'chain-bench' 'chaiscript' 'chakra' 'chalk-cli' 'chamber' 'chapel' 'charge' 'charm' 'charm-tools' 'charmcraft' 'chars' 'chart-testing' 'chcase' 'cheapglk' 'cheat' 'check' 'checkbashisms' 'checkmake' 'checkov' 'checkstyle' 'check_postgres' 'cheops' 'cherrytree' 'chezmoi' 'chezscheme' 'chgems' 'chibi-scheme' 'chicken' 'chinadns-c' 'chipmunk' 'chisel' 'chkrootkit' 'chmlib' 'chocolate-doom' 'choose' 'choose-gui' 'choose-rust' 'chordii' 'chroma' 'chromaprint' 'chrome-cli' 'chrome-export' 'chronograf' 'chrony' 'chrpath' 'chruby' 'chruby-fish' 'chuck' 'cidr2range' 'cidrmerge' 'cifer' 'cig' 'cilium-cli' 'cimg' 'ciphey' 'circleci' 'circumflex' 'citus' 'cityhash' 'civl' 'cjdns' 'cjson' 'ckan' 'cksfv' 'clac' 'clair' 'clamav' 'clamz' 'clang-format' 'clang-format@11' 'clang-format@8' 'clarinet' 'clash' 'classads' 'claws-mail' 'clazy' 'clblas' 'clblast' 'clean' 'clearlooks-phenix' 'clens' 'clfft' 'clhep' 'cli11' 'cli53' 'clib' 'click' 'clickhouse-cpp' 'clickhouse-odbc' 'cliclick' 'clinfo' 'cling' 'clingo' 'clip' 'clipper' 'clipsafe' 'clisp' 'cln' 'cloc' 'clockywock' 'clog' 'clojure' 'clojure-lsp' 'clojurescript' 'cloog' 'closure-compiler' 'closure-stylesheets' 'cloud-nuke' 'cloud-watch' 'cloudflare-quiche' 'cloudflare-wrangler' 'cloudflared' 'cloudformation-cli' 'cloudformation-guard' 'cloudiscovery' 'clozure-cl' 'clp' 'clpbar' 'clucene' 'clusterctl' 'clutter' 'clutter-gst' 'clutter-gtk' 'clzip' 'cmake' 'cmake-docs' 'cmark' 'cmark-gfm' 'cmatrix' 'cmdshelf' 'cmigemo' 'cminpack' 'cmix' 'cmocka' 'cmockery' 'cmockery2' 'cmt' 'cmu-pocketsphinx' 'cmu-sphinxbase' 'cmuclmtk' 'cmus' 'cmusfm' 'cnats' 'cntlm' 'cobalt' 'coccinelle' 'cocoapods' 'coconut' 'cocot' 'coda-cli' 'code-minimap' 'code-server' 'codec2' 'codemod' 'codequery' 'codespell' 'coffeescript' 'cogl' 'coin3d' 'cointop' 'coinutils' 'colfer' 'colima' 'collada-dom' 'collectd' 'collector-sidecar' 'color-code' 'colordiff' 'colormake' 'colortail' 'comby' 'commandbox' 'commitizen' 'commitlint' 'compface' 'compiledb' 'composer' 'conan' 'concurrencykit' 'condure' 'confd' 'configen' 'conftest' 'confuse' 'conjure-up' 'conmon' 'connect' 'conserver' 'console_bridge' 'consul' 'consul-backinator' 'consul-template' 'container-diff' 'container-structure-test' 'contentful-cli' 'convertlit' 'convmv' 'convox' 'cookiecutter' 'copier' 'copilot' 'coq' 'corectl' 'coredns' 'coreos-ct' 'corepack' 'coreutils' 'corkscrew' 'corral' 'corsixth' 'cortex' 'cosi' 'cosign' 'coturn' 'couchdb' 'couchdb-lucene' 'couchpotatoserver' 'counterfeiter' 'coursier' 'cowsay' 'cp2k' 'cpanminus' 'cpansearch' 'cpi' 'cpio' 'cpl' 'cpm' 'cpmtools' 'cpp-gsl' 'cpp-httplib' 'cppad' 'cppcheck' 'cppcms' 'cppi' 'cpplint' 'cppman' 'cppp' 'cpprestsdk' 'cpptest' 'cpptoml' 'cppunit' 'cpputest' 'cppzmq' 'cpr' 'cproto' 'cpufetch' 'cpulimit' 'cpu_features' 'cql' 'cql-proxy' 'cqlkit' 'cquery' 'cracklib' 'crackpkcs' 'crane' 'crash' 'crc32c' 'crcany' 'create-api' 'create-dmg' 'credstash' 'creduce' 'crf++' 'cri-tools' 'crispy-doom' 'criterion' 'crm114' 'croaring' 'croc' 'cromwell' 'cronolog' 'crosstool-ng' 'crowdin' 'cruft' 'crun' 'crunch' 'crush-tools' 'cryfs' 'cryptol' 'cryptominisat' 'crystal' 'crystal-icr' 'crytic-compile' 'cscope' 'csfml' 'csmith' 'csound' 'cspice' 'css-crush' 'cssembed' 'csshx' 'cstore_fdw' 'csview' 'csvkit' 'csvprintf' 'csvq' 'csvtk' 'csvtomd' 'ctags' 'ctail' 'ctemplate' 'ctl' 'ctlptl' 'ctop' 'cuba' 'cubeb' 'cubejs-cli' 'cubelib' 'cucumber-cpp' 'cucumber-ruby' 'cue' 'cuetools' 'cunit' 'cups' 'curaengine' 'curl' 'curlftpfs' 'curlie' 'curlpp' 'curseofwar' 'cutter' 'cvs' 'cvs-fast-export' 'cvsps' 'cvsutils' 'cvsync' 'cwb3' 'cweb' 'cwlogs' 'cxgo' 'cxxopts' 'cxxtest' 'cypher-shell' 'cyral-gimme-db-token' 'cyrus-sasl' 'cython' 'czg' 'czmq' 'daemon' 'daemonize' 'daemonlogger' 'daemontools' 'dafny' 'dagger' 'dante' 'daq' 'dar' 'darcs' 'darglint' 'dark-mode' 'darkhttpd' 'darkice' 'darksky-weather' 'darkstat' 'dart-sdk' 'dartsim' 'dasel' 'dash' 'dashing' 'dasht' 'dasm' 'datafusion' 'datalad' 'datamash' 'datasette' 'datatype99' 'datetime-fortran' 'dateutils' 'datree' 'dav1d' 'davix' 'davmail' 'db-vcs' 'dbacl' 'dbdeployer' 'dbhash' 'dbmate' 'dbml-cli' 'dbus' 'dbus-glib' 'dbxml' 'dc3dd' 'dcadec' 'dcd' 'dcfldd' 'dcled' 'dcm2niix' 'dcmtk' 'dcos-cli' 'dcraw' 'ddate' 'ddcctl' 'ddclient' 'ddcutil' 'ddd' 'ddgr' 'ddh' 'ddrescue' 'deark' 'debianutils' 'defaultbrowser' 'deheader' 'dehydrated' 'deja-gnu' 'delta' 'delve' 'demumble' 'deno' 'denominator' 'density' 'dep' 'dependency-check' 'deployer' 'depqbf' 'derby' 'desk' 'desktop-file-utils' 'detach' 'detect-secrets' 'detekt' 'detox' 'devd' 'devdash' 'device-mapper' 'devil' 'devspace' 'devtodo' 'dex' 'dex2jar' 'dfc' 'dfix' 'dfmt' 'dfu-programmer' 'dfu-util' 'dgen' 'dgraph' 'dhall' 'dhall-bash' 'dhall-json' 'dhall-lsp-server' 'dhall-yaml' 'dhcpdump' 'dhcping' 'dhex' 'di' 'dialog' 'diamond' 'diceware' 'dict' 'diction' 'dieharder' 'diesel' 'diff-pdf' 'diff-so-fancy' 'diffoscope' 'diffr' 'diffstat' 'difftastic' 'diffutils' 'digdag' 'digitemp' 'dirac' 'direnv' 'direvent' 'dirt' 'discount' 'diskonaut' 'disktype' 'diskus' 'dislocker' 'distcc' 'distribution' 'distrobox' 'dita-ot' 'ditaa' 'dive' 'django-completion' 'djbdns' 'djhtml' 'djl-serving' 'djview4' 'djvu2pdf' 'djvulibre' 'dlib' 'dmagnetic' 'dmalloc' 'dmd' 'dmenu' 'dmg2img' 'dmtx-utils' 'dns2tcp' 'dnscontrol' 'dnscrypt-proxy' 'dnscrypt-wrapper' 'dnsdist' 'dnsmap' 'dnsmasq' 'dnsperf' 'dnsprobe' 'dnstop' 'dnstracer' 'dnstwist' 'dnsviz' 'dnsx' 'doc8' 'docbook' 'docbook-xsl' 'docbook2x' 'docfx' 'docker' 'docker-buildx' 'docker-clean' 'docker-completion' 'docker-compose' 'docker-compose-completion' 'docker-credential-helper' 'docker-credential-helper-ecr' 'docker-gen' 'docker-ls' 'docker-machine' 'docker-machine-completion' 'docker-machine-driver-hyperkit' 'docker-machine-driver-vmware' 'docker-machine-driver-vultr' 'docker-machine-driver-xhyve' 'docker-machine-nfs' 'docker-machine-parallels' 'docker-slim' 'docker-squash' 'docker-swarm' 'docker2aci' 'dockerize' 'dockutil' 'dockviz' 'dockward' 'doctest' 'doctl' 'docui' 'docutils' 'docuum' 'docx2txt' 'dog' 'doggo' 'doitlive' 'dolt' 'dooit' 'dopewars' 'dory' 'dos2unix' 'dosbox' 'dosbox-staging' 'dosbox-x' 'dosfstools' 'dotbot' 'dotdrop' 'dotenv-linter' 'dotnet' 'double-conversion' 'doublecpp' 'doubledown' 'dovecot' 'doxygen' 'doxymacs' 'dpkg' 'dpp' 'dprint' 'dps8m' 'draco' 'drafter' 'drake' 'driftctl' 'drill' 'dromeaudio' 'drone-cli' 'dropbear' 'dropbox-uploader' 'druid' 'dscanner' 'dsda-doom' 'dsh' 'dsocks' 'dspdfviewer' 'dsq' 'dssim' 'dstask' 'dsvpn' 'dtach' 'dtc' 'dterm' 'dtm' 'dtrx' 'dua-cli' 'dub' 'duc' 'duck' 'duckdb' 'duckscript' 'duf' 'duff' 'duktape' 'dumb' 'dump1090-mutability' 'dumpling' 'dunamai' 'dune' 'dungeon' 'duo_unix' 'duplicity' 'duply' 'dupseek' 'dura' 'dust' 'duti' 'dvanalyzer' 'dvc' 'dvd+rw-tools' 'dvd-vr' 'dvdauthor' 'dvdbackup' 'dvdrtools' 'dvm' 'dvorak7min' 'dwarf' 'dwarfutils' 'dwatch' 'dwdiff' 'dwm' 'dxflib' 'dxpy' 'dyld-headers' 'dylibbundler' 'dynaconf' 'dynamips' 'dynare' 'dynein' 'dynet' 'dynomite' 'e2fsprogs' 'e2tools' 'earthly' 'easeprobe' 'easy-git' 'easy-rsa' 'easy-tag' 'easyengine' 'easyrpg-player' 'ebook-tools' 'ec2-ami-tools' 'ec2-api-tools' 'ecasound' 'eccodes' 'ecflow-ui' 'echidna' 'echoprint-codegen' 'ecl' 'ecm' 'ed' 'editorconfig' 'editorconfig-checker' 'efl' 'efm-langserver' 'eg' 'eg-examples' 'eget' 'ehco' 'eiffelstudio' 'eigen' 'eigenpy' 'einstein' 'ejabberd' 'ejdb' 'ekg2' 'ekhtml' 'eksctl' 'elan-init' 'elasticsearch' 'elasticsearch@6' 'elb-tools' 'elektra' 'eless' 'eleventy' 'elfutils' 'elinks' 'elixir' 'elixir-build' 'elixir-ls' 'elm' 'elm-format' 'elvis' 'elvish' 'emacs' 'emacs-clang-complete-async' 'emacs-dracula' 'embree' 'embulk' 'emojify' 'emp' 'empty' 'ems-flasher' 'emscripten' 'enca' 'encfs' 'enchant' 'enet' 'enex2notion' 'enigma' 'enkits' 'enscript' 'ensmallen' 'ent' 'entityx' 'entr' 'envchain' 'envconsul' 'envoy' 'envoy@1.18' 'envv' 'enzyme' 'eot-utils' 'epeg' 'ephemeralpg' 'epic5' 'epinio' 'epr' 'eprover' 'epsilon' 'epstool' 'epubcheck' 'eralchemy' 'erlang' 'erlang@21' 'erlang@22' 'erlang@23' 'erlang@24' 'erofs-utils' 'esbuild' 'eslint' 'esniper' 'espeak' 'esphome' 'esptool' 'etcd' 'etcd-cpp-apiv3' 'ethereum' 'etl' 'etsh' 'ettercap' 'euler-py' 'eureka' 'eva' 'eventql' 'evernote-backup' 'evernote2md' 'evince' 'ex-vi' 'exa' 'exact-image' 'excel-compare' 'exempi' 'exenv' 'exercism' 'exif' 'exiftags' 'exiftool' 'exiftran' 'exim' 'exiv2' 'exodriver' 'expat' 'expect' 'exploitdb' 'ext2fuse' 'ext4fuse' 'extra-cmake-modules' 'extract_url' 'exult' 'eye-d3' 'ezstream' 'f2' 'f3' 'f3d' 'faac' 'faad2' 'faas-cli' 'fabio' 'fabric' 'fabric-completion' 'fabric-installer' 'fades' 'fail2ban' 'fairymax' 'faiss' 'fakeroot' 'falcon' 'fann' 'fantom' 'fanyi' 'fargatecli' 'fasd' 'fastbit' 'fastd' 'fastfec' 'fastjar' 'fastlane' 'fastme' 'fastmod' 'fastnetmon' 'fastp' 'fastq-tools' 'fastqc' 'fasttext' 'fatsort' 'faudio' 'fauna-shell' 'faust' 'fava' 'fb-client' 'fb303' 'fbi-servefiles' 'fblog' 'fbthrift' 'fceux' 'fcgi' 'fcgiwrap' 'fcitx-remote-for-osx' 'fcl' 'fclones' 'fcp' 'fcrackzip' 'fd' 'fdclone' 'fdk-aac' 'fdk-aac-encoder' 'fdroidcl' 'fdroidserver' 'fdupes' 'feedgnuplot' 'feh' 'felinks' 'fennel' 'feroxbuster' 'fetch' 'fetch-crl' 'fetchmail' 'fex' 'ffe' 'fff' 'ffind' 'ffmpeg' 'ffmpeg2theora' 'ffmpeg@2.8' 'ffmpeg@4' 'ffmpegthumbnailer' 'ffms2' 'ffsend' 'fftw' 'ffuf' 'fheroes2' 'fibjs' 'ficy' 'field3d' 'fifechan' 'fig2dev' 'figlet' 'file-formula' 'file-roller' 'filebeat' 'fileicon' 'finatra' 'findent' 'findomain' 'findutils' 'fio' 'firebase-cli' 'firefoxpwa' 'fish' 'fisher' 'fits' 'fizmo' 'fizsh' 'fizz' 'flac' 'flac123' 'flactag' 'flake' 'flake8' 'flamebearer' 'flamegraph' 'flank' 'flann' 'flarectl' 'flash' 'flashrom' 'flatbuffers' 'flatcc' 'flawfinder' 'fleet-cli' 'fleetctl' 'flex' 'flickcurl' 'flif' 'flint' 'flint-checker' 'flintrock' 'flit' 'flix' 'flock' 'flow' 'flow-cli' 'flow-tools' 'flowgrind' 'fltk' 'fluent-bit' 'fluid-synth' 'fluid-synth@2.1' 'flume' 'flux' 'fluxctl' 'flvmeta' 'flvstreamer' 'flyctl' 'flyway' 'fmdiff' 'fmpp' 'fmt' 'fn' 'fnlfmt' 'fnm' 'fnt' 'fobis' 'folderify' 'folly' 'foma' 'fon-flash-cli' 'font-util' 'fontconfig' 'fontforge' 'fonts-encodings' 'fonttools' 'fop' 'forcecli' 'ford' 'forego' 'foreman' 'foremost' 'forge' 'fork-cleaner' 'format-udf' 'fortio' 'fortls' 'fortran-language-server' 'fortune' 'fossil' 'fourmolu' 'fourstore' 'fox' 'fpart' 'fpc' 'fpdns' 'fping' 'fplll' 'fpp' 'fprettify' 'fprobe' 'fq' 'fragroute' 'freealut' 'freebayes' 'freeciv' 'freediameter' 'freedink' 'freeglut' 'freeimage' 'freeipmi' 'freeling' 'freeradius-server' 'freerdp' 'freeswitch' 'freetds' 'freetype' 'freexl' 'frege' 'frege-repl' 'frei0r' 'fribidi' 'frobtads' 'frotz' 'frpc' 'frps' 'frugal' 'fruit' 'frum' 'fs-uae' 'fselect' 'fsevents-tools' 'fsevent_watch' 'fsh' 'fsql' 'fst' 'fstrm' 'fsw' 'fswatch' 'ftgl' 'ftjam' 'fuego' 'fuego-firestore' 'func-e' 'funcoeszz' 'functionalplus' 'fuse-emulator' 'fuse-overlayfs' 'fuse-zip' 'fuseki' 'futhark' 'fuzzy-find' 'fwknop' 'fwup' 'fx' 'fypp' 'fzf' 'fzy' 'g2' 'g2o' 'g3log' 'gabedit' 'gaffitter' 'galen' 'gallery-dl' 'gambit' 'gambit-scheme' 'game-music-emu' 'gammaray' 'gammu' 'gandi.cli' 'ganglia' 'garmintools' 'gateway-go' 'gator' 'gatsby-cli' 'gau' 'gauche' 'gauge' 'gaul' 'gawk' 'gaze' 'gbdfed' 'gcab' 'gcal' 'gcalcli' 'gcc' 'gcc@10' 'gcc@11' 'gcc@4.9' 'gcc@5' 'gcc@6' 'gcc@7' 'gcc@8' 'gcc@9' 'gcem' 'gcovr' 'gcsfuse' 'gcutil' 'gcviewer' 'gd' 'gdal' 'gdb' 'gdbgui' 'gdbm' 'gdcm' 'gdk-pixbuf' 'gdl' 'gdm' 'gdmap' 'gdrive' 'gdrive-downloader' 'gdu' 'gdub' 'gearman' 'geckodriver' 'gecode' 'gedit' 'geeqie' 'gegl' 'gel' 'gem-completion' 'gemgen' 'genact' 'genders' 'generate-json-schema' 'genext2fs' 'gengetopt' 'genometools' 'genstats' 'geocode-glib' 'geogram' 'geographiclib' 'geoip' 'geoipupdate' 'geomview' 'geos' 'geoserver' 'geph2' 'geph4' 'gerbil-scheme' 'gerbv' 'gerrit-tools' 'get-flash-videos' 'getdns' 'getmail' 'gettext' 'getxbook' 'get_iplayer' 'gexiv2' 'gflags' 'gforth' 'gh' 'ghc' 'ghc@8.10' 'ghc@8.6' 'ghc@8.8' 'ghcup' 'ghex' 'ghi' 'ghorg' 'ghostscript' 'ghostunnel' 'ghq' 'ghr' 'ghz' 'ghz-web' 'gi-docgen' 'gibbslda' 'gibo' 'gif2png' 'gifcap' 'gifify' 'giflib' 'giflossy' 'gifsicle' 'gifski' 'gimme' 'gimme-aws-creds' 'ginac' 'gist' 'gistit' 'git' 'git-absorb' 'git-annex' 'git-annex-remote-rclone' 'git-appraise' 'git-archive-all' 'git-branchless' 'git-bug' 'git-cal' 'git-cinnabar' 'git-cliff' 'git-codereview' 'git-cola' 'git-credential-libsecret' 'git-credential-manager' 'git-crypt' 'git-delete-merged-branches' 'git-delta' 'git-extras' 'git-filter-repo' 'git-fixup' 'git-flow' 'git-flow-avh' 'git-fresh' 'git-ftp' 'git-game' 'git-gerrit' 'git-gui' 'git-hooks-go' 'git-hound' 'git-if' 'git-imerge' 'git-integration' 'git-interactive-rebase-tool' 'git-lfs' 'git-machete' 'git-multipush' 'git-now' 'git-number' 'git-octopus' 'git-open' 'git-plus' 'git-quick-stats' 'git-recent' 'git-remote-codecommit' 'git-remote-gcrypt' 'git-remote-hg' 'git-review' 'git-revise' 'git-secret' 'git-secrets' 'git-series' 'git-sizer' 'git-ssh' 'git-standup' 'git-subrepo' 'git-svn' 'git-svn-abandon' 'git-sync' 'git-test' 'git-tf' 'git-town' 'git-tracker' 'git-trim' 'git-url-sub' 'git-utils' 'git-vendor' 'git-when-merged' 'git-workspace' 'git-xargs' 'gitbackup' 'gitbatch' 'gitbucket' 'gitfs' 'gitg' 'github-keygen' 'github-markdown-toc' 'github-release' 'gitlab-ci-local' 'gitlab-gem' 'gitlab-runner' 'gitleaks' 'gitless' 'gitlint' 'gitmoji' 'gitql' 'gitslave' 'gitter-cli' 'gitui' 'gitup' 'gitversion' 'gitwatch' 'giza' 'gjs' 'gkrellm' 'gl2ps' 'glab' 'glade' 'glances' 'glassfish' 'glbinding' 'gleam' 'glew' 'glfw' 'glib' 'glib-networking' 'glib-openssl' 'glibc' 'glibc@2.13' 'glibmm' 'glibmm@2.66' 'glide' 'glider' 'glkterm' 'glktermw' 'glm' 'global' 'globe' 'globjects' 'glog' 'glooctl' 'gloox' 'glow' 'glpk' 'glslang' 'glslviewer' 'glui' 'glulxe' 'gluon' 'glyr' 'gmail-backup' 'gmailctl' 'gmic' 'gmime' 'gmp' 'gmsh' 'gmt' 'gmt@5' 'gnirehtet' 'gnome-autoar' 'gnome-common' 'gnome-latex' 'gnome-recipes' 'gnome-themes-standard' 'gnu-apl' 'gnu-barcode' 'gnu-chess' 'gnu-cobol' 'gnu-complexity' 'gnu-getopt' 'gnu-go' 'gnu-indent' 'gnu-prolog' 'gnu-sed' 'gnu-shogi' 'gnu-smalltalk' 'gnu-tar' 'gnu-time' 'gnu-typist' 'gnu-units' 'gnu-which' 'gnumeric' 'gnunet' 'gnupg' 'gnupg-pkcs11-scd' 'gnupg@1.4' 'gnupg@2.2' 'gnuplot' 'gnuplot@4' 'gnuradio' 'gnuski' 'gnustep-base' 'gnustep-make' 'gnutls' 'go' 'go-bindata' 'go-boring' 'go-camo' 'go-critic' 'go-jira' 'go-jsonnet' 'go-md2man' 'go-statik' 'go@1.13' 'go@1.14' 'go@1.15' 'go@1.16' 'go@1.17' 'go@1.18' 'goaccess' 'goad' 'goawk' 'gobject-introspection' 'gobo' 'gobuster' 'gocloc' 'gocr' 'gocryptfs' 'goctl' 'goenv' 'gofabric8' 'goffice' 'gofish' 'gofumpt' 'gojq' 'gokart' 'golang-migrate' 'golangci-lint' 'gollum' 'golo' 'gom' 'gomodifytags' 'gomplate' 'goocanvas' 'goofys' 'google-authenticator-libpam' 'google-benchmark' 'google-java-format' 'google-sparsehash' 'google-sql-tool' 'googler' 'googletest' 'goolabs' 'goose' 'gopass' 'gopass-jsonapi' 'gopls' 'goplus' 'goproxy' 'gops' 'gor' 'goredo' 'goreleaser' 'goreman' 'gosec' 'gost' 'gostatic' 'gosu' 'got' 'gotags' 'gotests' 'gotify' 'goto' 'gotop' 'gource' 'govc' 'govendor' 'gowsdl' 'gox' 'gpa' 'gpac' 'gpatch' 'gpcslots2' 'gperf' 'gperftools' 'gpg-tui' 'gpgme' 'gphoto2' 'gping' 'gplcver' 'gpm' 'gpp' 'gpredict' 'gprof2dot' 'gpsbabel' 'gpsd' 'gpsim' 'gptfdisk' 'gptsync' 'gputils' 'gpx' 'gqlplus' 'gqview' 'grace' 'gradio' 'gradle' 'gradle-completion' 'gradle-profiler' 'gradle@6' 'grafana' 'grafana-agent' 'grails' 'grap' 'graph-tool' 'graphene' 'graphicsmagick' 'graphite2' 'graphql-cli' 'graphqurl' 'graphviz' 'gravity' 'grc' 'greed' 'grep' 'grepcidr' 'grepip' 'grex' 'grin' 'grin-wallet' 'grip' 'groestlcoin' 'groff' 'grok' 'grokj2k' 'grokmirror' 'gromacs' 'gron' 'groonga' 'groovy' 'groovysdk' 'groovyserv' 'grpc' 'grpc-swift' 'grpcui' 'grpcurl' 'grsync' 'grt' 'grunt-cli' 'grunt-completion' 'gsar' 'gsasl' 'gsettings-desktop-schemas' 'gsl' 'gsmartcontrol' 'gsoap' 'gspell' 'gssdp' 'gssh' 'gst-devtools' 'gst-editing-services' 'gst-libav' 'gst-plugins-bad' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-rs' 'gst-plugins-ugly' 'gst-python' 'gst-rtsp-server' 'gstreamer' 'gti' 'gtk+' 'gtk+3' 'gtk-chtheme' 'gtk-doc' 'gtk-gnutella' 'gtk-mac-integration' 'gtk-vnc' 'gtk4' 'gtkdatabox' 'gtkextra' 'gtkglext' 'gtkmm' 'gtkmm3' 'gtkmm4' 'gtksourceview' 'gtksourceview3' 'gtksourceview4' 'gtksourceview5' 'gtksourceviewmm' 'gtksourceviewmm3' 'gtkspell3' 'gtmess' 'gtop' 'gtranslator' 'gts' 'gucharmap' 'guetzli' 'guichan' 'guile' 'guile@2' 'gulp-cli' 'gum' 'gumbo-parser' 'gupnp' 'gupnp-av' 'gupnp-tools' 'gvp' 'gwenhywfar' 'gws' 'gwt' 'gwyddion' 'gx' 'gx-go' 'gxml' 'gzip' 'gzrt' 'h2' 'h264bitstream' 'h2c' 'h2o' 'h2spec' 'h3' 'hackrf' 'hadolint' 'hadoop' 'halibut' 'halide' 'hamlib' 'handbrake' 'hapi-fhir-cli' 'haproxy' 'harbour' 'hardlink' 'harfbuzz' 'haruhi-dl' 'has' 'hashcash' 'hashcat' 'hashlink' 'hashpump' 'haskell-language-server' 'haskell-stack' 'haste-client' 'hasura-cli' 'hatari' 'hatch' 'haxe' 'hayai' 'hbase' 'hblock' 'hcl2json' 'hcloud' 'hcxtools' 'hdf5' 'hdf5-mpi' 'hdf5@1.10' 'hdf5@1.8' 'hdt' 'healpix' 'heartbeat' 'heatshrink' 'hebcal' 'heimdal' 'heksa' 'helib' 'helix' 'hello' 'helm' 'helm@2' 'helmfile' 'helmify' 'helmsman' 'help2man' 'heppdt2' 'hercules' 'herrie' 'hesiod' 'hevea' 'hexcurse' 'hexedit' 'hexgui' 'hexo' 'hexyl' 'hey' 'hfstospell' 'hfsutils' 'hg-fast-export' 'hicolor-icon-theme' 'hidapi' 'highlight' 'highs' 'highway' 'hilite' 'himalaya' 'hiredis' 'historian' 'hive' 'hivemind' 'hledger' 'hlint' 'hmmer' 'hoedown' 'hof' 'homeassistant-cli' 'homebank' 'homeshick' 'homesick-completion' 'homeworlds' 'honcho' 'hopenpgp-tools' 'hostdb' 'hostess' 'howard-hinnant-date' 'howdoi' 'hpack' 'hping' 'hpp-fcl' 'hqx' 'hr' 'hsd' 'hspell' 'hss' 'hstr' 'ht' 'html-xml-utils' 'html2text' 'htmlcleaner' 'htmlcompressor' 'htmlcxx' 'htmldoc' 'htmlq' 'htmltest' 'htop' 'htpdate' 'htslib' 'http-parser' 'http-prompt' 'http-server' 'httpd' 'httpdiff' 'httperf' 'httpflow' 'httpie' 'httping' 'httpry' 'httpstat' 'httpx' 'httpyac' 'http_load' 'httrack' 'hub' 'hubble' 'hubflow' 'huexpress' 'hugo' 'hunspell' 'hurl' 'hut' 'hwatch' 'hwloc' 'hy' 'hydra' 'hyperestraier' 'hyperfine' 'hyperkit' 'hyperscan' 'hyperspec' 'hypre' 'hyx' 'i2c-tools' 'i2p' 'i2pd' 'i2util' 'i386-elf-gdb' 'i686-elf-binutils' 'i686-elf-gcc' 'iam-policy-json-to-terraform' 'iamy' 'iat' 'ibex' 'iblinter' 'ical-buddy' 'icarus-verilog' 'icbirc' 'icdiff' 'ice' 'icecast' 'icecream' 'icemon' 'icon' 'icon-naming-utils' 'iconsur' 'icoutils' 'icu4c' 'id3ed' 'id3lib' 'id3tool' 'id3v2' 'ideviceinstaller' 'idnits' 'idris' 'idris2' 'idutils' 'ievms' 'ifacemaker' 'ifstat' 'iftop' 'ifuse' 'igraph' 'igv' 'ii' 'ijq' 'ike-scan' 'ilmbase' 'imagejs' 'imagemagick' 'imagemagick@6' 'imageoptim-cli' 'imagesnap' 'imageworsener' 'imake' 'imap-backup' 'imap-uw' 'imapfilter' 'imapsync' 'imath' 'imessage-ruby' 'imgproxy' 'imgur-screenshot' 'imlib2' 'immortal' 'immudb' 'imposm3' 'inadyn' 'include-what-you-use' 'indicators' 'inetutils' 'infer' 'influxdb' 'influxdb-cli' 'influxdb@1' 'inform6' 'infracost' 'infrakit' 'inframap' 'inih' 'iniparser' 'inja' 'inko' 'inlets' 'innoextract' 'innotop' 'inotify-tools' 'insect' 'inspectrum' 'inspircd' 'install-peerdeps' 'instalooter' 'instead' 'intercal' 'interface99' 'internetarchive' 'intltool' 'inxi' 'io' 'ioctl' 'iodine' 'ioke' 'ioping' 'ios-class-guard' 'ios-deploy' 'ios-sim' 'ios-webkit-debug-proxy' 'iozone' 'ipbt' 'ipcalc' 'iperf' 'iperf3' 'ipfs' 'iphotoexport' 'ipinfo' 'ipinfo-cli' 'ipmitool' 'ipmiutil' 'ipopt' 'iprint' 'iproute2' 'iproute2mac' 'ipsumdump' 'iptables' 'iputils' 'ipv6calc' 'ipv6toolkit' 'ipython' 'ip_relay' 'ircd-hybrid' 'ircd-irc2' 'ircii' 'ired' 'iredis' 'ironcli' 'irrlicht' 'irrtoolset' 'irssi' 'isa-l' 'isc-dhcp' 'isl' 'isl@0.18' 'iso-codes' 'isort' 'ispc' 'ispell' 'istioctl' 'isync' 'itex2mml' 'itk' 'itpp' 'itstool' 'ivtools' 'ivy' 'ivykis' 'jabba' 'jack' 'jackett' 'jadx' 'jags' 'jailkit' 'jam' 'janet' 'jansson' 'jaq' 'jasmin' 'jasper' 'java-service-wrapper' 'javacc' 'javarepl' 'jbake' 'jbig2dec' 'jbig2enc' 'jbigkit' 'jboss-forge' 'jc' 'jcal' 'jd' 'jdnssec-tools' 'jdtls' 'jdupes' 'jed' 'jello' 'jellyfish' 'jemalloc' 'jena' 'jenkins' 'jenkins-job-builder' 'jenkins-lts' 'jenv' 'jerm' 'jerryscript' 'jetty' 'jetty-runner' 'jflex' 'jfrog-cli' 'jhead' 'jhiccup' 'jhipster' 'jid' 'jigdo' 'jimtcl' 'jing-trang' 'jinja2-cli' 'jinx' 'jless' 'jlog' 'jmeter' 'jmxterm' 'jmxtrans' 'jnethack' 'jnettop' 'jo' 'jobber' 'joe' 'john' 'john-jumbo' 'jolie' 'jooby-bootstrap' 'joplin-cli' 'jose' 'joshua' 'jove' 'jp' 'jp2a' 'jpdfbookmarks' 'jpeg' 'jpeg-archive' 'jpeg-turbo' 'jpeg-xl' 'jpeginfo' 'jpegoptim' 'jpegrescan' 'jq' 'jql' 'jrnl' 'jrsonnet' 'jrtplib' 'jruby' 'jsawk' 'jsdoc3' 'jshon' 'jslint4java' 'jsmin' 'json-c' 'json-fortran' 'json-glib' 'json-table' 'json11' 'json2tsv' 'json5' 'jsoncpp' 'jsonlint' 'jsonnet' 'jsonnet-bundler' 'jsonpp' 'jsonrpc-glib' 'jsonschema' 'jsonschema2pojo' 'json_spirit' 'jsvc' 'jthread' 'juise' 'juju' 'juju-wait' 'julia' 'juliaup' 'julius' 'juman' 'jumanpp' 'jump' 'jupp' 'jupyterlab' 'just' 'jvgrep' 'jvm-mon' 'jvmtop' 'jxrlib' 'jython' 'k2tf' 'k3d' 'k3sup' 'k6' 'k9s' 'kafka' 'kahip' 'kaitai-struct-compiler' 'kakoune' 'kalign' 'kalker' 'kallisto' 'kamel' 'kanif' 'kapacitor' 'karchive' 'karn' 'katago' 'kawa' 'kcat' 'kcgi' 'kcov' 'kcptun' 'kdoctools' 'kdoctor' 'kedge' 'keepassc' 'keepkey-agent' 'keptn' 'kepubify' 'kerl' 'kertish-dfs' 'kestrel' 'kettle' 'keychain' 'keydb' 'keystone' 'khal' 'khard' 'khiva' 'ki' 'ki18n' 'kibana' 'kibana@6' 'kickstart' 'kics' 'killswitch' 'kim-api' 'kimwitu++' 'kind' 'kitchen-completion' 'kitchen-sync' 'kite' 'klavaro' 'klee' 'kmod' 'kn' 'knock' 'knot' 'knot-resolver' 'known_hosts' 'ko' 'koka' 'kommit' 'kompose' 'kona' 'kondo' 'kopia' 'kops' 'kore' 'kotlin' 'kotlin-language-server' 'kpcli' 'kqwait' 'krakend' 'krb5' 'krew' 'ksh' 'ksh93' 'kstart' 'ksync' 'kt-connect' 'ktlint' 'ktmpl' 'ktoblzcheck' 'kube-aws' 'kube-linter' 'kube-ps1' 'kube-score' 'kubeaudit' 'kubebuilder' 'kubecfg' 'kubecm' 'kubeconform' 'kubectx' 'kubekey' 'kubeless' 'kubeprod' 'kubergrunt' 'kubernetes-cli' 'kubernetes-cli@1.22' 'kubernetes-service-catalog-client' 'kubescape' 'kubeseal' 'kubesess' 'kubespy' 'kubeval' 'kubevela' 'kubie' 'kumactl' 'kumo' 'kustomize' 'kvazaar' 'kyma-cli' 'kyoto-cabinet' 'kyoto-tycoon' 'kytea' 'kyua' 'kyverno' 'lab' 'lablgtk' 'ladspa-sdk' 'lame' 'lammps' 'landscaper' 'languagetool' 'lanraragi' 'lapack' 'lasi' 'lasso' 'lastpass-cli' 'lastz' 'laszip' 'latex2html' 'latex2rtf' 'latexdiff' 'latexindent' 'latexml' 'latino' 'launch' 'launch4j' 'launchctl-completion' 'launchdns' 'launch_socket_server' 'lazydocker' 'lazygit' 'lbdb' 'lbzip2' 'lc0' 'lcdf-typetools' 'lcdproc' 'lci' 'lcm' 'lcov' 'lcrack' 'lcs' 'ld-find-code-refs' 'ldapvi' 'ldc' 'ldid' 'ldns' 'ldpl' 'le' 'leaf' 'leaf-proxy' 'leakcanary-shark' 'lean' 'lean-cli' 'leapp-cli' 'leaps' 'ledger' 'ledit' 'leela-zero' 'lefthook' 'legit' 'lego' 'leiningen' 'lemon' 'lensfun' 'lepton' 'leptonica' 'lerna' 'less' 'lesspipe' 'lesstif' 'levant' 'leveldb' 'lexbor' 'lexicon' 'lf' 'lfe' 'lft' 'lftp' 'lgeneral' 'lgogdownloader' 'lha' 'lhasa' 'lib3ds' 'libaacs' 'libabw' 'libadwaita' 'libaec' 'libagg' 'libaio' 'libantlr3c' 'libao' 'libapplewm' 'libarchive' 'libart' 'libass' 'libassuan' 'libatomic_ops' 'libav' 'libavif' 'libb2' 'libb64' 'libbdplus' 'libbi' 'libbinio' 'libbitcoin' 'libbitcoin-blockchain' 'libbitcoin-client' 'libbitcoin-consensus' 'libbitcoin-database' 'libbitcoin-explorer' 'libbitcoin-network' 'libbitcoin-node' 'libbitcoin-protocol' 'libbitcoin-server' 'libbladerf' 'libbluray' 'libbpf' 'libbpg' 'libbs2b' 'libbsd' 'libbtbb' 'libcaca' 'libcanberra' 'libcap' 'libcap-ng' 'libcapn' 'libcbor' 'libccd' 'libcddb' 'libcdio' 'libcdr' 'libcds' 'libcec' 'libcello' 'libcerf' 'libchamplain' 'libchaos' 'libchewing' 'libcmph' 'libcoap' 'libconfig' 'libcouchbase' 'libcouchbase@2' 'libcpuid' 'libcroco' 'libcsv' 'libcue' 'libcuefile' 'libcython' 'libdaemon' 'libdap' 'libdazzle' 'libdbi' 'libdc1394' 'libdca' 'libde265' 'libdeflate' 'libdill' 'libdiscid' 'libdivecomputer' 'libdmtx' 'libdmx' 'libdnet' 'libdrawtext' 'libdrm' 'libdshconfig' 'libdsk' 'libdv' 'libdvbpsi' 'libdvdcss' 'libdvdnav' 'libdvdread' 'libeatmydata' 'libebml' 'libebur128' 'libedit' 'libelf' 'libepoxy' 'libestr' 'libetonyek' 'libetpan' 'libev' 'libevent' 'libevhtp' 'libewf' 'libexif' 'libexosip' 'libextractor' 'libfabric' 'libfaketime' 'libff' 'libffcall' 'libffi' 'libfido2' 'libfishsound' 'libfixbuf' 'libfixposix' 'libflowmanager' 'libfontenc' 'libforensic1394' 'libfreefare' 'libfreehand' 'libfreenect' 'libfs' 'libftdi' 'libftdi0' 'libfuse' 'libfuse@2' 'libgadu' 'libgaiagraphics' 'libgccjit' 'libgcrypt' 'libgda' 'libgdata' 'libgee' 'libgeotiff' 'libgetdata' 'libgfshare' 'libghthash' 'libgig' 'libgit2' 'libgit2-glib' 'libglade' 'libglademm' 'libgnomecanvas' 'libgnomecanvasmm' 'libgnt' 'libgosu' 'libgpg-error' 'libgphoto2' 'libgr' 'libgrape-lite' 'libgraphqlparser' 'libgsf' 'libgsm' 'libgtop' 'libgusb' 'libgweather' 'libgxps' 'libhandy' 'libharu' 'libhdhomerun' 'libheif' 'libhid' 'libhttpserver' 'libical' 'libice' 'libicns' 'libiconv' 'libid3tag' 'libident' 'libidl' 'libidn' 'libidn2' 'libilbc' 'libimagequant' 'libimobiledevice' 'libiodbc' 'libiptcdata' 'libirecovery' 'libiscsi' 'libjson-rpc-cpp' 'libjwt' 'libkate' 'libkeccak' 'libkml' 'libksba' 'liblas' 'liblbfgs' 'liblcf' 'liblinear' 'liblo' 'liblockfile' 'liblouis' 'liblqr' 'libltc' 'liblunar' 'liblwgeom' 'liblzf' 'libmaa' 'libmagic' 'libmarpa' 'libmatio' 'libmatroska' 'libmaxminddb' 'libmd' 'libmemcached' 'libmetalink' 'libmicrohttpd' 'libmikmod' 'libming' 'libmms' 'libmng' 'libmnl' 'libmobi' 'libmodbus' 'libmodplug' 'libmonome' 'libmowgli' 'libmp3splt' 'libmpc' 'libmpd' 'libmpdclient' 'libmpeg2' 'libmrss' 'libmspub' 'libmtp' 'libmusicbrainz' 'libmwaw' 'libmxml' 'libmypaint' 'libnatpmp' 'libnet' 'libnetfilter-queue' 'libnetfilter_conntrack' 'libnetworkit' 'libnfc' 'libnfnetlink' 'libnfs' 'libnftnl' 'libnghttp2' 'libngspice' 'libnice' 'libnids' 'libnl' 'libnotify' 'libnova' 'libnsl' 'libntlm' 'libnxml' 'liboauth' 'libobjc2' 'libodfgen' 'libofx' 'libogg' 'liboil' 'libolm' 'libomp' 'libopenmpt' 'libopennet' 'liboping' 'libopusenc' 'liboqs' 'libosinfo' 'libosip' 'libosmium' 'libotr' 'libowfat' 'libp11' 'libpagemaker' 'libpano' 'libpcap' 'libpciaccess' 'libpcl' 'libpeas' 'libpgm' 'libphonenumber' 'libpinyin' 'libpipeline' 'libplacebo' 'libplctag' 'libplist' 'libpng' 'libpointing' 'libpoker-eval' 'libpq' 'libpqxx' 'libpqxx@6' 'libprelude' 'libprotoident' 'libproxy' 'libpsl' 'libpst' 'libpthread-stubs' 'libpulsar' 'libpython-tabulate' 'libqalculate' 'libquantum' 'libquicktime' 'libquvi' 'libraqm' 'librasterlite' 'librasterlite2' 'libraw' 'librcsc' 'librdkafka' 'libre' 'libreadline-java' 'librealsense' 'librem' 'libreplaygain' 'libresample' 'librespot' 'libressl' 'librest' 'librevenge' 'librist' 'librsvg' 'librsync' 'librtlsdr' 'librttopo' 'libsamplerate' 'libsass' 'libsbol' 'libscrypt' 'libseccomp' 'libsecret' 'libserdes' 'libserialport' 'libshout' 'libsigc++' 'libsigc++@2' 'libsignal-protocol-c' 'libsigrok' 'libsigrokdecode' 'libsigsegv' 'libsixel' 'libslax' 'libslirp' 'libsm' 'libsmf' 'libsmi' 'libsndfile' 'libsodium' 'libsoundio' 'libsoup' 'libsoup@2' 'libsoxr' 'libspatialite' 'libspectre' 'libspectrum' 'libspiro' 'libspnav' 'libspng' 'libsquish' 'libssh' 'libssh2' 'libstatgrab' 'libstfl' 'libstrophe' 'libstxxl' 'libsvg' 'libsvg-cairo' 'libsvm' 'libswiften' 'libswiftnav' 'libtar' 'libtasn1' 'libtcod' 'libtecla' 'libtensorflow' 'libtensorflow@1' 'libtermkey' 'libtextcat' 'libtiff' 'libtins' 'libtirpc' 'libtomcrypt' 'libtommath' 'libtool' 'libtorch' 'libtorrent-rakshasa' 'libtorrent-rasterbar' 'libtpms' 'libtrace' 'libtrng' 'libu2f-host' 'libu2f-server' 'libucl' 'libuecc' 'libuninameslist' 'libunistring' 'libunwind' 'libunwind-headers' 'libupnp' 'liburing' 'libusb' 'libusb-compat' 'libusbmuxd' 'libusrsctp' 'libuv' 'libuvc' 'libva' 'libvatek' 'libvdpau' 'libvidstab' 'libvirt' 'libvirt-glib' 'libvisio' 'libvmaf' 'libvnc' 'libvncserver' 'libvo-aacenc' 'libvoikko' 'libvorbis' 'libvpx' 'libvterm' 'libwandevent' 'libwbxml' 'libwebm' 'libwebsockets' 'libwmf' 'libwpd' 'libwpg' 'libwps' 'libx11' 'libxau' 'libxaw' 'libxaw3d' 'libxc' 'libxcb' 'libxcomposite' 'libxcrypt' 'libxcursor' 'libxcvt' 'libxdamage' 'libxdg-basedir' 'libxdiff' 'libxdmcp' 'libxext' 'libxfixes' 'libxfont' 'libxfont2' 'libxft' 'libxi' 'libxinerama' 'libxkbcommon' 'libxkbfile' 'libxls' 'libxlsxwriter' 'libxmi' 'libxml++' 'libxml++3' 'libxml++@4' 'libxml++@5' 'libxml2' 'libxmlsec1' 'libxmp' 'libxmp-lite' 'libxmu' 'libxo' 'libxp' 'libxpm' 'libxrandr' 'libxrender' 'libxres' 'libxscrnsaver' 'libxshmfence' 'libxslt' 'libxspf' 'libxt' 'libxtst' 'libxv' 'libxvmc' 'libxxf86dga' 'libxxf86vm' 'libyaml' 'libyubikey' 'libzdb' 'libzip' 'libzzip' 'licensefinder' 'licenseplist' 'licensor' 'lifelines' 'lightgbm' 'lighthouse' 'lightning' 'lighttpd' 'lilv' 'lilypond' 'lima' 'lincity-ng' 'link-grammar' 'linkerd' 'linklint' 'links' 'linode-cli' 'linux-headers@4.15' 'linux-headers@4.4' 'linux-headers@5.15' 'linux-headers@5.16' 'linux-pam' 'liqoctl' 'liquibase' 'liquid-dsp' 'liquidctl' 'liquidprompt' 'liquigraph' 'lit' 'litani' 'litecli' 'literate-git' 'little-cms' 'little-cms2' 'livekit' 'livekit-cli' 'livestreamer' 'lizard' 'lizard-analyzer' 'lldpd' 'llnode' 'llvm' 'llvm@11' 'llvm@12' 'llvm@13' 'llvm@14' 'llvm@7' 'llvm@8' 'llvm@9' 'lm-sensors' 'lm4tools' 'lmdb' 'lmfit' 'lmod' 'lnav' 'lndir' 'loc' 'localstack' 'localtunnel' 'locateme' 'lockrun' 'locust' 'log4c' 'log4cplus' 'log4cpp' 'log4cxx' 'log4shib' 'logcheck' 'logcli' 'logrotate' 'logstalgia' 'logstash' 'logswan' 'logtalk' 'loki' 'lolcat' 'lolcode' 'lorem' 'loudmouth' 'lout' 'lpc21isp' 'lp_solve' 'lrdf' 'lrzip' 'lrzsz' 'lsd' 'lsdvd' 'lsix' 'lsof' 'lsusb' 'lsyncd' 'ltc-tools' 'ltex-ls' 'ltl2ba' 'lttng-ust' 'lua' 'lua-language-server' 'lua@5.1' 'lua@5.3' 'luabind' 'luajit' 'luajit-openresty' 'luaradio' 'luarocks' 'luau' 'luaver' 'lucky-commit' 'luit' 'lunar-date' 'lunchy' 'lunchy-go' 'lunzip' 'lutok' 'luv' 'luvit' 'lux' 'lv' 'lv2' 'lwtools' 'lxc' 'lxsplit' 'ly' 'lychee' 'lynis' 'lynx' 'lz4' 'lzfse' 'lzip' 'lziprecover' 'lzlib' 'lzo' 'lzop' 'm-cli' 'm4' 'mabel' 'mac-robber' 'macchina' 'mackup' 'maclaunch' 'macos-term-size' 'macos-trash' 'macosvpn' 'macvim' 'mad' 'madplay' 'mafft' 'mage' 'magic-wormhole' 'magic_enum' 'mahout' 'mailcatcher' 'mailcheck' 'mailhog' 'mailsy' 'mailutils' 'mairix' 'make' 'makedepend' 'makefile2graph' 'makeicns' 'makensis' 'makepkg' 'makeself' 'malbolge' 'mallet' 'mame' 'man-db' 'man2html' 'mandoc' 'mandown' 'manifest-tool' 'manticoresearch' 'mapcidr' 'mapcrafter' 'mapnik' 'mapproxy' 'mapserver' 'marcli' 'mariadb' 'mariadb-connector-c' 'mariadb-connector-odbc' 'mariadb@10.1' 'mariadb@10.2' 'mariadb@10.3' 'mariadb@10.4' 'mariadb@10.5' 'mariadb@10.6' 'mariadb@10.7' 'markdown' 'markdown-toc' 'markdownlint-cli' 'marked' 'marp-cli' 'mas' 'mask' 'masscan' 'massdns' 'massren' 'mat2' 'math-comp' 'mathlibtools' 'matlab2tikz' 'matplotplusplus' 'matterbridge' 'maturin' 'maven' 'maven-completion' 'maven-shell' 'maven@3.2' 'maven@3.3' 'maven@3.5' 'mavsdk' 'mawk' 'maxima' 'maxwell' 'mbedtls' 'mbedtls@2' 'mbelib' 'mbt' 'mbw' 'mcabber' 'mcap' 'mcfly' 'mcpp' 'mcrypt' 'md4c' 'md5deep' 'md5sha1sum' 'mda-lv2' 'mdbook' 'mdbtools' 'mdcat' 'mdds' 'mdf2iso' 'mdk' 'mdp' 'mdr' 'mdv' 'mdxmini' 'mdzk' 'mecab' 'mecab-ipadic' 'mecab-jumandic' 'mecab-ko' 'mecab-ko-dic' 'mecab-unidic' 'mecab-unidic-extended' 'media-info' 'mediaconch' 'mednafen' 'meek' 'megacmd' 'megatools' 'meilisearch' 'melody' 'memcache-top' 'memcached' 'memcacheq' 'memtester' 'menhir' 'mercurial' 'mercury' 'mergelog' 'mergepbx' 'mermaid-cli' 'mesa' 'mesa-glu' 'mesalib-glw' 'mesheryctl' 'meson' 'mesos' 'metabase' 'metalang99' 'metaproxy' 'metashell' 'metis' 'metricbeat' 'mfcuk' 'mfoc' 'mfterm' 'mftrace' 'mg' 'mgba' 'mhash' 'mhonarc' 'micro' 'micronaut' 'microplane' 'micropython' 'microsocks' 'micro_inetd' 'midgard2' 'midicsv' 'midnight-commander' 'mighttpd2' 'mikmod' 'mikutter' 'mill' 'miller' 'mimalloc' 'mimic' 'minbif' 'minetest' 'mingw-w64' 'minica' 'minicom' 'minidjvu' 'minidlna' 'minikube' 'minimal-racket' 'minimap2' 'minimesos' 'minimodem' 'minio' 'minio-mc' 'minipro' 'minisat' 'minised' 'miniserve' 'minisign' 'miniupnpc' 'minizinc' 'minizip' 'minizip-ng' 'mint' 'minuit2' 'miruo' 'mist' 'mit-scheme' 'mitie' 'mitmproxy' 'mix-completion' 'mjpegtools' 'mk-configure' 'mkcert' 'mkclean' 'mkcue' 'mkdocs' 'mkfontscale' 'mkhexgrid' 'mkp224o' 'mksh' 'mktorrent' 'mkvalidator' 'mkvdts2ac3' 'mkvtomp4' 'mkvtoolnix' 'mle' 'mlkit' 'mlogger' 'mlpack' 'mlt' 'mlton' 'mm-common' 'mmark' 'mmctl' 'mmix' 'mmseqs2' 'mmsrip' 'mmtabbarview' 'mmv' 'moar' 'moarvm' 'mobiledevice' 'moc' 'mockery' 'mockolo' 'mockserver' 'moco' 'modd' 'modgit' 'modman' 'modules' 'moe' 'mogenerator' 'mold' 'molecule' 'molten-vk' 'mon' 'monero' 'monetdb' 'mongo-c-driver' 'mongo-cxx-driver' 'mongo-orchestration' 'mongocli' 'mongodb-atlas-cli' 'mongoose' 'mongosh' 'mongrel2' 'mongroup' 'monika' 'monit' 'monitoring-plugins' 'monkeysphere' 'mono' 'mono-libgdiplus' 'monolith' 'montage' 'moon-buggy' 'moreutils' 'morse' 'mosh' 'mosml' 'mosquitto' 'most' 'moto' 'movgrab' 'moz-git-tools' 'mozjpeg' 'mp3blaster' 'mp3cat' 'mp3check' 'mp3fs' 'mp3gain' 'mp3info' 'mp3splt' 'mp3unicode' 'mp3val' 'mp3wrap' 'mp4v2' 'mpack' 'mpage' 'mpc' 'mpck' 'mpd' 'mpdas' 'mpdecimal' 'mpdscribble' 'mpdviz' 'mpegdemux' 'mpfi' 'mpfr' 'mpg123' 'mpg321' 'mpgtx' 'mpi4py' 'mpich' 'mpir' 'mplayer' 'mplayershell' 'mpop' 'mprocs' 'mps-youtube' 'mpssh' 'mpv' 'mpw' 'mqttui' 'mr' 'mrbayes' 'mrboom' 'mrtg' 'mruby' 'mruby-cli' 'msc-generator' 'mscgen' 'msdl' 'msgpack' 'msgpack-cxx' 'msgpack-tools' 'msgpuck' 'msitools' 'msktutil' 'msmtp' 'mspdebug' 'mstch' 'mt32emu' 'mtoc' 'mtools' 'mtr' 'mu' 'mu-repo' 'muffet' 'mujs' 'multi-git-status' 'multimarkdown' 'multitail' 'multitime' 'muparser' 'mupdf' 'mupdf-tools' 'mupen64plus' 'murex' 'musepack' 'mussh' 'mutt' 'mvnvm' 'mvtools' 'mx' 'mycli' 'mydumper' 'myman' 'mypaint-brushes' 'mypy' 'mysql' 'mysql++' 'mysql-client' 'mysql-client@5.7' 'mysql-connector-c++' 'mysql-sandbox' 'mysql-search-replace' 'mysql@5.6' 'mysql@5.7' 'mysqltuner' 'mytop' 'n' 'naabu' 'nacl' 'naga' 'nagios' 'nagios-plugins' 'nailgun' 'nali' 'name-that-hash' 'namebench' 'naml' 'nano' 'nanoflann' 'nanomsg' 'nanomsgxx' 'nanopb-generator' 'nanorc' 'narwhal' 'nasm' 'natalie' 'nativefier' 'nats-server' 'nats-streaming-server' 'naturaldocs' 'nauty' 'nave' 'navi' 'nb' 'nbdime' 'nbimg' 'nbsdgames' 'ncc' 'ncdc' 'ncdu' 'ncftp' 'ncmpc' 'ncmpcpp' 'ncnn' 'nco' 'ncompress' 'ncp' 'ncrack' 'ncspot' 'ncurses' 'ncview' 'ndenv' 'ndiff' 'ndpi' 'ne' 'neatvi' 'nebula' 'nedit' 'needle' 'nef' 'negfix8' 'neko' 'neo4j' 'neofetch' 'neomutt' 'neon' 'neopop-sdl' 'neovide' 'neovim' 'neovim-qt' 'neovim-remote' 'nerdctl' 'nesc' 'nest' 'nestopia-ue' 'net-snmp' 'net-tools' 'netcat' 'netcat6' 'netcdf' 'netdata' 'nethack' 'nethacked' 'nethogs' 'netlify-cli' 'netmask' 'netpbm' 'netperf' 'netris' 'nettle' 'nettoe' 'networkit' 'never' 'newlisp' 'newman' 'newrelic-cli' 'newrelic-infra-agent' 'newsboat' 'newt' 'nexus' 'nfcutils' 'nfdump' 'nfpm' 'nftables' 'nghttp2' 'nginx' 'ngircd' 'ngrep' 'ngs' 'ngspice' 'ngt' 'nickel' 'nickle' 'nicotine-plus' 'nicovideo-dl' 'nifi' 'nifi-registry' 'nift' 'nikto' 'nim' 'ninja' 'ninvaders' 'nkf' 'nload' 'nlohmann-json' 'nlopt' 'nmap' 'nmh' 'nmrpflash' 'nng' 'nnn' 'no-more-secrets' 'node' 'node-build' 'node-sass' 'node@10' 'node@12' 'node@14' 'node@16' 'nodebrew' 'nodeenv' 'nodenv' 'node_exporter' 'nomad' 'nomino' 'nopoll' 'norm' 'normalize' 'notcurses' 'noti' 'notifiers' 'notmuch' 'notmuch-mutt' 'noweb' 'nox' 'npth' 'npush' 'nq' 'nqp' 'nrg2iso' 'nrpe' 'ns-3' 'nsd' 'nsh' 'nsnake' 'nspr' 'nsq' 'nss' 'nsuds' 'ntfs-3g' 'ntl' 'ntopng' 'ntp' 'nu' 'nu-smv' 'nuclei' 'nudoku' 'nuget' 'num-utils' 'numactl' 'numcpp' 'numdiff' 'numpy' 'numpy@1.16' 'nuraft' 'nushell' 'nut' 'nutcracker' 'nuttcp' 'nuvie' 'nuxeo' 'nvc' 'nvchecker' 'nvi' 'nvm' 'nwchem' 'nxengine' 'nyancat' 'nylon' 'nyx' 'nzbget' 'oak' 'oakc' 'oath-toolkit' 'oauth2l' 'oauth2_proxy' 'obfs4proxy' 'objc-codegenutils' 'objc-run' 'objconv' 'objfw' 'observerward' 'ocaml' 'ocaml-findlib' 'ocaml-num' 'ocaml-zarith' 'ocamlbuild' 'oci-cli' 'ocl-icd' 'oclgrind' 'ocp' 'ocproxy' 'ocrad' 'ocrmypdf' 'octant' 'octave' 'octomap' 'octosql' 'ode' 'odin' 'odo' 'odo-dev' 'odpi' 'odt2txt' 'offlineimap' 'oggz' 'ogmtools' 'oh-my-posh' 'oha' 'ohcount' 'ohdear-cli' 'oil' 'oksh' 'okteto' 'ola' 'olsrd' 'omake' 'omega' 'omega-rpg' 'omniorb' 'ompl' 'ondir' 'one-ml' 'onednn' 'onedpl' 'onedrive' 'onefetch' 'onetime' 'oniguruma' 'onioncat' 'onlykey-agent' 'onnxruntime' 'onscripter' 'ooniprobe' 'opa' 'opam' 'open-adventure' 'open-babel' 'open-completion' 'open-image-denoise' 'open-jtalk' 'open-mesh' 'open-mpi' 'open-ocd' 'open-scene-graph' 'open-sp' 'open-tyrian' 'open-zwave' 'open62541' 'openal-soft' 'openalpr' 'openapi-generator' 'openblas' 'opencascade' 'opencbm' 'opencc' 'opencl-headers' 'opencl-icd-loader' 'openclonk' 'opencoarrays' 'opencolorio' 'openconnect' 'opencore-amr' 'opencsg' 'opencv' 'opencv@2' 'opencv@3' 'opendbx' 'opendetex' 'opendht' 'openexr' 'openexr@2' 'openfast' 'openfortivpn' 'openfpgaloader' 'openfst' 'openh264' 'openhmd' 'openimageio' 'openiothub-server' 'openj9' 'openjazz' 'openjdk' 'openjdk@11' 'openjdk@17' 'openjdk@8' 'openjpeg' 'openkim-models' 'openldap' 'openliberty-jakartaee8' 'openliberty-jakartaee9' 'openliberty-microprofile4' 'openliberty-webprofile8' 'openliberty-webprofile9' 'openlibm' 'openmama' 'openmodelica' 'openmotif' 'openmsx' 'openrct2' 'openrtsp' 'opensaml' 'opensc' 'opensearch' 'opensearch-dashboards' 'openshift-cli' 'openslide' 'openslp' 'openssh' 'openssl@1.1' 'openssl@3' 'openstackclient' 'opensubdiv' 'opentelemetry-cpp' 'opentracing-cpp' 'opentsdb' 'openttd' 'openvdb' 'openvi' 'openvpn' 'operator-sdk' 'ophcrack' 'optipng' 'opus' 'opus-tools' 'opusfile' 'oq' 'or-tools' 'oras' 'orbit' 'orc' 'orc-tools' 'orgalorg' 'organize-tool' 'orientdb' 'ormolu' 'orocos-kdl' 'ortp' 'ory-hydra' 'osc' 'osc-cli' 'oscats' 'osi' 'osinfo-db' 'osinfo-db-tools' 'osm' 'osm-gps-map' 'osm-pbf' 'osm2pgrouting' 'osm2pgsql' 'osmcoastline' 'osmfilter' 'osmium-tool' 'osmosis' 'ospray' 'osqp' 'osrm-backend' 'osslsigncode' 'ossp-uuid' 'osx-cpu-temp' 'osxutils' 'otf2' 'otf2bdf' 'ots' 'ott' 'ouch' 'overdrive' 'overmind' 'owamp' 'owfs' 'ox' 'oxipng' 'oysttyer' 'p0f' 'p11-kit' 'p7zip' 'pacapt' 'pachi' 'packer' 'packer-completion' 'packetbeat' 'packetq' 'packmol' 'packr' 'pacman4console' 'pacmc' 'pacparser' 'pacvim' 'page' 'pagmo' 'pakchois' 'paket' 'pam-reattach' 'pam-u2f' 'pam_yubico' 'pandoc' 'pandoc-crossref' 'pandoc-include-code' 'pandoc-plot' 'pandocomatic' 'pango' 'pangomm' 'pangomm@2.46' 'paperkey' 'paps' 'par' 'par2' 'parallel' 'parallel-hashmap' 'pari' 'pari-elldata' 'pari-galdata' 'pari-galpol' 'pari-seadata' 'pari-seadata-big' 'parliament' 'parquet-cli' 'parquet-tools' 'parrot' 'partio' 'pass' 'pass-git-helper' 'pass-otp' 'passenger' 'passpie' 'passwdqc' 'pastebinit' 'pastel' 'patchelf' 'patchutils' 'pax' 'pax-construct' 'pax-runner' 'payara' 'payload-dumper-go' 'pazpar2' 'pbc' 'pbc-sig' 'pbzip2' 'pc6001vx' 'pcal' 'pcalc' 'pcapplusplus' 'pcb' 'pcb2gcode' 'pce' 'pcl' 'pcp' 'pcre' 'pcre++' 'pcre2' 'pcsc-lite' 'pdal' 'pdf-redact-tools' 'pdf2djvu' 'pdf2htmlex' 'pdf2image' 'pdf2json' 'pdf2svg' 'pdfcpu' 'pdfcrack' 'pdfgrep' 'pdfpc' 'pdfsandwich' 'pdftilecut' 'pdftk-java' 'pdftohtml' 'pdftoipe' 'pdm' 'pdns' 'pdnsd' 'pdnsrec' 'pdsh' 'peco' 'peg' 'peg-markdown' 'pegtl' 'pelikan' 'perceptualdiff' 'percol' 'percona-server' 'percona-toolkit' 'percona-xtrabackup' 'periscope' 'perkeep' 'perl' 'perl-build' 'perl@5.18' 'perltidy' 'peru' 'petsc' 'petsc-complex' 'pev' 'pex' 'pfetch' 'pgbadger' 'pgbouncer' 'pgcli' 'pgdbf' 'pget' 'pgformatter' 'pgloader' 'pgpdump' 'pgpool-ii' 'pgroonga' 'pgrouting' 'pgtoolkit' 'pgtune' 'pgweb' 'pgxnclient' 'pg_cron' 'pg_partman' 'pg_top' 'phive' 'phoon' 'phoronix-test-suite' 'php' 'php-code-sniffer' 'php-cs-fixer' 'php-cs-fixer@2' 'php@7.2' 'php@7.3' 'php@7.4' 'php@8.0' 'phpbrew' 'phplint' 'phpmd' 'phpmyadmin' 'phpstan' 'phpunit' 'phrase-cli' 'physfs' 'pianobar' 'pianod' 'picard-tools' 'picat' 'pick' 'pickle' 'picoc' 'picocom' 'pict' 'pidcat' 'pidgin' 'pidof' 'pig' 'pigz' 'pike' 'piknik' 'pillar' 'pillow' 'pilosa' 'pinboard-notes-backup' 'pinentry' 'pinentry-mac' 'pinfo' 'pinot' 'pint' 'pioneer' 'pioneers' 'pip-audit' 'pip-completion' 'pip-tools' 'pipe-rename' 'pipebench' 'pipemeter' 'pipenv' 'pipes-sh' 'pipgrip' 'pipx' 'pit' 'pius' 'pixie' 'pixiewps' 'pixman' 'pixz' 'pjproject' 'pk' 'pkcrack' 'pkcs11-helper' 'pkcs11-tools' 'pkg-config' 'pkg-config-wrapper' 'pkgconf' 'pkgdiff' 'pkger' 'pktanon' 'pla' 'planck' 'plank' 'plantuml' 'platformio' 'platypus' 'plenv' 'plod' 'ploticus' 'plotutils' 'plow' 'plowshare' 'plplot' 'plustache' 'plzip' 'pmccabe' 'pmd' 'pmdmini' 'pms' 'pnetcdf' 'png++' 'png2ico' 'pngcheck' 'pngcrush' 'pngnq' 'pngpaste' 'pngquant' 'pnpm' 'po4a' 'poac' 'pocl' 'poco' 'pocsuite3' 'pod2man' 'podiff' 'podman' 'podman-compose' 'podofo' 'poetry' 'points2grid' 'pokerstove' 'polipo' 'polyglot' 'polyml' 'polynote' 'pony-stable' 'ponyc' 'ponysay' 'popeye' 'poppler' 'poppler-qt5' 'popt' 'portaudio' 'portmidi' 'posh' 'poster' 'postgis' 'postgraphile' 'postgresql@10' 'postgresql@11' 'postgresql@12' 'postgresql@13' 'postgresql@14' 'postgresql@9.4' 'postgresql@9.5' 'postgresql@9.6' 'postgrest' 'potrace' 'povray' 'pow' 'powerline-go' 'powerman' 'powerman-dockerize' 'ppl' 'pprint' 'ppss' 'ppsspp' 'pqiv' 'pre-commit' 'precomp' 'predictionio' 'prefixsuffix' 'premake' 'prestd' 'prestodb' 'prettier' 'prettyping' 'primecount' 'primer3' 'primesieve' 'principalmapper' 'prips' 'privoxy' 'procmail' 'procps' 'procs' 'proctools' 'procyon-decompiler' 'prodigal' 'profanity' 'proftpd' 'progress' 'proguard' 'proj' 'proj@7' 'projectm' 'prometheus' 'prometheus-cpp' 'promtail' 'proof-general' 'proper' 'proselint' 'proteinortho' 'protobuf' 'protobuf-c' 'protobuf@3' 'protobuf@3.6' 'protoc-gen-go' 'protoc-gen-go-grpc' 'protoc-gen-gogo' 'protoc-gen-gogofaster' 'protoc-gen-grpc-web' 'prototool' 'prover9' 'proxychains-ng' 'proxytunnel' 'prql-compiler' 'prr' 'ps2eps' 'psalm' 'psc-package' 'psftools' 'psgrep' 'pspg' 'psql2csv' 'psqlodbc' 'pssh' 'pstoedit' 'pstree' 'psutils' 'ptex' 'pth' 'ptpython' 'ptunnel' 'publish' 'pueue' 'puf' 'pugixml' 'pulledpork' 'pulp' 'pulseaudio' 'pulumi' 'pumba' 'pup' 'pure' 'pure-ftpd' 'purescript' 'purescript-language-server' 'pushpin' 'putmail' 'putmail-queue' 'putty' 'puzzles' 'pv' 'pwgen' 'pwnat' 'pwncat' 'pwntools' 'pwsafe' 'px' 'py-spy' 'py2cairo' 'py3cairo' 'pybind11' 'pycodestyle' 'pydocstyle' 'pyenv' 'pyenv-ccache' 'pyenv-pip-migrate' 'pyenv-virtualenv' 'pyenv-virtualenvwrapper' 'pyenv-which-ext' 'pyflow' 'pygitup' 'pygments' 'pygobject3' 'pyinstaller' 'pyinvoke' 'pylint' 'pymol' 'pympress' 'pymupdf' 'pyoxidizer' 'pypy' 'pypy3' 'pyqt' 'pyqt-builder' 'pyqt@5' 'pyright' 'pyside' 'pyside@2' 'python-build' 'python-launcher' 'python-markdown' 'python-tabulate' 'python-tk@3.10' 'python-tk@3.9' 'python-typing-extensions' 'python-yq' 'python@3.10' 'python@3.7' 'python@3.8' 'python@3.9' 'pythran' 'pytouhou' 'pyvim' 'pywhat' 'pyyaml' 'q' 'qalculate-gtk' 'qbe' 'qbs' 'qca' 'qcachegrind' 'qcli' 'qd' 'qdae' 'qdbm' 'qemu' 'qhull' 'qjackctl' 'qjson' 'qmmp' 'qodem' 'qp' 'qpdf' 'qpid-proton' 'qpm' 'qprint' 'qrcp' 'qrencode' 'qrupdate' 'qscintilla2' 'qsoas' 'qstat' 'qsv' 'qt' 'qt-libiodbc' 'qt-mariadb' 'qt-mysql' 'qt-percona-server' 'qt-postgresql' 'qt-unixodbc' 'qt@5' 'qtads' 'qtfaststart' 'qthreads' 'qtkeychain' 'quantlib' 'quasi88' 'quazip' 'questdb' 'quex' 'quick-lint-js' 'quickjs' 'quicktype' 'quill' 'quilt' 'quilt-installer' 'quotatool' 'quran' 'quvi' 'qwt' 'qwt-qt5' 'qxmpp' 'r' 'r3' 'rabbitmq' 'rabbitmq-c' 'rack' 'radamsa' 'radare2' 'ragel' 'rails-completion' 'railway' 'rain' 'rainbarf' 'rake-completion' 'rakudo' 'rakudo-star' 'rancher-cli' 'rancher-compose' 'rancid' 'randomize-lines' 'range-v3' 'range2cidr' 'ranger' 'rapidjson' 'raptor' 'rargs' 'rarian' 'rasqal' 'ratfor' 'rats' 'rav1e' 'rawgl' 'raxml-ng' 'raylib' 'rbenv' 'rbenv-aliases' 'rbenv-binstubs' 'rbenv-bundle-exec' 'rbenv-bundler' 'rbenv-bundler-ruby-version' 'rbenv-chefdk' 'rbenv-communal-gems' 'rbenv-ctags' 'rbenv-default-gems' 'rbenv-gemset' 'rbenv-vars' 'rbspy' 'rbtools' 'rbw' 'rc' 'rclone' 'rcm' 'rcs' 'rdate' 'rdb' 'rdesktop' 'rdfind' 'rdiff-backup' 'rdkit' 'rds-command-line-tools' 'rdup' 're-flex' 're2' 're2c' 'react-native-cli' 'readline' 'readosm' 'reattach-to-user-namespace' 'reaver' 'rebar' 'rebar3' 'recode' 'recon-ng' 'recoverjpeg' 'recutils' 'red-tldr' 'redex' 'redir' 'redis' 'redis-leveldb' 'redis@3.2' 'redis@4.0' 'redis@6.2' 'redland' 'redo' 'redpen' 'redshift' 'redstore' 'reg' 'regex-opt' 'regina-rexx' 'regipy' 'regldg' 'regula' 'release-it' 'rem' 'remake' 'remarshal' 'remctl' 'remind' 'reminiscence' 'ren' 'rename' 'renameutils' 'reop' 'reorder-python-imports' 'repl' 'repo' 'reposurgeon' 'reprepro' 'reproc' 'req' 'reshape' 'rest-shell' 'restic' 'restund' 'restview' 'resty' 'rethinkdb' 'revive' 'rex' 'rfcmarkup' 'rfcstrip' 'rgbds' 'rgf' 'rgxg' 'rhash' 'rhino' 'rhit' 'rich-cli' 'riemann' 'riemann-client' 'riff' 'rig' 'rinetd' 'ringojs' 'ripgrep' 'ripgrep-all' 'ripmime' 'ripsecrets' 'rizin' 'rke' 'rkflashtool' 'rkhunter' 'rlog' 'rlwrap' 'rm-improved' 'rmate' 'rmcast' 'rmlint' 'rmw' 'rnv' 'roapi' 'robodoc' 'robot-framework' 'robotfindskitten' 'rocksdb' 'rofs-filtered' 'rogue' 'roll' 'rolldice' 'rollup' 'rom-tools' 'ronn' 'root' 'rosa-cli' 'rospo' 'roswell' 'roundup' 'rover' 'rp' 'rpcgen' 'rpg' 'rpg-cli' 'rpki-client' 'rpl' 'rpm' 'rpm2cpio' 'rqlite' 'rrdtool' 'rsc_2fa' 'rslint' 'rsnapshot' 'rssh' 'rsstail' 'rst-lint' 'rswift' 'rsync' 'rsync-time-backup' 'rsyslog' 'rtags' 'rtaudio' 'rtf2latex2e' 'rtl_433' 'rtmidi' 'rtmpdump' 'rtorrent' 'rtptools' 'rttr' 'rtv' 'rubberband' 'ruby' 'ruby-build' 'ruby-completion' 'ruby-install' 'ruby@2.4' 'ruby@2.5' 'ruby@2.6' 'ruby@2.7' 'ruby@3.0' 'rubyfmt' 'run' 'runcocoa' 'rune' 'runit' 'rure' 'rush' 'rush-parallel' 'rust' 'rust-analyzer' 'rustc-completion' 'rustfmt' 'rustscan' 'rustup-init' 'rxvt-unicode' 'ry' 'rzip' 's-lang' 's-nail' 's-search' 's2geometry' 's2n' 's3-backer' 's3cmd' 's3fs' 's3ql' 's4cmd' 's6' 'safe-rm' 'sagittarius-scheme' 'sail' 'saldl' 'salt' 'salt-lint' 'saltwater' 'samba' 'saml2aws' 'sampler' 'samtools' 'samurai' 'sane-backends' 'sassc' 'savana' 'saxon' 'saxon-b' 'sbcl' 'sbjson' 'sblim-sfcc' 'sbt' 'sbt@0.13' 'sbtenv' 'sbuild' 'sc-im' 'sc68' 'scala' 'scala@2.11' 'scala@2.12' 'scala@2.13' 'scalaenv' 'scalapack' 'scalariform' 'scalastyle' 'scale2x' 'scalingo' 'scamper' 'scc' 'sccache' 'scdoc' 'sceptre' 'schema-evolution-manager' 'schemathesis' 'scheme48' 'schroedinger' 'scipy' 'scm-manager' 'scmpuff' 'scons' 'scorecard' 'scotch' 'scour' 'scrcpy' 'screen' 'screenfetch' 'screenresolution' 'scriptcs' 'scrollkeeper' 'scrub' 'scry' 'scrypt' 'scs' 'scummvm' 'scummvm-tools' 'scw' 'scws' 'sd' 'sdb' 'sdcc' 'sdcv' 'sdedit' 'sdf' 'sdl12-compat' 'sdl2' 'sdl2_gfx' 'sdl2_image' 'sdl2_mixer' 'sdl2_net' 'sdl2_sound' 'sdl2_ttf' 'sdlpop' 'sdl_gfx' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_rtf' 'sdl_sound' 'sdl_ttf' 'sdns' 'seal' 'search-that-hash' 'seaweedfs' 'sec' 'securefs' 'seexpr' 'selecta' 'selene' 'selenium-server' 'semgrep' 'semtag' 'sendemail' 'sentencepiece' 'seqkit' 'seqtk' 'ser2net' 'serd' 'serf' 'serialosc' 'sersniff' 'serve' 'serveit' 'serverless' 'servus' 'setweblocthumb' 'sevenzip' 'sextractor' 'sf-pwgen' 'sfcgal' 'sfk' 'sfml' 'sfst' 'sftpgo' 'sgn' 'sgr' 'sgrep' 'sha1dc' 'sha2' 'sha3sum' 'shaderc' 'shadowenv' 'shadowsocks-libev' 'shadowsocks-rust' 'shairport' 'shairport-sync' 'shakespeare' 'shallow-backup' 'shapelib' 'shared-mime-info' 'shc' 'sheldon' 'shellcheck' 'shellharden' 'shellinabox' 'shellshare' 'shelltestrunner' 'shellz' 'shfmt' 'shibboleth-sp' 'ship' 'shivavg' 'shmcat' 'shml' 'shmux' 'shntool' 'shogun' 'showkey' 'shpotify' 'shtool' 'shtools' 'shunit2' 'shyaml' 'sic' 'sickle' 'siege' 'sift' 'signal-cli' 'signify-osx' 'sigrok-cli' 'sile' 'silicon' 'silk' 'simde' 'simdjson' 'simg2img' 'simgrid' 'simh' 'simple-amqp-client' 'simple-mtpfs' 'simple-obfs' 'simple-scan' 'simple-tiles' 'simutrans' 'since' 'singular' 'singularity' 'sip' 'sipcalc' 'sipp' 'sipsak' 'siril' 'sisc-scheme' 'sispmctl' 'six' 'sjk' 'sk' 'skaffold' 'skafos' 'ski' 'skinny' 'skktools' 'skopeo' 'skylighting' 'skymaker' 'sl' 'slackcat' 'slacknimate' 'slashem' 'sleef' 'sleepwatcher' 'sleuthkit' 'slides' 'slimerjs' 'slirp4netns' 'slither-analyzer' 'sloc' 'sloccount' 'slowhttptest' 'slrn' 'slugify' 'slurm' 'smake' 'smali' 'smap' 'smartmontools' 'smartypants' 'smimesign' 'smlpkg' 'smpeg' 'smpeg2' 'smu' 'smug' 'sn0int' 'snag' 'snakemake' 'snap' 'snap-telemetry' 'snap7' 'snapcast' 'snapcraft' 'snappy' 'snappystream' 'snapraid' 'sng' 'sngrep' 'sniffer' 'sniffglue' 'snobol4' 'snort' 'snow' 'snowball' 'snowflake' 'snownews' 'snowpack' 'sntop' 'snzip' 'so' 'soapyrtlsdr' 'soapysdr' 'socat' 'soci' 'sofia-sip' 'softhsm' 'solana' 'solargraph' 'solarus' 'solc-select' 'solid' 'solidity' 'sollya' 'solr' 'solr@7.7' 'somagic' 'somagic-tools' 'sonar-completion' 'sonar-scanner' 'sonarqube' 'sonarqube-lts' 'sonic' 'sonobuoy' 'sophus' 'sops' 'sord' 'sound-touch' 'source-highlight' 'source-to-image' 'sourcedocs' 'sourcekitten' 'sourcery' 'sox' 'spaceinvaders-go' 'spaceman-diff' 'spaceship' 'spack' 'spades' 'spago' 'spandsp' 'spark' 'sparkey' 'sparse' 'spatialindex' 'spatialite-gui' 'spatialite-tools' 'spawn-fcgi' 'spdlog' 'spdx-sbom-generator' 'spdylay' 'spectra' 'speech-tools' 'speedread' 'speedtest' 'speedtest-cli' 'speex' 'speexdsp' 'sphinx' 'sphinx-doc' 'spice-gtk' 'spice-protocol' 'spidermonkey' 'spidermonkey@78' 'spigot' 'spim' 'spin' 'spiped' 'spirv-cross' 'spirv-headers' 'spirv-llvm-translator' 'spirv-tools' 'splint' 'sponge' 'spoof-mac' 'spot' 'spotbugs' 'spotify-tui' 'spotifyd' 'spr' 'spring-completion' 'spring-loaded' 'spring-roo' 'sproxy' 'sql-lint' 'sql-translator' 'sqlancer' 'sqlbench' 'sqlc' 'sqlcipher' 'sqlcmd' 'sqldiff' 'sqlfluff' 'sqlite' 'sqlite-analyzer' 'sqlite-utils' 'sqliteodbc' 'sqlmap' 'sqlparse' 'sqls' 'sqlx-cli' 'sqoop' 'sqsmover' 'sqtop' 'squashfs' 'squashfuse' 'squid' 'squirrel' 'sratom' 'sratoolkit' 'src' 'srecord' 'srt' 'srtp' 'ssdb' 'ssdeep' 'sse2neon' 'ssed' 'ssh-audit' 'ssh-copy-id' 'ssh-permit-a38' 'ssh-vault' 'sshfs' 'sshguard' 'sshs' 'sshtrix' 'sshuttle' 'ssldump' 'sslh' 'ssllabs-scan' 'sslmate' 'sslscan' 'sslsplit' 'sslyze' 'ssss' 'sstp-client' 'st' 'stanc3' 'standardese' 'stanford-corenlp' 'stanford-ner' 'stanford-parser' 'star' 'starship' 'startup-notification' 'staticcheck' 'statik' 'statix' 'stdman' 'stella' 'stellar-core' 'stencil' 'step' 'stern' 'stgit' 'stk' 'stlink' 'stm32flash' 'stockfish' 'stoken' 'stolon' 'stone' 'stone-soup' 'storj-uplink' 'storm' 'stormlib' 'stormssh' 'stormssh-completion' 'stout' 'stow' 'stp' 'strace' 'streamlink' 'streamripper' 'stress' 'stress-ng' 'strongswan' 'structurizr-cli' 'stubby' 'stunnel' 'stuntman' 'style-check' 'stylish-haskell' 'stylua' 'sub2srt' 'subfinder' 'subliminal' 'subnetcalc' 'subversion' 'subversion@1.8' 'suil' 'suite-sparse' 'sundials' 'superlu' 'supermodel' 'supertux' 'supervisor' 'surfraw' 'suricata' 'svg2pdf' 'svg2png' 'svgbob' 'svgcleaner' 'svgo' 'svt-av1' 'svtplay-dl' 'swagger-codegen' 'swagger-codegen@2' 'swagger2markup-cli' 'swaks' 'swfmill' 'swftools' 'swi-prolog' 'swift' 'swift-format' 'swift-protobuf' 'swift-sh' 'swiftdraw' 'swiftformat' 'swiftgen' 'swiftlint' 'swiftplantuml' 'swig' 'swig@3' 'swimat' 'switch-lan-play' 'switchaudio-osx' 'sword' 'swtpm' 'sxiv' 'syck' 'sylpheed' 'symengine' 'syncthing' 'sync_gateway' 'synergy-core' 'synfig' 'synscan' 'syntaxerl' 'sysbench' 'sysdig' 'sysstat' 'systemc' 'systemd' 'sz81' 't-completion' 't-rec' 't1lib' 't1utils' 'ta-lib' 'tag' 'taglib' 'tagref' 'tailor' 'tailscale' 'takt' 'taktuk' 'tal' 'talisman' 'talloc' 'tanka' 'taplo' 'tarantool' 'tarlz' 'tarsnap' 'tarsnap-gui' 'tarsnapper' 'task' 'task-spooler' 'taskd' 'taskell' 'tasksh' 'taskwarrior-tui' 'tass64' 'tbb' 'tbb@2020' 'tbox' 'tcc' 'tccutil' 'tcl-tk' 'tclap' 'tcpdump' 'tcpflow' 'tcping' 'tcpkali' 'tcpreplay' 'tcpsplit' 'tcpstat' 'tcptrace' 'tcptraceroute' 'tcptunnel' 'tcsh' 'tctl' 'td' 'tdkjs' 'tdlib' 'tea' 'tealdeer' 'teamookla/speedtest/speedtest' 'teapot' 'tectonic' 'tee-clc' 'teem' 'teensy_loader_cli' 'tektoncd-cli' 'teku' 'teleconsole' 'telegraf' 'telegram-cli' 'teleport' 'teller' 'telnet' 'telnetd' 'template-glib' 'temporal_tables' 'tendermint' 'tengo' 'tenyr' 'tepl' 'tere' 'term' 'termbox' 'termcolor' 'terminal-notifier' 'terminalimageviewer' 'terminator' 'termius' 'termrec' 'termshare' 'termshark' 'termtosvg' 'terracognita' 'terraform' 'terraform-docs' 'terraform-inventory' 'terraform-ls' 'terraform-lsp' 'terraform-provider-libvirt' 'terraform-rover' 'terraform@0.11' 'terraform@0.12' 'terraform@0.13' 'terraformer' 'terraforming' 'terraform_landscape' 'terragrunt' 'terrahelp' 'terrahub' 'terramate' 'terrascan' 'tesseract' 'tesseract-lang' 'testdisk' 'testkube' 'testssl' 'texapp' 'texi2html' 'texinfo' 'texlab' 'texlive' 'texmath' 'textidote' 'textql' 'tfel' 'tfenv' 'tfk8s' 'tflint' 'tfmigrate' 'tfproviderlint' 'tfschema' 'tfsec' 'tfupdate' 'tgenv' 'tgif' 'tgui' 'thanos' 'thefuck' 'theharvester' 'theora' 'the_platinum_searcher' 'the_silver_searcher' 'thors-serializer' 'thrax' 'threadweaver' 'threemux' 'thrift' 'thrift@0.9' 'thrulay' 'tidy-html5' 'tidy-viewer' 'tidyp' 'tiff2png' 'tig' 'tiger-vnc' 'tika' 'tile38' 'tilt' 'timedog' 'timelimit' 'timewarrior' 'timg' 'timidity' 'tin' 'tinc' 'tintin' 'tiny-fugue' 'tinycdb' 'tinyproxy' 'tinysearch' 'tinysvm' 'tinyxml' 'tinyxml2' 'tio' 'tippecanoe' 'titan-server' 'titlecase' 'tivodecode' 'tkdiff' 'tldr' 'tlsx' 'tlx' 'tm' 'tmate' 'tmpreaper' 'tmpwatch' 'tmux' 'tmux-mem-cpu-load' 'tmux-xpanes' 'tmuxinator' 'tmuxinator-completion' 'tmuxp' 'tmx' 'tnef' 'tnftp' 'tnftpd' 'toast' 'todo-txt' 'todoman' 'tofrodos' 'toilet' 'tokei' 'tokyo-cabinet' 'tokyo-dystopia' 'tomcat' 'tomcat-native' 'tomcat@7' 'tomcat@8' 'tomcat@9' 'tomee-plume' 'tomee-plus' 'tomee-webprofile' 'toml-test' 'toml11' 'toot' 'topgit' 'topgrade' 'tor' 'torchvision' 'torsocks' 'tox' 'toxcore' 'tpl' 'tpp' 'trace2html' 'tracebox' 'tracker' 'tractorgen' 'tradcpp' 'trader' 'traefik' 'traefik@1' 'trafficserver' 'trafshow' 'traildb' 'trailscraper' 'transcrypt' 'translate-shell' 'translate-toolkit' 'transmission-cli' 'trash' 'trash-cli' 'travis' 'tre' 'tre-command' 'trec_eval' 'tree' 'tree-sitter' 'treecc' 'treefmt' 'treefrog' 'tremor-runtime' 'trezor-agent' 'triangle' 'trimage' 'trino' 'triton' 'trivy' 'trojan-go' 'truecrack' 'truffle' 'truncate' 'trunk' 'trzsz' 'trzsz-go' 'tsduck' 'tssh' 'tsung' 'tta' 'ttdl' 'ttf2eot' 'ttf2pt1' 'ttfautohint' 'tth' 'ttmath' 'tty-clock' 'tty-share' 'tty-solitaire' 'ttyd' 'ttygif' 'ttyplot' 'ttyrec' 'tuc' 'tundra' 'tunnel' 'tuntox' 'tup' 'tvnamer' 'twarc' 'tweak' 'twemcache' 'twine-pypi' 'two-lame' 'twoping' 'twtxt' 'twty' 'txr' 'txt2tags' 'tygo' 'typedb' 'typescript' 'typespeed' 'tz' 'u-boot-tools' 'uade' 'ubertooth' 'ucg' 'uchardet' 'ucl' 'ucloud' 'ucommon' 'ucon64' 'ucspi-tcp' 'udis86' 'udptunnel' 'udpxy' 'udunits' 'ufraw' 'uftp' 'uftrace' 'uggconv' 'ugit' 'ugrep' 'uhd' 'ultralist' 'um' 'umlet' 'umple' 'unac' 'unar' 'unarj' 'unbound' 'uncrustify' 'ungit' 'uni' 'uni2ascii' 'unibilium' 'unicorn' 'unifdef' 'unison' 'unisonlang' 'unittest' 'unittest-cpp' 'uniutils' 'universal-ctags' 'unixodbc' 'unnethack' 'unoconv' 'unp' 'unpaper' 'unrtf' 'unshield' 'unum' 'unyaffs' 'unzip' 'up' 'upscaledb' 'uptimed' 'uptoc' 'upx' 'urdfdom' 'urdfdom_headers' 'urh' 'uriparser' 'urlview' 'urlwatch' 'uru' 'urweb' 'usb.ids' 'usbredir' 'usbutils' 'userspace-rcu' 'utf8cpp' 'utf8proc' 'uthash' 'util-linux' 'util-macros' 'utimer' 'uudeview' 'uutils-coreutils' 'uutils-findutils' 'uuu' 'uwsgi' 'v' 'v2ray' 'v2ray-plugin' 'v8' 'v8@3.15' 'vagrant-completion' 'vala' 'vala-language-server' 'valabind' 'vale' 'valgrind' 'vamp-plugin-sdk' 'vapor' 'vapoursynth' 'vapoursynth-imwri' 'vapoursynth-ocr' 'vapoursynth-sub' 'varnish' 'vassh' 'vault' 'vault-cli' 'vaulted' 'vbindiff' 'vc' 'vc4asm' 'vcdimager' 'vcftools' 'vcluster' 'vcpkg' 'vcprompt' 'vcs' 'vcsh' 'vde' 'vdirsyncer' 'veclibfort' 'vectorscan' 'vecx' 'vegeta' 'velero' 'vera++' 'verapdf' 'vercel-cli' 'verilator' 'vermin' 'vert' 'vert.x' 'vespa-cli' 'vf' 'vfuse' 'vgmstream' 'vgrep' 'vice' 'viddy' 'viennacl' 'viewvc' 'vifm' 'vile' 'vilistextum' 'vim' 'vimpager' 'vimpc' 'vineyard' 'vint' 'vip' 'vips' 'virgil' 'virt-manager' 'virtualenv' 'virtualenvwrapper' 'virtualhost.sh' 'virtualpg' 'virtuoso' 'virustotal-cli' 'vis' 'visionmedia-watch' 'visitors' 'visp' 'vit' 'vite' 'vitess' 'vitetris' 'viu' 'vivid' 'vkectl' 'vlang' 'vlmcsd' 'vmdktool' 'vmtouch' 'vncsnapshot' 'vnstat' 'vnu' 'volatility' 'voldemort' 'volk' 'volt' 'volta' 'vorbis-tools' 'vorbisgain' 'voro++' 'vowpal-wabbit' 'vpcs' 'vpn-slice' 'vramsteg' 'vroom' 'vrpn' 'vsce' 'vsearch' 'vsftpd' 'vsh' 'vstr' 'vsts-cli' 'vtable-dumper' 'vtclock' 'vte3' 'vtk' 'vtk@8.2' 'vttest' 'vue-cli' 'vulkan-headers' 'vulkan-loader' 'vultr' 'vulture' 'w-calc' 'w3m' 'wabt' 'waffle' 'wagyu' 'wait_on' 'wakatime-cli' 'wakeonlan' 'wal2json' 'walkmod' 'wallpaper' 'wandio' 'wangle' 'waon' 'wapm' 'wartremover' 'wasm-micro-runtime' 'wasm-pack' 'wasm-tools' 'wasm3' 'wasmer' 'wasmtime' 'watch' 'watch-sim' 'watchexec' 'watchman' 'watson' 'wavpack' 'wayland' 'wayland-protocols' 'waypoint' 'wb32-dfu-updater_cli' 'wbox' 'wcslib' 'wdc' 'wdfs' 'wdiff' 'weasyprint' 'weaver' 'web100clt' 'webalizer' 'webarchiver' 'webdis' 'webfs' 'webhook' 'webify' 'webkit2png' 'webkitgtk' 'webp' 'webp-pixbuf-loader' 'webpack' 'websocat' 'websocketd' 'websocketpp' 'webtorrent-cli' 'weechat' 'weggli' 'wego' 'weighttp' 'wellington' 'wemux' 'werf' 'west' 'wgcf' 'wget' 'wgetpaste' 'whalebrew' 'whatmask' 'whatmp3' 'when' 'whistle' 'whois' 'widelands' 'wifi-password' 'wiggle' 'wiiuse' 'wiki' 'wildfly-as' 'wildmidi' 'willgit' 'wimlib' 'winetricks' 'winexe' 'wiredtiger' 'wireguard-go' 'wireguard-tools' 'wiremock-standalone' 'wireshark' 'wirouter_keyrec' 'with-readline' 'wla-dx' 'wllvm' 'wmctrl' 'woff2' 'wolfmqtt' 'wolfssl' 'woob' 'woof' 'wordgrinder' 'wordle' 'wordnet' 'wordplay' 'wownero' 'wp-cli' 'wp-cli-completion' 'wput' 'wrangler' 'wren' 'wren-cli' 'write-good' 'writerperfect' 'wrk' 'wrk-trello' 'wsk' 'wskdeploy' 'wslay' 'wtf' 'wtfutil' 'wumpus' 'wv' 'wv2' 'wwwoffle' 'wxmaxima' 'wxpython' 'wxwidgets' 'wxwidgets@3.0' 'wy60' 'x11vnc' 'x264' 'x265' 'x3270' 'x86_64-elf-binutils' 'x86_64-elf-gcc' 'x86_64-elf-gdb' 'x86_64-linux-gnu-binutils' 'xa' 'xalan-c' 'xapian' 'xaric' 'xauth' 'xbee-comm' 'xbitmaps' 'xboard' 'xcb-proto' 'xcb-util' 'xcb-util-cursor' 'xcb-util-image' 'xcb-util-keysyms' 'xcb-util-renderutil' 'xcb-util-wm' 'xcbeautify' 'xcenv' 'xcinfo' 'xclip' 'xclogparser' 'xcode-kotlin' 'xcodegen' 'xcproj' 'xcprojectlint' 'xctesthtmlreport' 'xctool' 'xcv' 'xdelta' 'xdg-ninja' 'xdot' 'xdotool' 'xdpyinfo' 'xerces-c' 'xfig' 'xgboost' 'xh' 'xhyve' 'xidel' 'xinput' 'xkbcomp' 'xkcd' 'xkeyboardconfig' 'xlearn' 'xlispstat' 'xlslib' 'xmake' 'xml-coreutils' 'xml-security-c' 'xml-tooling-c' 'xml2' 'xmlcatmgr' 'xmlformat' 'xmlrpc-c' 'xmlsectool' 'xmlsh' 'xmlstarlet' 'xmlto' 'xmltoman' 'xmount' 'xmp' 'xmrig' 'xonsh' 'xorgproto' 'xorgrgb' 'xorriso' 'xpa' 'xpdf' 'xpipe' 'xplanet' 'xplr' 'xqilla' 'xray' 'xrick' 'xrootd' 'xsane' 'xsd' 'xsel' 'xshogi' 'xsimd' 'xsv' 'xsw' 'xtensor' 'xterm' 'xtitle' 'xtrans' 'xvid' 'xwin' 'xxh' 'xxhash' 'xz' 'yacas' 'yadm' 'yaegi' 'yaf' 'yafc' 'yajl' 'yamale' 'yamcha' 'yamdi' 'yaml-cpp' 'yaml-language-server' 'yamllint' 'yank' 'yapf' 'yara' 'yarn' 'yarn-completion' 'yash' 'yasm' 'yaws' 'yaz' 'yaze-ag' 'yazpp' 'yconalyzer' 'ydcv' 'ydiff' 'yelp-tools' 'yeti' 'yetris' 'yh' 'yj' 'ykclient' 'ykdl' 'ykman' 'ykneomgr' 'ykpers' 'yle-dl' 'yorkie' 'yosys' 'you-get' 'youtube-dl' 'youtube-dlc' 'youtubedr' 'youtubeuploader' 'yq' 'yt-dlp' 'yubico-piv-tool' 'yubikey-agent' 'yuicompressor' 'yydecode' 'z' 'z.lua' 'z3' 'z80asm' 'z80dasm' 'zabbix' 'zabbix-cli' 'zanata-client' 'zbackup' 'zbar' 'zbctl' 'zboy' 'zebra' 'zeek' 'zelda-roth-se' 'zellij' 'zenith' 'zenity' 'zero-install' 'zeromq' 'zet' 'zig' 'zile' 'zim' 'zimg' 'zinc' 'zinit' 'zint' 'zip' 'zita-convolver' 'zk' 'zlib' 'zlib-ng' 'zlog' 'zmap' 'zmqpp' 'znapzend' 'znc' 'zola' 'zookeeper' 'zopfli' 'zorba' 'zork' 'zoro' 'zoxide' 'zpaq' 'zplug' 'zrepl' 'zsdx' 'zsh' 'zsh-async' 'zsh-autosuggestions' 'zsh-completions' 'zsh-fast-syntax-highlighting' 'zsh-git-prompt' 'zsh-history-substring-search' 'zsh-lovers' 'zsh-navigation-tools' 'zsh-syntax-highlighting' 'zsh-vi-mode' 'zsh-you-should-use' 'zshdb' 'zssh' 'zstd' 'zsxd' 'zsync' 'zurl' 'zx' 'zxcc' 'zydis' 'zyre' 'zzuf' 'zzz' -EO:list -)}"} ) diff --git a/zsh-macos/.config/zsh-macos/.zcompdump b/zsh-macos/.config/zsh-macos/.zcompdump deleted file mode 100644 index 84e1f84..0000000 --- a/zsh-macos/.config/zsh-macos/.zcompdump +++ /dev/null @@ -1,1983 +0,0 @@ -#files: 936 version: 5.8.1 - -_comps=( -'-' '_precommand' -'-array-value-' '_value' -'-assign-parameter-' '_assign' -'-brace-parameter-' '_brace_parameter' -'-command-' '_autocd' -'-command-line-' '_normal' -'-condition-' '_condition' -'-default-' '_default' -'-equal-' '_equal' -'-first-' '_first' -'-math-' '_math' -'-parameter-' '_parameter' -'-redirect-' '_redirect' -'-redirect-,-default-,-default-' '_files' -'-redirect-,<,bunzip2' '_bzip2' -'-redirect-,<,bzip2' '_bzip2' -'-redirect-,<,compress' '_compress' -'-redirect-,<,gunzip' '_gzip' -'-redirect-,<,gzip' '_gzip' -'-redirect-,<,uncompress' '_compress' -'-redirect-,<,unxz' '_xz' -'-redirect-,<,xz' '_xz' -'-redirect-,>,bzip2' '_bzip2' -'-redirect-,>,compress' '_compress' -'-redirect-,>,gzip' '_gzip' -'-redirect-,>,xz' '_xz' -'-subscript-' '_subscript' -'-tilde-' '_tilde' -'-value-' '_value' -'-value-,-default-,-command-' '_zargs' -'-value-,-default-,-default-' '_value' -'-value-,ADB_TRACE,-default-' '_adb' -'-value-,ANDROID_LOG_TAGS,-default-' '_adb' -'-value-,ANDROID_SERIAL,-default-' '_adb' -'-value-,ANSIBLE_STDOUT_CALLBACK,-default-' '_ansible' -'-value-,ANT_ARGS,-default-' '_ant' -'-value-,CFLAGS,-default-' '_gcc' -'-value-,CPPFLAGS,-default-' '_gcc' -'-value-,CXXFLAGS,-default-' '_gcc' -'-value-,DISPLAY,-default-' '_x_display' -'-value-,GREP_OPTIONS,-default-' '_grep' -'-value-,GZIP,-default-' '_gzip' -'-value-,LANG,-default-' '_locales' -'-value-,LANGUAGE,-default-' '_locales' -'-value-,LDFLAGS,-default-' '_gcc' -'-value-,LD_DEBUG,-default-' '_ld_debug' -'-value-,LESS,-default-' '_less' -'-value-,LESSCHARSET,-default-' '_less' -'-value-,LOOPDEV_DEBUG,-default-' '_losetup' -'-value-,LPDEST,-default-' '_printers' -'-value-,MPD_HOST,-default' '_mpc' -'-value-,P4CLIENT,-default-' '_perforce' -'-value-,P4MERGE,-default-' '_perforce' -'-value-,P4PORT,-default-' '_perforce' -'-value-,P4USER,-default-' '_perforce' -'-value-,PERLDOC,-default-' '_perldoc' -'-value-,PRINTER,-default-' '_printers' -'-value-,PROMPT,-default-' '_ps1234' -'-value-,PROMPT2,-default-' '_ps1234' -'-value-,PROMPT3,-default-' '_ps1234' -'-value-,PROMPT4,-default-' '_ps1234' -'-value-,PS1,-default-' '_ps1234' -'-value-,PS2,-default-' '_ps1234' -'-value-,PS3,-default-' '_ps1234' -'-value-,PS4,-default-' '_ps1234' -'-value-,RPROMPT,-default-' '_ps1234' -'-value-,RPROMPT2,-default-' '_ps1234' -'-value-,RPS1,-default-' '_ps1234' -'-value-,RPS2,-default-' '_ps1234' -'-value-,SPROMPT,-default-' '_ps1234' -'-value-,TERM,-default-' '_terminals' -'-value-,TERMINFO_DIRS,-default-' '_dir_list' -'-value-,TZ,-default-' '_time_zone' -'-value-,VALGRIND_OPTS,-default-' '_valgrind' -'-value-,WWW_HOME,-default-' '_urls' -'-value-,XML_CATALOG_FILES,-default-' '_xmlsoft' -'-value-,XZ_DEFAULTS,-default-' '_xz' -'-value-,XZ_OPT,-default-' '_xz' -'-vared-' '_in_vared' -'-zcalc-line-' '_zcalc_line' -'.' '_source' -'5g' '_go' -'5l' '_go' -'6g' '_go' -'6l' '_go' -'8g' '_go' -'8l' '_go' -'Mail' '_mail' -'Mosaic' '_webbrowser' -'SuSEconfig' '_SUSEconfig' -'a2dismod' '_a2utils' -'a2dissite' '_a2utils' -'a2enmod' '_a2utils' -'a2ensite' '_a2utils' -'a2ps' '_a2ps' -'aaaa' '_hosts' -'aap' '_aap' -'abcde' '_abcde' -'ack' '_ack' -'ack-grep' '_ack' -'ack-standalone' '_ack' -'ack2' '_ack' -'acpi' '_acpi' -'acpitool' '_acpitool' -'acroread' '_acroread' -'adb' '_adb' -'add-zle-hook-widget' '_add-zle-hook-widget' -'add-zsh-hook' '_add-zsh-hook' -'admin' '_sccs' -'ali' '_mh' -'alias' '_alias' -'amaya' '_webbrowser' -'analyseplugin' '_analyseplugin' -'animate' '_imagemagick' -'anno' '_mh' -'ansible' '_ansible' -'ansible-config' '_ansible' -'ansible-console' '_ansible' -'ansible-doc' '_ansible' -'ansible-galaxy' '_ansible' -'ansible-inventory' '_ansible' -'ansible-playbook' '_ansible' -'ansible-pull' '_ansible' -'ansible-vault' '_ansible' -'ant' '_ant' -'antiword' '_antiword' -'aodh' '_openstack' -'aoss' '_precommand' -'apache2ctl' '_apachectl' -'apachectl' '_apachectl' -'aplay' '_alsa-utils' -'apm' '_apm' -'appletviewer' '_java' -'apropos' '_man' -'apt' '_apt' -'apt-cache' '_apt' -'apt-cdrom' '_apt' -'apt-config' '_apt' -'apt-file' '_apt-file' -'apt-get' '_apt' -'apt-mark' '_apt' -'apt-move' '_apt-move' -'apt-show-versions' '_apt-show-versions' -'aptitude' '_aptitude' -'apvlv' '_pdf' -'arecord' '_alsa-utils' -'arena' '_webbrowser' -'arp' '_arp' -'arping' '_arping' -'asciidoctor' '_asciidoctor' -'asciinema' '_asciinema' -'ash' '_sh' -'at' '_at' -'atq' '_at' -'atrm' '_at' -'attr' '_attr' -'augtool' '_augeas' -'auto-apt' '_auto-apt' -'autoload' '_typeset' -'avahi-browse' '_avahi' -'avahi-browse-domains' '_avahi' -'avahi-resolve' '_avahi' -'avahi-resolve-address' '_avahi' -'avahi-resolve-host-name' '_avahi' -'awk' '_awk' -'axi-cache' '_axi-cache' -'b2sum' '_md5sum' -'barbican' '_openstack' -'base32' '_base64' -'base64' '_base64' -'basename' '_basename' -'bash' '_bash' -'batch' '_at' -'baz' '_baz' -'beadm' '_beadm' -'beep' '_beep' -'bg' '_jobs_bg' -'bibtex' '_bibtex' -'bindkey' '_bindkey' -'bison' '_bison' -'bmake' '_make' -'bogofilter' '_bogofilter' -'bogotune' '_bogofilter' -'bogoutil' '_bogofilter' -'bpython' '_bpython' -'bpython-gtk' '_bpython' -'bpython-urwid' '_bpython' -'bpython2' '_bpython' -'bpython2-gtk' '_bpython' -'bpython2-urwid' '_bpython' -'bpython3' '_bpython' -'bpython3-gtk' '_bpython' -'bpython3-urwid' '_bpython' -'brctl' '_brctl' -'brew' '_brew' -'bsdconfig' '_bsdconfig' -'bsdgrep' '_grep' -'bsdinstall' '_bsdinstall' -'bsdtar' '_tar' -'btdownloadcurses' '_bittorrent' -'btdownloadgui' '_bittorrent' -'btdownloadheadless' '_bittorrent' -'btlaunchmany' '_bittorrent' -'btlaunchmanycurses' '_bittorrent' -'btmakemetafile' '_bittorrent' -'btreannounce' '_bittorrent' -'btrename' '_bittorrent' -'btrfs' '_btrfs' -'bts' '_bts' -'btshowmetainfo' '_bittorrent' -'bttrack' '_bittorrent' -'bug' '_bug' -'buildhash' '_ispell' -'builtin' '_builtin' -'bunzip2' '_bzip2' -'burst' '_mh' -'bzcat' '_bzip2' -'bzegrep' '_grep' -'bzfgrep' '_grep' -'bzgrep' '_grep' -'bzip2' '_bzip2' -'bzip2recover' '_bzip2' -'bzr' '_bzr' -'c++' '_gcc' -'cabal' '_cabal' -'caffeinate' '_caffeinate' -'cal' '_cal' -'calendar' '_calendar' -'cat' '_cat' -'catchsegv' '_precommand' -'cc' '_gcc' -'ccal' '_ccal' -'cd' '_cd' -'cdbs-edit-patch' '_cdbs-edit-patch' -'cdc' '_sccs' -'cdcd' '_cdcd' -'cdr' '_cdr' -'cdrdao' '_cdrdao' -'cdrecord' '_cdrecord' -'ceilometer' '_openstack' -'certtool' '_gnutls' -'cftp' '_twisted' -'chage' '_users' -'chattr' '_chattr' -'chcon' '_chcon' -'chdir' '_cd' -'chflags' '_chflags' -'chfn' '_users' -'chgrp' '_chown' -'chimera' '_webbrowser' -'chkconfig' '_chkconfig' -'chkstow' '_stow' -'chmod' '_chmod' -'chown' '_chown' -'chpass' '_chsh' -'chroot' '_chroot' -'chrt' '_chrt' -'chsh' '_chsh' -'ci' '_rcs' -'cifsiostat' '_sysstat' -'cinder' '_openstack' -'ckeygen' '_twisted' -'cksum' '_cksum' -'clang' '_gcc' -'clang++' '_gcc' -'clay' '_clay' -'clear' '_nothing' -'cloudkitty' '_openstack' -'clusterdb' '_postgresql' -'cmp' '_cmp' -'co' '_rcs' -'code' '_code' -'column' '_column' -'comb' '_sccs' -'combine' '_imagemagick' -'combinediff' '_patchutils' -'comm' '_comm' -'command' '_command' -'comp' '_mh' -'compadd' '_compadd' -'compdef' '_compdef' -'composer' '_composer' -'composer.phar' '_composer' -'composite' '_imagemagick' -'compress' '_compress' -'conch' '_twisted' -'config.status' '_configure' -'configure' '_configure' -'convert' '_imagemagick' -'coreadm' '_coreadm' -'cowsay' '_cowsay' -'cowthink' '_cowsay' -'cp' '_cp' -'cpio' '_cpio' -'cplay' '_cplay' -'cpupower' '_cpupower' -'createdb' '_postgresql' -'createuser' '_postgresql' -'crontab' '_crontab' -'crsh' '_cssh' -'cryptsetup' '_cryptsetup' -'cscope' '_cscope' -'csh' '_sh' -'cssh' '_cssh' -'csup' '_csup' -'cu' '_cu' -'curl' '_curl' -'cut' '_cut' -'cvs' '_cvs' -'cvsup' '_cvsup' -'cygcheck' '_cygcheck' -'cygcheck.exe' '_cygcheck' -'cygpath' '_cygpath' -'cygpath.exe' '_cygpath' -'cygrunsrv' '_cygrunsrv' -'cygrunsrv.exe' '_cygrunsrv' -'cygserver' '_cygserver' -'cygserver.exe' '_cygserver' -'cygstart' '_cygstart' -'cygstart.exe' '_cygstart' -'dak' '_dak' -'darcs' '_darcs' -'dash' '_sh' -'date' '_date' -'dbus-launch' '_dbus' -'dbus-monitor' '_dbus' -'dbus-send' '_dbus' -'dch' '_debchange' -'dchroot' '_dchroot' -'dchroot-dsa' '_dchroot-dsa' -'dconf' '_dconf' -'dcop' '_dcop' -'dcopclient' '_dcop' -'dcopfind' '_dcop' -'dcopobject' '_dcop' -'dcopref' '_dcop' -'dcopstart' '_dcop' -'dcut' '_dcut' -'dd' '_dd' -'debchange' '_debchange' -'debcheckout' '_debcheckout' -'debdiff' '_debdiff' -'debfoster' '_debfoster' -'deborphan' '_deborphan' -'debsign' '_debsign' -'debuild' '_debuild' -'declare' '_typeset' -'defaults' '_defaults' -'delta' '_sccs' -'designate' '_openstack' -'devtodo' '_devtodo' -'df' '_df' -'dhclient' '_dhclient' -'dhclient3' '_dhclient' -'dhcpinfo' '_dhcpinfo' -'dict' '_dict' -'diff' '_diff' -'diff3' '_diff3' -'diffstat' '_diffstat' -'dig' '_dig' -'dillo' '_webbrowser' -'dircmp' '_directories' -'dirs' '_dirs' -'disable' '_disable' -'disown' '_jobs_fg' -'display' '_imagemagick' -'dist' '_mh' -'django-admin' '_django' -'django-admin.py' '_django' -'dkms' '_dkms' -'dladm' '_dladm' -'dlocate' '_dlocate' -'dmake' '_make' -'dmesg' '_dmesg' -'dmidecode' '_dmidecode' -'dnf' '_dnf' -'dnf-2' '_dnf' -'dnf-3' '_dnf' -'doas' '_doas' -'domainname' '_yp' -'dos2unix' '_dos2unix' -'dosdel' '_floppy' -'dosread' '_floppy' -'dpatch-edit-patch' '_dpatch-edit-patch' -'dpkg' '_dpkg' -'dpkg-buildpackage' '_dpkg-buildpackage' -'dpkg-cross' '_dpkg-cross' -'dpkg-deb' '_dpkg' -'dpkg-query' '_dpkg' -'dpkg-reconfigure' '_dpkg' -'dpkg-repack' '_dpkg-repack' -'dpkg-source' '_dpkg_source' -'dput' '_dput' -'drill' '_drill' -'dropdb' '_postgresql' -'dropuser' '_postgresql' -'dsh' '_dsh' -'dtrace' '_dtrace' -'dtruss' '_dtruss' -'du' '_du' -'dumpadm' '_dumpadm' -'dumper' '_dumper' -'dumper.exe' '_dumper' -'dupload' '_dupload' -'dvibook' '_dvi' -'dviconcat' '_dvi' -'dvicopy' '_dvi' -'dvidvi' '_dvi' -'dvipdf' '_dvi' -'dvips' '_dvi' -'dviselect' '_dvi' -'dvitodvi' '_dvi' -'dvitype' '_dvi' -'dwb' '_webbrowser' -'e2label' '_e2label' -'eatmydata' '_precommand' -'ecasound' '_ecasound' -'echotc' '_echotc' -'echoti' '_echoti' -'ed' '_ed' -'egrep' '_grep' -'elfdump' '_elfdump' -'elinks' '_elinks' -'emulate' '_emulate' -'enable' '_enable' -'enscript' '_enscript' -'entr' '_entr' -'env' '_env' -'eog' '_eog' -'epdfview' '_pdf' -'epsffit' '_psutils' -'erb' '_ruby' -'espeak' '_espeak' -'etags' '_etags' -'ethtool' '_ethtool' -'eu-nm' '_nm' -'eu-objdump' '_objdump' -'eu-readelf' '_readelf' -'eu-strings' '_strings' -'eval' '_precommand' -'eview' '_vim' -'evim' '_vim' -'evince' '_evince' -'exec' '_exec' -'expand' '_unexpand' -'explodepkg' '_pkgtool' -'export' '_typeset' -'express' '_webbrowser' -'extcheck' '_java' -'extractres' '_psutils' -'fakeroot' '_fakeroot' -'false' '_nothing' -'fc' '_fc' -'fc-list' '_xft_fonts' -'fc-match' '_xft_fonts' -'fd' '_fd' -'fedit' '_fedit' -'feh' '_feh' -'fetch' '_fetch' -'fetchmail' '_fetchmail' -'ffmpeg' '_ffmpeg' -'fg' '_jobs_fg' -'fgrep' '_grep' -'figlet' '_figlet' -'filterdiff' '_patchutils' -'find' '_find' -'findaffix' '_ispell' -'findmnt' '_findmnt' -'finger' '_finger' -'fink' '_fink' -'firefox' '_mozilla' -'fixdlsrps' '_psutils' -'fixfmps' '_psutils' -'fixmacps' '_psutils' -'fixpsditps' '_psutils' -'fixpspps' '_psutils' -'fixscribeps' '_psutils' -'fixtpps' '_psutils' -'fixwfwps' '_psutils' -'fixwpps' '_psutils' -'fixwwps' '_psutils' -'flac' '_flac' -'flex' '_flex' -'flex++' '_flex' -'flipdiff' '_patchutils' -'flist' '_mh' -'flists' '_mh' -'float' '_typeset' -'flowadm' '_flowadm' -'fmadm' '_fmadm' -'fmt' '_fmt' -'fmttest' '_mh' -'fned' '_zed' -'fnext' '_mh' -'fold' '_fold' -'folder' '_mh' -'folders' '_mh' -'fortune' '_fortune' -'forw' '_mh' -'fprev' '_mh' -'free' '_free' -'freebsd-make' '_make' -'freebsd-update' '_freebsd-update' -'freezer' '_openstack' -'fs_usage' '_fs_usage' -'fsh' '_fsh' -'fstat' '_fstat' -'ftp' '_hosts' -'functions' '_typeset' -'fuser' '_fuser' -'fusermount' '_fusermount' -'fw_update' '_fw_update' -'fwhois' '_whois' -'g++' '_gcc' -'galeon' '_webbrowser' -'gawk' '_awk' -'gb2sum' '_md5sum' -'gbase32' '_base64' -'gbase64' '_base64' -'gbasename' '_basename' -'gcat' '_cat' -'gcc' '_gcc' -'gccgo' '_go' -'gchgrp' '_chown' -'gchmod' '_chmod' -'gchown' '_chown' -'gchroot' '_chroot' -'gcksum' '_cksum' -'gcmp' '_cmp' -'gcomm' '_comm' -'gcore' '_gcore' -'gcp' '_cp' -'gcut' '_cut' -'gdate' '_date' -'gdb' '_gdb' -'gdd' '_dd' -'gdf' '_df' -'gdiff' '_diff' -'gdu' '_du' -'geany' '_geany' -'gegrep' '_grep' -'gem' '_gem' -'genisoimage' '_genisoimage' -'genv' '_env' -'get' '_sccs' -'getafm' '_psutils' -'getclip' '_getclip' -'getclip.exe' '_getclip' -'getconf' '_getconf' -'getent' '_getent' -'getfacl' '_getfacl' -'getfacl.exe' '_getfacl' -'getfattr' '_attr' -'getmail' '_getmail' -'getopt' '_getopt' -'getopts' '_vars' -'gex' '_vim' -'gexpand' '_unexpand' -'gfgrep' '_grep' -'gfind' '_find' -'gfmt' '_fmt' -'gfold' '_fold' -'ggetopt' '_getopt' -'ggrep' '_grep' -'ggv' '_gnome-gv' -'ghead' '_head' -'ghostscript' '_ghostscript' -'ghostview' '_pspdf' -'gid' '_id' -'ginstall' '_install' -'git' '_git' -'git-buildpackage' '_git-buildpackage' -'gitk' '_git' -'gjoin' '_join' -'glance' '_openstack' -'gln' '_ln' -'global' '_global' -'glocate' '_locate' -'gls' '_ls' -'gm' '_graphicsmagick' -'gmake' '_make' -'gmd5sum' '_md5sum' -'gmkdir' '_mkdir' -'gmkfifo' '_mkfifo' -'gmknod' '_mknod' -'gmktemp' '_mktemp' -'gmplayer' '_mplayer' -'gmv' '_mv' -'gnl' '_nl' -'gnocchi' '_openstack' -'gnome-gv' '_gnome-gv' -'gnumfmt' '_numfmt' -'gnupod_INIT' '_gnupod' -'gnupod_INIT.pl' '_gnupod' -'gnupod_addsong' '_gnupod' -'gnupod_addsong.pl' '_gnupod' -'gnupod_check' '_gnupod' -'gnupod_check.pl' '_gnupod' -'gnupod_search' '_gnupod' -'gnupod_search.pl' '_gnupod' -'gnutls-cli' '_gnutls' -'gnutls-cli-debug' '_gnutls' -'gnutls-serv' '_gnutls' -'god' '_od' -'gofmt' '_go' -'gpasswd' '_gpasswd' -'gpaste' '_paste' -'gpatch' '_patch' -'gpg' '_gpg' -'gpg-zip' '_gpg' -'gpg2' '_gpg' -'gpgv' '_gpg' -'gphoto2' '_gphoto2' -'gprintenv' '_printenv' -'gprof' '_gprof' -'gqview' '_gqview' -'gradle' '_gradle' -'gradlew' '_gradle' -'grail' '_webbrowser' -'greadlink' '_readlink' -'grep' '_grep' -'grep-excuses' '_grep-excuses' -'grepdiff' '_patchutils' -'grm' '_rm' -'grmdir' '_rmdir' -'groff' '_groff' -'groupadd' '_user_admin' -'groupdel' '_groups' -'groupmod' '_user_admin' -'groups' '_users' -'growisofs' '_growisofs' -'gs' '_ghostscript' -'gsbj' '_pspdf' -'gsdj' '_pspdf' -'gsdj500' '_pspdf' -'gsed' '_sed' -'gseq' '_seq' -'gsettings' '_gsettings' -'gsha1sum' '_md5sum' -'gsha224sum' '_md5sum' -'gsha256sum' '_md5sum' -'gsha384sum' '_md5sum' -'gsha512sum' '_md5sum' -'gshred' '_shred' -'gshuf' '_shuf' -'gslj' '_pspdf' -'gslp' '_pspdf' -'gsnd' '_pspdf' -'gsort' '_sort' -'gsplit' '_split' -'gstat' '_gstat' -'gstdbuf' '_stdbuf' -'gstrings' '_strings' -'gstty' '_stty' -'gsum' '_cksum' -'gtac' '_tac' -'gtail' '_tail' -'gtar' '_tar' -'gtee' '_tee' -'gtimeout' '_timeout' -'gtouch' '_touch' -'gtr' '_tr' -'gtty' '_tty' -'guilt' '_guilt' -'guilt-add' '_guilt' -'guilt-applied' '_guilt' -'guilt-delete' '_guilt' -'guilt-files' '_guilt' -'guilt-fold' '_guilt' -'guilt-fork' '_guilt' -'guilt-header' '_guilt' -'guilt-help' '_guilt' -'guilt-import' '_guilt' -'guilt-import-commit' '_guilt' -'guilt-init' '_guilt' -'guilt-new' '_guilt' -'guilt-next' '_guilt' -'guilt-patchbomb' '_guilt' -'guilt-pop' '_guilt' -'guilt-prev' '_guilt' -'guilt-push' '_guilt' -'guilt-rebase' '_guilt' -'guilt-refresh' '_guilt' -'guilt-rm' '_guilt' -'guilt-series' '_guilt' -'guilt-status' '_guilt' -'guilt-top' '_guilt' -'guilt-unapplied' '_guilt' -'guname' '_uname' -'gunexpand' '_unexpand' -'guniq' '_uniq' -'gunzip' '_gzip' -'guptime' '_uptime' -'gv' '_gv' -'gview' '_vim' -'gvim' '_vim' -'gvimdiff' '_vim' -'gwc' '_wc' -'gwho' '_who' -'gxargs' '_xargs' -'gzcat' '_gzip' -'gzegrep' '_grep' -'gzfgrep' '_grep' -'gzgrep' '_grep' -'gzilla' '_webbrowser' -'gzip' '_gzip' -'hash' '_hash' -'hd' '_hexdump' -'hdiutil' '_hdiutil' -'head' '_head' -'heat' '_openstack' -'help' '_sccs' -'hexdump' '_hexdump' -'hilite' '_precommand' -'history' '_fc' -'host' '_host' -'hostname' '_hostname' -'hotjava' '_webbrowser' -'htop' '_htop' -'hwinfo' '_hwinfo' -'iceweasel' '_mozilla' -'icombine' '_ispell' -'iconv' '_iconv' -'iconvconfig' '_iconvconfig' -'id' '_id' -'identify' '_imagemagick' -'ifconfig' '_ifconfig' -'ifdown' '_net_interfaces' -'iftop' '_iftop' -'ifup' '_net_interfaces' -'ijoin' '_ispell' -'import' '_imagemagick' -'inc' '_mh' -'includeres' '_psutils' -'inetadm' '_inetadm' -'info' '_texinfo' -'infocmp' '_terminals' -'initctl' '_initctl' -'initdb' '_postgresql' -'insmod' '_modutils' -'install' '_install' -'install-info' '_texinfo' -'installpkg' '_pkgtool' -'integer' '_typeset' -'interdiff' '_patchutils' -'invoke-rc.d' '_invoke-rc.d' -'ionice' '_ionice' -'iostat' '_iostat' -'ip' '_ip' -'ip6tables' '_iptables' -'ip6tables-restore' '_iptables' -'ip6tables-save' '_iptables' -'ipadm' '_ipadm' -'ipkg' '_opkg' -'ipsec' '_ipsec' -'ipset' '_ipset' -'iptables' '_iptables' -'iptables-restore' '_iptables' -'iptables-save' '_iptables' -'irb' '_ruby' -'ironic' '_openstack' -'irssi' '_irssi' -'isag' '_sysstat' -'ispell' '_ispell' -'iwconfig' '_iwconfig' -'jadetex' '_tex' -'jail' '_jail' -'jar' '_java' -'jarsigner' '_java' -'java' '_java' -'javac' '_java' -'javadoc' '_java' -'javah' '_java' -'javap' '_java' -'jdb' '_java' -'jexec' '_jexec' -'jls' '_jls' -'jobs' '_jobs_builtin' -'joe' '_joe' -'join' '_join' -'jot' '_jot' -'jq' '_jq' -'kdeconnect-cli' '_kdeconnect' -'keystone' '_openstack' -'keytool' '_java' -'kfmclient' '_kfmclient' -'kill' '_kill' -'killall' '_killall' -'killall5' '_killall' -'kioclient' '_kfmclient' -'kldload' '_kld' -'kldunload' '_kld' -'knock' '_knock' -'konqueror' '_webbrowser' -'kpartx' '_kpartx' -'kpdf' '_pdf' -'ksh' '_sh' -'ksh88' '_sh' -'ksh93' '_sh' -'kvno' '_kvno' -'last' '_last' -'lastb' '_last' -'latex' '_tex' -'latexmk' '_tex' -'ldap' '_ldap' -'ldconfig' '_ldconfig' -'ldconfig.real' '_ldconfig' -'ldd' '_ldd' -'less' '_less' -'let' '_math' -'lftp' '_ncftp' -'lha' '_lha' -'light' '_webbrowser' -'lighty-disable-mod' '_lighttpd' -'lighty-enable-mod' '_lighttpd' -'limit' '_limit' -'links' '_links' -'links2' '_links' -'lintian' '_lintian' -'lintian-info' '_lintian' -'linux' '_uml' -'lldb' '_lldb' -'llvm-g++' '_gcc' -'llvm-gcc' '_gcc' -'llvm-objdump' '_objdump' -'llvm-otool' '_otool' -'ln' '_ln' -'loadkeys' '_loadkeys' -'local' '_typeset' -'locale' '_locale' -'localedef' '_localedef' -'locate' '_locate' -'logname' '_nothing' -'look' '_look' -'losetup' '_losetup' -'lp' '_lp' -'lpadmin' '_lp' -'lpinfo' '_lp' -'lpoptions' '_lp' -'lpq' '_lp' -'lpr' '_lp' -'lprm' '_lp' -'lpstat' '_lp' -'ls' '_ls' -'lsattr' '_lsattr' -'lsblk' '_lsblk' -'lscfg' '_lscfg' -'lsdev' '_lsdev' -'lsdiff' '_patchutils' -'lslv' '_lslv' -'lsmod' '_modutils' -'lsof' '_lsof' -'lspv' '_lspv' -'lsusb' '_lsusb' -'lsvg' '_lsvg' -'ltrace' '_ltrace' -'lua' '_lua' -'luarocks' '_luarocks' -'lynx' '_lynx' -'lz4' '_lz4' -'lz4c' '_lz4' -'lz4c32' '_lz4' -'lz4cat' '_lz4' -'lzcat' '_xz' -'lzma' '_xz' -'lzop' '_lzop' -'m-a' '_module-assistant' -'mac2unix' '_dos2unix' -'madison' '_madison' -'magnum' '_openstack' -'mail' '_mail' -'mailx' '_mail' -'make' '_make' -'make-kpkg' '_make-kpkg' -'makeinfo' '_texinfo' -'makepkg' '_pkgtool' -'man' '_man' -'manage.py' '_django' -'manila' '_openstack' -'mark' '_mh' -'matlab' '_matlab' -'mattrib' '_mtools' -'mcd' '_mtools' -'mcopy' '_mtools' -'md2' '_cksum' -'md4' '_cksum' -'md5' '_cksum' -'md5sum' '_md5sum' -'mdadm' '_mdadm' -'mdel' '_mtools' -'mdeltree' '_mtools' -'mdfind' '_mdfind' -'mdir' '_mtools' -'mdls' '_mdls' -'mdu' '_mtools' -'mdutil' '_mdutil' -'members' '_members' -'mencal' '_mencal' -'mere' '_mere' -'merge' '_rcs' -'mergechanges' '_mergechanges' -'metaflac' '_flac' -'mformat' '_mtools' -'mgv' '_pspdf' -'mhfixmsg' '_mh' -'mhlist' '_mh' -'mhmail' '_mh' -'mhn' '_mh' -'mhparam' '_mh' -'mhpath' '_mh' -'mhshow' '_mh' -'mhstore' '_mh' -'mii-tool' '_mii-tool' -'mistral' '_openstack' -'mixerctl' '_mixerctl' -'mkdir' '_mkdir' -'mkfifo' '_mkfifo' -'mkisofs' '_growisofs' -'mknod' '_mknod' -'mksh' '_sh' -'mkshortcut' '_mkshortcut' -'mkshortcut.exe' '_mkshortcut' -'mktemp' '_mktemp' -'mktunes' '_gnupod' -'mktunes.pl' '_gnupod' -'mkzsh' '_mkzsh' -'mkzsh.exe' '_mkzsh' -'mlabel' '_mtools' -'mlocate' '_locate' -'mmd' '_mtools' -'mmm' '_webbrowser' -'mmount' '_mtools' -'mmove' '_mtools' -'modinfo' '_modutils' -'modprobe' '_modutils' -'module' '_module' -'module-assistant' '_module-assistant' -'mogrify' '_imagemagick' -'monasca' '_openstack' -'mondoarchive' '_mondo' -'montage' '_imagemagick' -'moosic' '_moosic' -'mosh' '_mosh' -'mount' '_mount' -'mozilla' '_mozilla' -'mozilla-firefox' '_mozilla' -'mozilla-xremote-client' '_mozilla' -'mpc' '_mpc' -'mplayer' '_mplayer' -'mpstat' '_sysstat' -'mr' '_myrepos' -'mrd' '_mtools' -'mread' '_mtools' -'mren' '_mtools' -'msgchk' '_mh' -'mt' '_mt' -'mtn' '_monotone' -'mtoolstest' '_mtools' -'mtr' '_mtr' -'mtype' '_mtools' -'munchlist' '_ispell' -'mupdf' '_mupdf' -'murano' '_openstack' -'mush' '_mail' -'mutt' '_mutt' -'mv' '_mv' -'mvim' '_vim' -'mx' '_hosts' -'mysql' '_mysql_utils' -'mysqladmin' '_mysql_utils' -'mysqldiff' '_mysqldiff' -'mysqldump' '_mysql_utils' -'mysqlimport' '_mysql_utils' -'mysqlshow' '_mysql_utils' -'nail' '_mail' -'native2ascii' '_java' -'nautilus' '_nautilus' -'nawk' '_awk' -'nc' '_netcat' -'ncal' '_cal' -'ncftp' '_ncftp' -'ncl' '_nedit' -'nedit' '_nedit' -'nedit-nc' '_nedit' -'netcat' '_netcat' -'netrik' '_webbrowser' -'netscape' '_netscape' -'netstat' '_netstat' -'networksetup' '_networksetup' -'neutron' '_openstack' -'new' '_mh' -'newgrp' '_groups' -'next' '_mh' -'nginx' '_nginx' -'ngrep' '_ngrep' -'nice' '_nice' -'nkf' '_nkf' -'nl' '_nl' -'nm' '_nm' -'nmap' '_nmap' -'nmblookup' '_samba' -'nmcli' '_networkmanager' -'nocorrect' '_precommand' -'noglob' '_precommand' -'nohup' '_precommand' -'nova' '_openstack' -'npm' '_npm' -'ns' '_hosts' -'nslookup' '_nslookup' -'ntalk' '_other_accounts' -'numfmt' '_numfmt' -'nvim' '_vim' -'nvram' '_nvram' -'objdump' '_objdump' -'od' '_od' -'odme' '_object_classes' -'odmget' '_object_classes' -'odmshow' '_object_classes' -'ogg123' '_vorbis' -'oggdec' '_vorbis' -'oggenc' '_vorbis' -'ogginfo' '_vorbis' -'oksh' '_sh' -'okular' '_okular' -'open' '_open' -'openstack' '_openstack' -'opera' '_webbrowser' -'opera-next' '_webbrowser' -'opkg' '_opkg' -'osascript' '_osascript' -'osc' '_osc' -'otool' '_otool' -'p4' '_perforce' -'p4d' '_perforce' -'pack' '_pack' -'packf' '_mh' -'pandoc' '_pandoc' -'parsehdlist' '_urpmi' -'passwd' '_users' -'paste' '_paste' -'patch' '_patch' -'pax' '_pax' -'pbcopy' '_pbcopy' -'pbpaste' '_pbcopy' -'pbuilder' '_pbuilder' -'pcat' '_pack' -'pcred' '_pids' -'pdf2dsc' '_pdf' -'pdf2ps' '_pdf' -'pdffonts' '_pdf' -'pdfimages' '_pdf' -'pdfinfo' '_pdf' -'pdfjadetex' '_tex' -'pdflatex' '_tex' -'pdfopt' '_pdf' -'pdftex' '_tex' -'pdftexi2dvi' '_texinfo' -'pdftk' '_pdftk' -'pdftopbm' '_pdf' -'pdftops' '_pdf' -'pdftotext' '_pdf' -'pdksh' '_sh' -'perl' '_perl' -'perldoc' '_perldoc' -'pfctl' '_pfctl' -'pfexec' '_pfexec' -'pfiles' '_pids' -'pflags' '_pids' -'pg_config' '_postgresql' -'pg_ctl' '_postgresql' -'pg_dump' '_postgresql' -'pg_dumpall' '_postgresql' -'pg_isready' '_postgresql' -'pg_restore' '_postgresql' -'pg_upgrade' '_postgresql' -'pgrep' '_pgrep' -'php' '_php' -'pick' '_mh' -'picocom' '_picocom' -'pidof' '_pidof' -'pidstat' '_sysstat' -'pigz' '_gzip' -'pine' '_pine' -'pinef' '_pine' -'pinfo' '_texinfo' -'ping' '_ping' -'ping6' '_ping' -'piuparts' '_piuparts' -'pkg' '_pkg5' -'pkg-config' '_pkg-config' -'pkg_add' '_bsd_pkg' -'pkg_create' '_bsd_pkg' -'pkg_delete' '_bsd_pkg' -'pkg_info' '_bsd_pkg' -'pkgadd' '_pkgadd' -'pkgin' '_pkgin' -'pkginfo' '_pkginfo' -'pkgrm' '_pkgrm' -'pkgtool' '_pkgtool' -'pkill' '_pgrep' -'pldd' '_pids' -'plutil' '_plutil' -'pmake' '_make' -'pman' '_perl_modules' -'pmap' '_pmap' -'pmcat' '_perl_modules' -'pmdesc' '_perl_modules' -'pmeth' '_perl_modules' -'pmexp' '_perl_modules' -'pmfunc' '_perl_modules' -'pmload' '_perl_modules' -'pmls' '_perl_modules' -'pmpath' '_perl_modules' -'pmvers' '_perl_modules' -'podgrep' '_perl_modules' -'podpath' '_perl_modules' -'podtoc' '_perl_modules' -'poff' '_pon' -'policytool' '_java' -'pon' '_pon' -'popd' '_directory_stack' -'portaudit' '_portaudit' -'portlint' '_portlint' -'portmaster' '_portmaster' -'portsnap' '_portsnap' -'postconf' '_postfix' -'postgres' '_postgresql' -'postmaster' '_postgresql' -'postqueue' '_postfix' -'postsuper' '_postfix' -'powerd' '_powerd' -'prev' '_mh' -'print' '_print' -'printenv' '_printenv' -'printf' '_print' -'procstat' '_procstat' -'prompt' '_prompt' -'prove' '_prove' -'prs' '_sccs' -'prstat' '_prstat' -'prt' '_sccs' -'prun' '_pids' -'ps' '_ps' -'ps2ascii' '_pspdf' -'ps2epsi' '_postscript' -'ps2pdf' '_postscript' -'ps2pdf12' '_postscript' -'ps2pdf13' '_postscript' -'ps2pdf14' '_postscript' -'ps2pdfwr' '_postscript' -'ps2ps' '_postscript' -'psbook' '_psutils' -'pscp' '_pscp' -'pscp.exe' '_pscp' -'psed' '_sed' -'psig' '_pids' -'psmerge' '_psutils' -'psmulti' '_postscript' -'psnup' '_psutils' -'psql' '_postgresql' -'psresize' '_psutils' -'psselect' '_psutils' -'pstack' '_pids' -'pstoedit' '_pspdf' -'pstop' '_pids' -'pstops' '_psutils' -'pstotgif' '_pspdf' -'pswrap' '_postscript' -'ptree' '_ptree' -'pump' '_pump' -'pushd' '_cd' -'putclip' '_putclip' -'putclip.exe' '_putclip' -'pv' '_pv' -'pwait' '_pids' -'pwdx' '_pids' -'pwgen' '_pwgen' -'pyhtmlizer' '_twisted' -'qdbus' '_qdbus' -'qiv' '_qiv' -'qtplay' '_qtplay' -'querybts' '_bug' -'quickdel' '_quickdel' -'quilt' '_quilt' -'r' '_fc' -'rake' '_rake' -'ranlib' '_ranlib' -'rar' '_rar' -'rc' '_sh' -'rcctl' '_rcctl' -'rclone' '_rclone' -'rcp' '_rlogin' -'rcs' '_rcs' -'rcsdiff' '_rcs' -'rdesktop' '_rdesktop' -'read' '_read' -'readelf' '_readelf' -'readlink' '_readlink' -'readonly' '_typeset' -'readshortcut' '_readshortcut' -'readshortcut.exe' '_readshortcut' -'rebootin' '_rebootin' -'refile' '_mh' -'rehash' '_hash' -'reindexdb' '_postgresql' -'reload' '_initctl' -'removepkg' '_pkgtool' -'remsh' '_rlogin' -'renice' '_renice' -'repl' '_mh' -'reportbug' '_bug' -'reprepro' '_reprepro' -'restart' '_initctl' -'retawq' '_webbrowser' -'rg' '_rg' -'rgview' '_vim' -'rgvim' '_vim' -'ri' '_ri' -'rlogin' '_rlogin' -'rm' '_rm' -'rmadison' '_madison' -'rmd160' '_cksum' -'rmdel' '_sccs' -'rmdir' '_rmdir' -'rmf' '_mh' -'rmic' '_java' -'rmid' '_java' -'rmiregistry' '_java' -'rmm' '_mh' -'rmmod' '_modutils' -'route' '_route' -'rpm' '_rpm' -'rpmbuild' '_rpm' -'rpmkeys' '_rpm' -'rpmquery' '_rpm' -'rpmsign' '_rpm' -'rpmspec' '_rpm' -'rpmverify' '_rpm' -'rrdtool' '_rrdtool' -'rsh' '_rlogin' -'rsync' '_rsync' -'rtin' '_tin' -'rubber' '_rubber' -'rubber-info' '_rubber' -'rubber-pipe' '_rubber' -'ruby' '_ruby' -'ruby-mri' '_ruby' -'run-help' '_run-help' -'rup' '_hosts' -'rusage' '_precommand' -'rview' '_vim' -'rvim' '_vim' -'rwho' '_hosts' -'rxvt' '_urxvt' -'s2p' '_sed' -'sact' '_sccs' -'sadf' '_sysstat' -'sahara' '_openstack' -'sar' '_sysstat' -'savecore' '_savecore' -'say' '_say' -'sbuild' '_sbuild' -'sc_usage' '_sc_usage' -'scan' '_mh' -'sccs' '_sccs' -'sccsdiff' '_sccs' -'sched' '_sched' -'schedtool' '_schedtool' -'schroot' '_schroot' -'scl' '_scl' -'scons' '_scons' -'scp' '_ssh' -'screen' '_screen' -'script' '_script' -'scriptreplay' '_script' -'scselect' '_scselect' -'scutil' '_scutil' -'seaf-cli' '_seafile' -'sed' '_sed' -'senlin' '_openstack' -'seq' '_seq' -'serialver' '_java' -'service' '_service' -'set' '_set' -'setfacl' '_setfacl' -'setfacl.exe' '_setfacl' -'setfattr' '_attr' -'setopt' '_setopt' -'setsid' '_setsid' -'setxkbmap' '_setxkbmap' -'sftp' '_ssh' -'sh' '_sh' -'sha1' '_cksum' -'sha1sum' '_md5sum' -'sha224sum' '_md5sum' -'sha256' '_cksum' -'sha256sum' '_md5sum' -'sha384' '_cksum' -'sha384sum' '_md5sum' -'sha512' '_cksum' -'sha512sum' '_md5sum' -'sha512t256' '_cksum' -'shasum' '_shasum' -'shift' '_arrays' -'show' '_mh' -'showchar' '_psutils' -'showmount' '_showmount' -'shred' '_shred' -'shuf' '_shuf' -'shutdown' '_shutdown' -'signify' '_signify' -'sisu' '_sisu' -'skein1024' '_cksum' -'skein256' '_cksum' -'skein512' '_cksum' -'skipstone' '_webbrowser' -'slabtop' '_slabtop' -'slitex' '_tex' -'slocate' '_locate' -'slogin' '_ssh' -'slrn' '_slrn' -'smartctl' '_smartmontools' -'smbclient' '_samba' -'smbcontrol' '_samba' -'smbstatus' '_samba' -'smit' '_smit' -'smitty' '_smit' -'snoop' '_snoop' -'soa' '_hosts' -'socket' '_socket' -'sockstat' '_sockstat' -'softwareupdate' '_softwareupdate' -'sort' '_sort' -'sortm' '_mh' -'source' '_source' -'spamassassin' '_spamassassin' -'split' '_split' -'splitdiff' '_patchutils' -'sqlite' '_sqlite' -'sqlite3' '_sqlite' -'sqsh' '_sqsh' -'sr' '_surfraw' -'srptool' '_gnutls' -'ss' '_ss' -'ssh' '_ssh' -'ssh-add' '_ssh' -'ssh-agent' '_ssh' -'ssh-copy-id' '_ssh' -'ssh-keygen' '_ssh' -'ssh-keyscan' '_ssh' -'sshfs' '_sshfs' -'star' '_tar' -'start' '_initctl' -'stat' '_stat' -'status' '_initctl' -'stdbuf' '_stdbuf' -'stg' '_stgit' -'stop' '_initctl' -'stow' '_stow' -'strace' '_strace' -'strace64' '_strace' -'strftime' '_strftime' -'strings' '_strings' -'strip' '_strip' -'strongswan' '_ipsec' -'stty' '_stty' -'su' '_su' -'subl' '_sublimetext' -'sudo' '_sudo' -'sudoedit' '_sudo' -'sum' '_cksum' -'surfraw' '_surfraw' -'sv' '_runit' -'svcadm' '_svcadm' -'svccfg' '_svccfg' -'svcprop' '_svcprop' -'svcs' '_svcs' -'svn' '_subversion' -'svn-buildpackage' '_svn-buildpackage' -'svnadmin' '_subversion' -'svnadmin-static' '_subversion' -'svnlite' '_subversion' -'sw_vers' '_sw_vers' -'swaks' '_swaks' -'swanctl' '_swanctl' -'swift' '_swift' -'swiftc' '_swift' -'sync' '_nothing' -'sysctl' '_sysctl' -'sysrc' '_sysrc' -'systat' '_systat' -'system_profiler' '_system_profiler' -'tac' '_tac' -'tacker' '_openstack' -'tail' '_tail' -'talk' '_other_accounts' -'tar' '_tar' -'tardy' '_tardy' -'tcp_open' '_tcpsys' -'tcpdump' '_tcpdump' -'tcptraceroute' '_tcptraceroute' -'tcsh' '_sh' -'tda' '_devtodo' -'tdd' '_devtodo' -'tde' '_devtodo' -'tdr' '_devtodo' -'tee' '_tee' -'telnet' '_telnet' -'tex' '_tex' -'texi2any' '_texinfo' -'texi2dvi' '_texinfo' -'texi2pdf' '_texinfo' -'texindex' '_texinfo' -'tg' '_topgit' -'tidy' '_tidy' -'time' '_precommand' -'timeout' '_timeout' -'times' '_nothing' -'tin' '_tin' -'tkconch' '_twisted' -'tkinfo' '_texinfo' -'tla' '_tla' -'tload' '_tload' -'tmux' '_tmux' -'todo' '_devtodo' -'todo.sh' '_todo.sh' -'toilet' '_toilet' -'top' '_top' -'totdconfig' '_totd' -'touch' '_touch' -'tpb' '_tpb' -'tpkg-debarch' '_toolchain-source' -'tpkg-install' '_toolchain-source' -'tpkg-install-libc' '_toolchain-source' -'tpkg-make' '_toolchain-source' -'tpkg-update' '_toolchain-source' -'tput' '_tput' -'tr' '_tr' -'tracepath' '_tracepath' -'tracepath6' '_tracepath' -'traceroute' '_hosts' -'transmission-remote' '_transmission' -'trap' '_trap' -'trash' '_trash' -'tree' '_tree' -'trial' '_twisted' -'trove' '_openstack' -'true' '_nothing' -'truss' '_truss' -'tryaffix' '_ispell' -'tty' '_tty' -'ttyctl' '_ttyctl' -'tunctl' '_uml' -'tune2fs' '_tune2fs' -'tunes2pod' '_gnupod' -'tunes2pod.pl' '_gnupod' -'twidge' '_twidge' -'twist' '_twisted' -'twistd' '_twisted' -'txt' '_hosts' -'type' '_which' -'typeset' '_typeset' -'ulimit' '_ulimit' -'uml_mconsole' '_uml' -'uml_moo' '_uml' -'uml_switch' '_uml' -'umount' '_mount' -'unace' '_unace' -'unalias' '_aliases' -'uname' '_uname' -'uncompress' '_compress' -'unexpand' '_unexpand' -'unfunction' '_functions' -'unget' '_sccs' -'unhash' '_unhash' -'uniq' '_uniq' -'unison' '_unison' -'units' '_units' -'unix2dos' '_dos2unix' -'unix2mac' '_dos2unix' -'unlimit' '_limits' -'unlz4' '_lz4' -'unlzma' '_xz' -'unpack' '_pack' -'unpigz' '_gzip' -'unrar' '_rar' -'unset' '_vars' -'unsetopt' '_setopt' -'unwrapdiff' '_patchutils' -'unxz' '_xz' -'unzip' '_zip' -'update-alternatives' '_update-alternatives' -'update-rc.d' '_update-rc.d' -'upgradepkg' '_pkgtool' -'uptime' '_uptime' -'urpme' '_urpmi' -'urpmf' '_urpmi' -'urpmi' '_urpmi' -'urpmi.addmedia' '_urpmi' -'urpmi.removemedia' '_urpmi' -'urpmi.update' '_urpmi' -'urpmq' '_urpmi' -'urxvt' '_urxvt' -'urxvt256c' '_urxvt' -'urxvt256c-ml' '_urxvt' -'urxvt256c-mlc' '_urxvt' -'urxvt256cc' '_urxvt' -'urxvtc' '_urxvt' -'uscan' '_uscan' -'useradd' '_user_admin' -'userdel' '_users' -'usermod' '_user_admin' -'vacuumdb' '_postgresql' -'val' '_sccs' -'valgrind' '_valgrind' -'vared' '_vared' -'vcsh' '_vcsh' -'vim' '_vim' -'vim-addons' '_vim-addons' -'vimdiff' '_vim' -'virsh' '_libvirt' -'virt-admin' '_libvirt' -'virt-host-validate' '_libvirt' -'virt-pki-validate' '_libvirt' -'virt-xml-validate' '_libvirt' -'visudo' '_visudo' -'vitrage' '_openstack' -'vmctl' '_vmctl' -'vmstat' '_vmstat' -'vncserver' '_vnc' -'vncviewer' '_vnc' -'vorbiscomment' '_vorbis' -'vpnc' '_vpnc' -'vpnc-connect' '_vpnc' -'vserver' '_vserver' -'w' '_w' -'w3m' '_w3m' -'wait' '_wait' -'wajig' '_wajig' -'wanna-build' '_wanna-build' -'watch' '_watch' -'watcher' '_openstack' -'wc' '_wc' -'wget' '_wget' -'what' '_sccs' -'whatis' '_man' -'whence' '_which' -'where' '_which' -'whereis' '_whereis' -'which' '_which' -'who' '_who' -'whoami' '_nothing' -'whois' '_whois' -'whom' '_mh' -'wiggle' '_wiggle' -'wipefs' '_wipefs' -'wodim' '_cdrecord' -'wpa_cli' '_wpa_cli' -'write' '_users_on' -'www' '_webbrowser' -'xargs' '_xargs' -'xattr' '_attr' -'xauth' '_xauth' -'xautolock' '_xautolock' -'xclip' '_xclip' -'xcode-select' '_xcode-select' -'xdpyinfo' '_x_utils' -'xdvi' '_xdvi' -'xelatex' '_tex' -'xetex' '_tex' -'xev' '_x_utils' -'xfd' '_x_utils' -'xfig' '_xfig' -'xfontsel' '_x_utils' -'xfreerdp' '_rdesktop' -'xhost' '_x_utils' -'xkill' '_x_utils' -'xli' '_xloadimage' -'xloadimage' '_xloadimage' -'xlsatoms' '_x_utils' -'xlsclients' '_x_utils' -'xml' '_xmlstarlet' -'xmllint' '_xmlsoft' -'xmlstarlet' '_xmlstarlet' -'xmms2' '_xmms2' -'xmodmap' '_xmodmap' -'xmosaic' '_webbrowser' -'xon' '_x_utils' -'xournal' '_xournal' -'xpdf' '_xpdf' -'xping' '_hosts' -'xprop' '_x_utils' -'xrandr' '_xrandr' -'xrdb' '_x_utils' -'xscreensaver-command' '_xscreensaver' -'xset' '_xset' -'xsetbg' '_xloadimage' -'xsetroot' '_x_utils' -'xsltproc' '_xmlsoft' -'xterm' '_xterm' -'xtightvncviewer' '_vnc' -'xtp' '_imagemagick' -'xv' '_xv' -'xview' '_xloadimage' -'xvnc4viewer' '_vnc' -'xvncviewer' '_vnc' -'xwd' '_x_utils' -'xwininfo' '_x_utils' -'xwit' '_xwit' -'xwud' '_x_utils' -'xxd' '_xxd' -'xz' '_xz' -'xzcat' '_xz' -'yafc' '_yafc' -'yash' '_sh' -'yast' '_yast' -'yast2' '_yast' -'ypbind' '_yp' -'ypcat' '_yp' -'ypmatch' '_yp' -'yppasswd' '_yp' -'yppoll' '_yp' -'yppush' '_yp' -'ypserv' '_yp' -'ypset' '_yp' -'ypwhich' '_yp' -'ypxfr' '_yp' -'ytalk' '_other_accounts' -'yum' '_yum' -'yumdb' '_yum' -'zargs' '_zargs' -'zcalc' '_zcalc' -'zcat' '_zcat' -'zcompile' '_zcompile' -'zcp' '_zmv' -'zdelattr' '_zattr' -'zdump' '_zdump' -'zeal' '_zeal' -'zed' '_zed' -'zegrep' '_grep' -'zen' '_webbrowser' -'zf_chgrp' '_chown' -'zf_chmod' '_chmod' -'zf_chown' '_chown' -'zf_ln' '_ln' -'zf_mkdir' '_mkdir' -'zf_mv' '_mv' -'zf_rm' '_rm' -'zf_rmdir' '_rmdir' -'zfgrep' '_grep' -'zfs' '_zfs' -'zgetattr' '_zattr' -'zgrep' '_grep' -'zip' '_zip' -'zipinfo' '_zip' -'zle' '_zle' -'zlistattr' '_zattr' -'zln' '_zmv' -'zlogin' '_zlogin' -'zmail' '_mail' -'zmodload' '_zmodload' -'zmv' '_zmv' -'zone' '_hosts' -'zoneadm' '_zoneadm' -'zparseopts' '_zparseopts' -'zpool' '_zpool' -'zpty' '_zpty' -'zsetattr' '_zattr' -'zsh' '_zsh' -'zsh-mime-handler' '_zsh-mime-handler' -'zsocket' '_zsocket' -'zstat' '_stat' -'zstyle' '_zstyle' -'ztodo' '_ztodo' -'zun' '_openstack' -'zxpdf' '_xpdf' -'zypper' '_zypper' -) - -_services=( -'-redirect-,<,bunzip2' 'bunzip2' -'-redirect-,<,bzip2' 'bzip2' -'-redirect-,<,compress' 'compress' -'-redirect-,<,gunzip' 'gunzip' -'-redirect-,<,gzip' 'gzip' -'-redirect-,<,uncompress' 'uncompress' -'-redirect-,<,unxz' 'unxz' -'-redirect-,<,xz' 'xz' -'-redirect-,>,bzip2' 'bunzip2' -'-redirect-,>,compress' 'uncompress' -'-redirect-,>,gzip' 'gunzip' -'-redirect-,>,xz' 'unxz' -'Mail' 'mail' -'bzcat' 'bunzip2' -'dch' 'debchange' -'gchgrp' 'chgrp' -'gchown' 'chown' -'gnupod_INIT.pl' 'gnupod_INIT' -'gnupod_addsong.pl' 'gnupod_addsong' -'gnupod_check.pl' 'gnupod_check' -'gnupod_search.pl' 'gnupod_search' -'gpg2' 'gpg' -'gzcat' 'gunzip' -'iceweasel' 'firefox' -'lzcat' 'unxz' -'lzma' 'xz' -'mailx' 'mail' -'mktunes.pl' 'mktunes' -'nail' 'mail' -'ncl' 'nc' -'nedit-nc' 'nc' -'pcat' 'unpack' -'remsh' 'rsh' -'slogin' 'ssh' -'svnadmin-static' 'svnadmin' -'svnlite' 'svn' -'tunes2pod.pl' 'tunes2pod' -'unlzma' 'unxz' -'xelatex' 'latex' -'xetex' 'tex' -'xzcat' 'unxz' -'zf_chgrp' 'chgrp' -'zf_chown' 'chown' -) - -_patcomps=( -'*/(init|rc[0-9S]#).d/*' '_init_d' -) - -_postpatcomps=( -'(p[bgpn]m*|*top[bgpn]m)' '_pbm' -'(ruby|[ei]rb)[0-9.]#' '_ruby' -'(texi(2*|ndex))' '_texi' -'(tiff*|*2tiff|pal2rgb)' '_tiff' -'*/X11(|R<4->)/*' '_x_arguments' -'-value-,(ftp|http(|s))_proxy,-default-' '_urls' -'-value-,*PATH,-default-' '_dir_list' -'-value-,*path,-default-' '_directories' -'-value-,LC_*,-default-' '_locales' -'-value-,RUBY(LIB|OPT|PATH),-default-' '_ruby' -'c++-*' '_gcc' -'g++-*' '_gcc' -'gcc-*' '_gcc' -'gem[0-9.]#' '_gem' -'lua[0-9.-]##' '_lua' -'php[0-9.-]' '_php' -'pydoc[0-9.]#' '_pydoc' -'python[0-9.]#' '_python' -'qemu(|-system-*)' '_qemu' -'shasum(|5).*' '_shasum' -'yodl(|2*)' '_yodl' -'zf*' '_zftp' -) - -_compautos=( -'_call_program' '+X' -) - -zle -C _bash_complete-word .complete-word _bash_completions -zle -C _bash_list-choices .list-choices _bash_completions -zle -C _complete_debug .complete-word _complete_debug -zle -C _complete_help .complete-word _complete_help -zle -C _complete_tag .complete-word _complete_tag -zle -C _correct_filename .complete-word _correct_filename -zle -C _correct_word .complete-word _correct_word -zle -C _expand_alias .complete-word _expand_alias -zle -C _expand_word .complete-word _expand_word -zle -C _history-complete-newer .complete-word _history_complete_word -zle -C _history-complete-older .complete-word _history_complete_word -zle -C _list_expansions .list-choices _expand_word -zle -C _most_recent_file .complete-word _most_recent_file -zle -C _next_tags .list-choices _next_tags -zle -C _read_comp .complete-word _read_comp -bindkey '^X^R' _read_comp -bindkey '^X?' _complete_debug -bindkey '^XC' _correct_filename -bindkey '^Xa' _expand_alias -bindkey '^Xc' _correct_word -bindkey '^Xd' _list_expansions -bindkey '^Xe' _expand_word -bindkey '^Xh' _complete_help -bindkey '^Xm' _most_recent_file -bindkey '^Xn' _next_tags -bindkey '^Xt' _complete_tag -bindkey '^X~' _bash_list-choices -bindkey '^[,' _history-complete-newer -bindkey '^[/' _history-complete-older -bindkey '^[~' _bash_complete-word - -autoload -Uz _brew _brew_services _fd _fedit _git \ - _quickdel _rg _SUSEconfig _a2ps _a2utils \ - _aap _abcde _absolute_command_paths _ack _acpi \ - _acpitool _acroread _adb _add-zle-hook-widget _add-zsh-hook \ - _alias _aliases _all_labels _all_matches _alsa-utils \ - _alternative _analyseplugin _ansible _ant _antiword \ - _apachectl _apm _approximate _apt _apt-file \ - _apt-move _apt-show-versions _aptitude _arch_archives _arch_namespace \ - _arg_compile _arguments _arp _arping _arrays \ - _asciidoctor _asciinema _assign _at _attr \ - _augeas _auto-apt _autocd _avahi _awk \ - _axi-cache _base64 _basename _bash _bash_completions \ - _baudrates _baz _be_name _beadm _beep \ - _bibtex _bind_addresses _bindkey _bison _bittorrent \ - _bogofilter _bpf_filters _bpython _brace_parameter _brctl \ - _bsd_disks _bsd_pkg _bsdconfig _bsdinstall _btrfs \ - _bts _bug _builtin _bzip2 _bzr \ - _cabal _cache_invalid _caffeinate _cal _calendar \ - _call_function _canonical_paths _cat _ccal _cd \ - _cdbs-edit-patch _cdcd _cdr _cdrdao _cdrecord \ - _chattr _chcon _chflags _chkconfig _chmod \ - _chown _chroot _chrt _chsh _cksum \ - _clay _cmdambivalent _cmdstring _cmp _code \ - _column _combination _comm _command _command_names \ - _comp_locale _compadd _compdef _complete _complete_debug \ - _complete_help _complete_help_generic _complete_tag _completers _composer \ - _compress _condition _configure _coreadm _correct \ - _correct_filename _correct_word _cowsay _cp _cpio \ - _cplay _cpupower _crontab _cryptsetup _cscope \ - _cssh _csup _ctags_tags _cu _curl \ - _cut _cvs _cvsup _cygcheck _cygpath \ - _cygrunsrv _cygserver _cygstart _dak _darcs \ - _date _date_formats _dates _dbus _dchroot \ - _dchroot-dsa _dconf _dcop _dcut _dd \ - _deb_architectures _deb_codenames _deb_files _deb_packages _debbugs_bugnumber \ - _debchange _debcheckout _debdiff _debfoster _deborphan \ - _debsign _debuild _default _defaults _delimiters \ - _describe _description _devtodo _df _dhclient \ - _dhcpinfo _dict _dict_words _diff _diff3 \ - _diff_options _diffstat _dig _dir_list _directories \ - _directory_stack _dirs _disable _dispatch _django \ - _dkms _dladm _dlocate _dmesg _dmidecode \ - _dnf _dns_types _doas _domains _dos2unix \ - _dpatch-edit-patch _dpkg _dpkg-buildpackage _dpkg-cross _dpkg-repack \ - _dpkg_source _dput _drill _dsh _dtrace \ - _dtruss _du _dumpadm _dumper _dupload \ - _dvi _dynamic_directory_name _e2label _ecasound _echotc \ - _echoti _ed _elfdump _elinks _email_addresses \ - _emulate _enable _enscript _entr _env \ - _eog _equal _espeak _etags _ethtool \ - _evince _exec _expand _expand_alias _expand_word \ - _extensions _external_pwds _fakeroot _fbsd_architectures _fbsd_device_types \ - _fc _feh _fetch _fetchmail _ffmpeg \ - _figlet _file_descriptors _file_flags _file_modes _file_systems \ - _files _find _find_net_interfaces _findmnt _finger \ - _fink _first _flac _flex _floppy \ - _flowadm _fmadm _fmt _fold _fortune \ - _free _freebsd-update _fs_usage _fsh _fstat \ - _functions _fuse_arguments _fuse_values _fuser _fusermount \ - _fw_update _gcc _gcore _gdb _geany \ - _gem _generic _genisoimage _getclip _getconf \ - _getent _getfacl _getmail _getopt _ghostscript \ - _git _git-buildpackage _global _global_tags _globflags \ - _globqual_delims _globquals _gnome-gv _gnu_generic _gnupod \ - _gnutls _go _gpasswd _gpg _gphoto2 \ - _gprof _gqview _gradle _graphicsmagick _grep \ - _grep-excuses _groff _groups _growisofs _gsettings \ - _gstat _guard _guilt _gv _gzip \ - _hash _have_glob_qual _hdiutil _head _hexdump \ - _history _history_complete_word _history_modifiers _host _hostname \ - _hosts _htop _hwinfo _iconv _iconvconfig \ - _id _ifconfig _iftop _ignored _imagemagick \ - _in_vared _inetadm _init_d _initctl _install \ - _invoke-rc.d _ionice _iostat _ip _ipadm \ - _ipsec _ipset _iptables _irssi _ispell \ - _iwconfig _jail _jails _java _java_class \ - _jexec _jls _jobs _jobs_bg _jobs_builtin \ - _jobs_fg _joe _join _jot _jq \ - _kdeconnect _kfmclient _kill _killall _kld \ - _knock _kpartx _kvno _last _ld_debug \ - _ldap _ldconfig _ldd _less _lha \ - _libvirt _lighttpd _limit _limits _links \ - _lintian _list _list_files _lldb _ln \ - _loadkeys _locale _localedef _locales _locate \ - _logical_volumes _look _losetup _lp _ls \ - _lsattr _lsblk _lscfg _lsdev _lslv \ - _lsof _lspv _lsusb _lsvg _ltrace \ - _lua _luarocks _lynx _lz4 _lzop \ - _mac_applications _mac_files_for_application _madison _mail _mailboxes \ - _main_complete _make _make-kpkg _man _match \ - _math _math_params _matlab _md5sum _mdadm \ - _mdfind _mdls _mdutil _members _mencal \ - _menu _mere _mergechanges _message _mh \ - _mii-tool _mime_types _mixerctl _mkdir _mkfifo \ - _mknod _mkshortcut _mktemp _mkzsh _module \ - _module-assistant _module_math_func _modutils _mondo _monotone \ - _moosic _mosh _most_recent_file _mount _mozilla \ - _mpc _mplayer _mt _mtools _mtr \ - _multi_parts _mupdf _mutt _mv _my_accounts \ - _myrepos _mysql_utils _mysqldiff _nautilus _nbsd_architectures \ - _ncftp _nedit _net_interfaces _netcat _netscape \ - _netstat _networkmanager _networksetup _newsgroups _next_label \ - _next_tags _nginx _ngrep _nice _nkf \ - _nl _nm _nmap _normal _nothing \ - _npm _nslookup _numfmt _nvram _objdump \ - _object_classes _object_files _obsd_architectures _od _okular \ - _oldlist _open _openstack _opkg _options \ - _options_set _options_unset _osascript _osc _other_accounts \ - _otool _pack _pandoc _parameter _parameters \ - _paste _patch _patchutils _path_commands _path_files \ - _pax _pbcopy _pbm _pbuilder _pdf \ - _pdftk _perforce _perl _perl_basepods _perl_modules \ - _perldoc _pfctl _pfexec _pgrep _php \ - _physical_volumes _pick_variant _picocom _pidof _pids \ - _pine _ping _piuparts _pkg-config _pkg5 \ - _pkg_instance _pkgadd _pkgin _pkginfo _pkgrm \ - _pkgtool _plutil _pmap _pon _portaudit \ - _portlint _portmaster _ports _portsnap _postfix \ - _postgresql _postscript _powerd _precommand _prefix \ - _print _printenv _printers _process_names _procstat \ - _prompt _prove _prstat _ps _ps1234 \ - _pscp _pspdf _psutils _ptree _pump \ - _putclip _pv _pwgen _pydoc _python \ - _python_modules _qdbus _qemu _qiv _qtplay \ - _quilt _rake _ranlib _rar _rcctl \ - _rclone _rcs _rdesktop _read _read_comp \ - _readelf _readlink _readshortcut _rebootin _redirect \ - _regex_arguments _regex_words _remote_files _renice _reprepro \ - _requested _retrieve_cache _retrieve_mac_apps _ri _rlogin \ - _rm _rmdir _route _rpm _rrdtool \ - _rsync _rubber _ruby _run-help _runit \ - _samba _savecore _say _sbuild _sc_usage \ - _sccs _sched _schedtool _schroot _scl \ - _scons _screen _script _scselect _scutil \ - _seafile _sed _selinux_contexts _selinux_roles _selinux_types \ - _selinux_users _sep_parts _seq _sequence _service \ - _services _set _set_command _setfacl _setopt \ - _setsid _setup _setxkbmap _sh _shasum \ - _showmount _shred _shuf _shutdown _signals \ - _signify _sisu _slabtop _slrn _smartmontools \ - _smit _snoop _socket _sockstat _softwareupdate \ - _sort _source _spamassassin _split _sqlite \ - _sqsh _ss _ssh _ssh_hosts _sshfs \ - _stat _stdbuf _stgit _store_cache _stow \ - _strace _strftime _strings _strip _stty \ - _su _sub_commands _sublimetext _subscript _subversion \ - _sudo _suffix_alias_files _surfraw _svcadm _svccfg \ - _svcprop _svcs _svcs_fmri _svn-buildpackage _sw_vers \ - _swaks _swanctl _swift _sys_calls _sysctl \ - _sysrc _sysstat _systat _system_profiler _tac \ - _tags _tail _tar _tar_archive _tardy \ - _tcpdump _tcpsys _tcptraceroute _tee _telnet \ - _terminals _tex _texi _texinfo _tidy \ - _tiff _tilde _tilde_files _time_zone _timeout \ - _tin _tla _tload _tmux _todo.sh \ - _toilet _toolchain-source _top _topgit _totd \ - _touch _tpb _tput _tr _tracepath \ - _transmission _trap _trash _tree _truss \ - _tty _ttyctl _ttys _tune2fs _twidge \ - _twisted _typeset _ulimit _uml _umountable \ - _unace _uname _unexpand _unhash _uniq \ - _unison _units _update-alternatives _update-rc.d _uptime \ - _urls _urpmi _urxvt _uscan _user_admin \ - _user_at_host _user_expand _user_math_func _users _users_on \ - _valgrind _value _values _vared _vars \ - _vcsh _vim _vim-addons _visudo _vmctl \ - _vmstat _vnc _volume_groups _vorbis _vpnc \ - _vserver _w _w3m _wait _wajig \ - _wakeup_capable_devices _wanna-build _wanted _watch _watch-snoop \ - _wc _webbrowser _wget _whereis _which \ - _who _whois _widgets _wiggle _wipefs \ - _wpa_cli _x_arguments _x_borderwidth _x_color _x_colormapid \ - _x_cursor _x_display _x_extension _x_font _x_geometry \ - _x_keysym _x_locale _x_modifier _x_name _x_resource \ - _x_selection_timeout _x_title _x_utils _x_visual _x_window \ - _xargs _xauth _xautolock _xclip _xcode-select \ - _xdvi _xfig _xft_fonts _xloadimage _xmlsoft \ - _xmlstarlet _xmms2 _xmodmap _xournal _xpdf \ - _xrandr _xscreensaver _xset _xt_arguments _xt_session_id \ - _xterm _xv _xwit _xxd _xz \ - _yafc _yast _yodl _yp _yum \ - _zargs _zattr _zcalc _zcalc_line _zcat \ - _zcompile _zdump _zeal _zed _zfs \ - _zfs_dataset _zfs_keysource_props _zfs_pool _zftp _zip \ - _zle _zlogin _zmodload _zmv _zoneadm \ - _zones _zparseopts _zpool _zpty _zsh \ - _zsh-mime-handler _zsocket _zstyle _ztodo _zypper -autoload -Uz +X _call_program - -typeset -gUa _comp_assocs -_comp_assocs=( '' ) diff --git a/zsh-macos/.config/zsh-macos/.zprofile b/zsh-macos/.config/zsh-macos/.zprofile deleted file mode 100755 index 6bfcdf7..0000000 --- a/zsh-macos/.config/zsh-macos/.zprofile +++ /dev/null @@ -1 +0,0 @@ -emulate sh -c 'source /etc/profile' diff --git a/zsh-macos/.config/zsh-macos/.zsh_history b/zsh-macos/.config/zsh-macos/.zsh_history deleted file mode 100644 index 0e1010c..0000000 --- a/zsh-macos/.config/zsh-macos/.zsh_history +++ /dev/null @@ -1,465 +0,0 @@ -mv nvim .nvim -stow nvim -cd .config/nvim -rm nvim -rm -rf * -stow nvim neomutt zsh -pacman -Ss nvimpager -cat /etc/envir -cat /etc/environment -cd .config/zsh -gco -b macos -man git -\man git -git branch -m m -git branch -m macOS -rg -H nvimpager -nvim -h nvimpager -brew unlink coreutils && brew link coreutils -gman gls -man gls -bash -man man -echo $- -nvimpage -\ ls -l -\ls -l -rg nvimpager -which rg -rg -h -rg -i nvim -rg man -\man ls -pacman -Ss coreutils -brew link coreutils -which rm -pacman -Ss safe-rm -pacman -S safe-rm -pacman -Ql fzf -pacman -Ql coreutils -pacman -Ql coreutils | sort -less -h -less --help -which less -less -i -which gless -gless -pacman -Ql coreutils | sort | less -pacman -Ql coreutils | sort | rg less -git status -which ls -cd Programming/cs311/In\ Class\ Exercises -git branch lst -git branch list -git branch -d list -git branch -d lst -git branch -l -rg mkcd -rg -H mkcd -man zshaliases -which date -which gdate -rm ssh-login.zsh -gco master -rg --hidden mkcd -rg --hidden mkcd() -rg --hidden 'mkcd()' -sudo chown etorres:staff .cache -sudo chown -R etorres:staff .cache -rg --hidden -i 'mkcd()' -rg -i mkcd -rg -i mkcd **/* -\man rg -PAGER="" -rg -i 'mkcd()' **/* -cd Pack -which gmkdir -cd /etc/zsh -cd /etc -fd zsh -< zshrc -rg mkcd zshrc -rg mkcd zsh* -which mkcd -rg '||' -rg '||' **/* -PAGER='' -man rg -rg --follow mkcd -rg --follow --hidden mkcd **/* -mkcd -mkcd hi -rmdir hi -mkcd Packages -git clone https://github.com/lucc/nvimpager.git -cd nvimpager -pacman -Ss scdoc -pacman -Ss busted -pacman -S scdoc -make PREFIX=$HOME/.local install -nvimpager -datadir -cd .local/bin -echo $path -zpath -which nvimpager -man ls -zshrc -ssh empress -cd Programming -cd cs311 -cd Public -cd Drop\ Box -cd .ssh -cd Dco -scp -R Programming xenon:/home/etorres -scp -R Programming xenon:/home/etorres/Programming -scp --help -which scp -scp -h -man scp -scp -r Programming xenon:/home/etorres/Programming -pacman -Ss topgrade -pacman -S topgrade -cd Programming/cs311/assignment1 -rm EricTorresA1.cpp -> EricTorresA1.cpp ->! EricTorresA1.cpp -< EricTorresA1.cpp -g++ EricTorresA1.cpp -nvim EricTorresA1.cpp -mkcd assignment2 -nvim EricTorresA2.cpp -../cs211 -rg template -whoami -security find-generic-password -ga eeromeshmc | rg 'password:' -cd assignment2 -git checkout macOS -gc -a -m 'Adapt zsh config for macOS' -git push --set-upstream origin macOS -ga zsh -gc -m 'Fix unmatched quote' -git tag -git tag --list -scp -r Programming xenon:/home/etorres/ -scp -r assignment2 xenon:/home/etorres/Programming/cs311 -fd factors -calcf -./calcfactors.py -./calcfactors.py -h -nvim calcfactors.py -./calcfactors.py 61 -./calcfactors.py 63 -cd .config/zsh/conf.d -git pull -cd dist -rm -rf dist -rm -rf .pytest_cache -nvim file-scripts.rb -brew install ./file-scripts.rb -fedit -h -time fedit -quickdel -ssh xenon -ping 192.168.1.3 -systemctl status -ssh xenon-remote -tmux -pacman -Ss logitech -pacman -S logitech-gaming-software -myip -cd ttf-kriswriting -mkcd superscan -rmdir superscan -cd /Users -pacman -Ss kate -cd Documents/xenon/Scripts -quickdel xenon -quickdel -h -quickdel x -cd Projects/file-scripts -/bin/bash --version -which bash -env bash --version -pacman -Ss bash -cd Projects -git pull https://github.com/etorres4/aurpy.git -git pull github.com/etorres4/aurpy.git -git pull git@github.com:etorres4/aurpy.git -git clone https://github.com/etorres4/aurpy.git -cd aurpy -pacman -Qi mac-mouse-fix -pacman -Ss mouse fix -pacman -Qi mouse-fix -fd mouse -fd logitech -pacman -Ql -pacman -R mouse-fix -pacman -S mouse-fix -brew outdated -xcode-select --install -sudo xcode-select --install -cd /usr/lib -fd tclConfig -xcode-select --version -pacman -Syu -which python -python --version -python2 -cd /usr/local/bin -fd python -python3 -pacman -Qi python@3.11 -brew link python@3.11 -brew unlink python@3.11 && brew link python@3.11 -python -python3.11 -cd Scripts/macOS\ Helpers -sudo ./post_macos_update.sh -which pacsearch -pacsearch draw -pacman -S drawio -ping studentaid.gov -getwifipassword -echo 'lP+0dw8J/AUuOcFQS41HLA==' | base32 -echo 'lP+0dw8J/AUuOcFQS41HLA==' | base64 -zconf -fzf --version -nvim fzf.zsh -cd .gem/ruby/2.6.0/extensions/universal-darwin-22/2.6.0/openssl-3.0.1 -nvim mkmf.log -touch fd_ignore -cf assignemnt4 -fd -fd -h -fd clang -fd -H clang -pacsearch uncrustify -pacman -S uncrustify -man uncrustify -rgenv uncrustify -> uncrustify.conf -uncrustify -h -uncrustify -c ~/.config/uncrustify.conf -f TorresEricA4.cpp -rm uncrustify.conf -touch uncrustify.conf -sudo gdb -tui a.out -gdb -gdb a.out -cd Scripts -cd macOS\ Helpers -chmod 700 codesign-gdb.sh -./codesign-gdb.sh -man 8 taskgated -nvim codesign-gdb.sh -mkcd uncrustify -mkcd.cnofig -mkcd .config -stow uncrustify -cd uncrustify/.config -mv ~/.config/uncrustify.conf . -which mv -which safe-rm -gdb -tui a.out -g++ -g TorresEricA4.cpp -./a.out -which gmv -cd uncrustify -stow-config -which stow-config -rm -rf uncrustify -zshaliases -cd Programming/cs311 -rm -rf assignment* -mkcd assignment4 -nvim TorresEricA4.cpp -nvimplug -uncrustify -zshenv config -rgenv config -rgenv unc -which mkdir -gmkdir -h -gmkdir --help -zshenv -mkdir uncrustify -mv uncrustify.conf uncrustify -cd - -stow-config uncrustify -ll uncrustify -gd -.. -uncrustify --version -uncrustify -f TorresEricA4.cpp -g++ TorresEricA4.cpp -ga uncrustify -git revert uncrustify -git reset uncrustify -dotfiles -ls -l -git mv zsh zsh-macos -la -.s -stow zsh-macos -stow -h -stow --verbose zsh-macos -stow .. zsh-macos -stow zsh-macos ~ -xch -cd Templates -cd etc -nvim zshenv -nvim zsh/zshenv -sudo -e /private/etc/zshenv -rm zsh-macos -stow -v zsh-macos -cd zsh-macos -tree zsh -tree zsh-macos -mv zsh/.* zsh-macos -cd zsh -mv conf.d ../zsh-macos -ls -la -rmdir zsh -cd .. -cd .cnfog -cd .config -ls -l -rm zsh -cd Dotfiles -grm zsh -grm -r zsh -ga zsh-macos -gc -m 'Rename zsh folder to zsh-macos to avoid naming collision with master' -git push -gs -exi -which clang++ -lldb -h -which tty -cf assignment4 -cd -tty -tty --help -tty -s -tty -h -env -sha256sum mt86plus64.iso -sha256sum mt86plus_6.00_64.iso.zip -md5sum mt86plus_6.00_64.iso.zip -cd Downloads -ll -sha256sum archlinux-2022.12.01-x86_64.iso -topgrade -nvim -cat hosts.txt -ls -nvim hosts.txt -ssh-keygen -t ed25519 -ssh-copy-id etorres@krypton -ssh-copy-id etorres@krypton .ssh/krypton -ssh-copy-id -i .ssh/krypton -p 2654 etorres@krypton -man nmcli -ssh krypton -nvim serversetup.txt -sshconf -sshconfig -exit -uname -r -uname -which uname -cd Dotfiles -ls -l -gco macOS -git checkout macOS -git push -git status -zsh -cd zsh-linux -ls -l -ls -l -pwd -cd conf.d -ls -l -ls -la -cd .config/zsh-linux -ls -l -ls -l -cd conf.d -ls -l -uname -uname -h -uname --help -man uname -pwd -.. -.. -cd .. -cd ... -cd .. -cd .. -ls -l -cd .. -cd zsh -cd .config/zsh -ls -la -git branch -git mv .zprofile .zshenv ~/Dotfiles/zsh-linux/.config/zsh -git mv .zprofile .zshenv ~/Dotfiles/zsh-linux/.config/zsh-linux -git rm .zprofile .zshenv -git rm -f .zprofile .zshenv -pwd -cd ../../.. -ls -l -cd zsh-linux -ls -l -cd .config/ -ls -l -cd zsh-linux -ls -l -ls -l -ls -la -nvim .zshenv -ls -lcd -cd -cd Dotfiles/zsh-macos -ls -l -pwd -cd .config -ls -cd zsh-macos -ls -la -ls -la -nvim .zshrc -rm .zshrc -cd conf.d -ls -ls -l -rm completion.zsh kp.zsh prompt.zsh sudo.zsh tmux.zsh -ls -l -ls -l -nvim 00-aliases.zsh -ls -ls -l -nvim options -cat options -pwd -cat options -pwd -cd -cd Dotfiles/zsh-macos/.config/zsh-macos/conf.d -rm options -ls -l -pwd -rm completion.zsh kp prompt.zsh sudo.zsh -rm kp.zsh -ls -l -rm tmux.zsh -ls -l -rm 00-keybindings.zsh -cd -pwd -exit diff --git a/zsh-macos/.config/zsh-macos/.zshenv b/zsh-macos/.config/zsh-macos/.zshenv deleted file mode 100755 index 46d8f36..0000000 --- a/zsh-macos/.config/zsh-macos/.zshenv +++ /dev/null @@ -1,38 +0,0 @@ -# Local Environment Variables -#export SSH_ASKPASS='/usr/bin/ksshaskpass ssh-add < /dev/null' - -#export FZF_DEFAULT_COMMAND="fd --threads $(nproc) --type f --hidden --color=never" - -# XDG Base Directory Support -export CARGO_HOME="${XDG_DATA_HOME}/cargo" -export GNUPGHOME="${XDG_DATA_HOME}/gnupg" -export GTK2_RC_FILES="${XDG_CONFIG_HOME}/gtk-2.0/gtkrc" -export _JAVA_OPTIONS="-Djava.util.prefs.userRoot=${XDG_CONFIG_HOME}/.config}/java" -export KDEHOME="${XDG_CONFIG_HOME}/kde" -export LESSHISTFILE="${XDG_CACHE_HOME}/less/history" -export PASSWORD_STORE_DIR="${XDG_DATA_HOME}/password-store" -export PYLINT_HOME="${XDG_CACHE_HOME}/pylint" -export PYTHON_EGG_CACHE="${XDG_CACHE_HOME}/python-eggs" -export PYTHON_STARTUP="${XDG_CONFIG_HOME}/python/pythonrc" -<<<<<<<< HEAD:zsh-linux/.config/zsh-linux/.zshenv -export UNCRUSTIFY_CONFIG="${XDG_CONFIG_HOME}/uncrustify.conf" -======== -export UNCRUSTIFY_CONFIG="${XDG_CONFIG_HOME}/uncrustify/uncrustify.conf" ->>>>>>>> macOS:zsh-macos/.config/zsh-macos/.zshenv -export WINEPREFIX="${XDG_DATA_HOME}/wine" - -# nnn -#export NNN_OPTS_PROG=1 -#export NNN_TRASH=1 -#export NNN_USE_EDITOR=1 - -#export HOMEBREW_NO_AUTO_UPDATE=1 - -#export LD_LIBRARY_PATH="/Library/Developer/CommandLineTools/usr/lib/:$LD_LIBRARY_PATH" - -export PAGER="nvimpager" -export AUR_PAGER="ranger" - -# Manpager using vim/nvim -#export MANPAGER='nvim +Man!' -#export MANWIDTH=999 diff --git a/zsh-macos/.config/zsh-macos/conf.d/00-aliases.zsh b/zsh-macos/.config/zsh-macos/conf.d/00-aliases.zsh deleted file mode 100644 index ddcc2fe..0000000 --- a/zsh-macos/.config/zsh-macos/conf.d/00-aliases.zsh +++ /dev/null @@ -1,158 +0,0 @@ -# ---------- Normal Aliases ---------- -# Common commands -alias cp='gcp -piv' -alias mkdir='gmkdir' -alias mv='gmv -iv' -# Use safe-rm instead of rm -alias rm='safe-rm -iv' -alias rmdir='grmdir -v' - -# Games -alias add-modrinth='ferium add-modrinth' - -# Git -alias gar='git archive' -alias gb='git branch' -alias gd='git diff' -alias ga='git add' -alias gc='git commit' -alias gca='git commit -a' -alias gco='git checkout' -alias gconf='${EDITOR} -- "${XDG_CONFIG_HOME:-${HOME}/.config}/git/config"' -#alias gmv='git mv' -alias grm='git rm' -alias gs='git status' -alias gtv='printf "%s" "$(git describe --long | sed "s/\([^-]*-\)g/r\1/;s/-/./g")"' -alias gnv='printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"' -alias gr='git reset' - -# GPG -alias gdk='gpg --delete-keys' -alias gdsk='gpg --delete-secret-keys' -alias gik='gpg --import ' -alias gk='gpg --list-keys' -alias grk='gpg --receive-keys' -alias gsk='gpg --list-secret-keys' - -# Neomutt -alias neomuttconf='cd -- ${XDG_CONFIG_HOME:-${HOME}/.config}/neomutt' -alias neomuttrc='${EDITOR} ${XDG_CONFIG_HOME:-${HOME}/.config}/neomutt/neomuttrc' - -# Neovim -alias nvimcomm='${EDITOR} ${XDG_CONFIG_HOME:-${HOME}/.config}/nvim/commands' -alias nvimconf='cd "${XDG_CONFIG_HOME:-${HOME}/.config}/nvim"' -alias nvimft='cd "${XDG_DATA_HOME:-${HOME}/.local/share}/nvim/site/ftplugin"' -alias nvimplug='${EDITOR} -- "${XDG_CONFIG_HOME:-${HOME}/.config}/nvim/plugins.vim"' -alias nvimkey='${EDITOR} -- "${XDG_CONFIG_HOME:-${HOME}/.config}/nvim/keybindings.vim"' -alias nvimrc='${EDITOR} -- "${XDG_CONFIG_HOME:-${HOME}/.config}/nvim/init.vim"' -alias swapdir='cd -- "${XDG_DATA_HOME:-${HOME}/.local/share}/nvim/swap"' -alias vmore='nvim -u "${XDG_CONFIG_HOME:-${HOME}/.config}/nvim/pager.vim" -' - -#========= Package Management ========= -# Arch Linux -alias aurget='aur sync -d aur' -alias -g autoremove='pacman -Rns $(pacman -Qtdq)' -alias checkaurupdates='aur sync -d aur --upgrades' -# alias does not work correctly for some reason -alias lspkg="pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print $4$5, name}' | sort -h" -alias ql='pacman -Qql' -alias pacsearch='pacman -Ss' -alias rpmget='aur sync -d rpm' -alias -g updatemirrors="reflector --verbose --country 'United States' --latest 20 --age 24 --sort rate --save /etc/pacman.d/mirrorlist" - -# ========== Packaging ========== -# Arch Linux -alias aurcache='cd ${XDG_CACHE_HOME}/aurutils/sync' -alias aurdir='cd /var/cache/pacman/aur' -alias customdir='cd /var/cache/pacman/custom' -alias gpkginit='cp /usr/share/pacman/PKGBUILD-vcs.proto ./PKGBUILD' -alias pkginit='cp /usr/share/pacman/PKGBUILD.proto ./PKGBUILD' -alias pa='makepkg --force --clean --cleanbuild --syncdeps --rmdeps && addpkg aur' -alias pc='makepkg --force --clean --cleanbuild --syncdeps --rmdeps && addpkg custom' -alias pr='makepkg --force --clean --cleanbuild --syncdeps --rmdeps && addpkg rpm' - -# Personal -alias :q='exit' -alias ct='cptemplate' -#alias less='less -i --' -alias la='gls --almost-all --color --group-directories-first --human-readable -l' -alias ls='gls --color --group-directories-first' -alias ll='gls --classify --color --group-directories-first --human-readable -l' -alias python='python3' -alias spcli='speedtest-cli --secure' -alias sshconfig='"${EDITOR}" -- ${HOME}/.ssh/config' -alias tmux='tmux -f "${XDG_CONFIG_HOME:-${HOME}/.config}"/tmux/tmux.conf' -alias tmuxrc='nvim -- "${XDG_CONFIG_HOME:-${HOME}/.config}"/tmux/tmux.conf' -alias tuir='tuir --no-flash' -alias wget='wget --hsts-file="${XDG_DATA_HOME}/wget-hsts"' - -# Navigation -alias dirconf='"${EDITOR}" -- "${XDG_CONFIG_HOME:-${HOME}/.config}/user-dirs.dirs"' -alias dotfiles='cd "${HOME}/Dotfiles"' -alias xch='cd -- ${XDG_CONFIG_HOME:-${HOME}/.config}' -alias xcah='cd -- ${XDG_CACHE_HOME:-${HOME}/.cache}' -alias xdh='cd -- ${XDG_DATA_HOME:-${HOME}/.local/share}' - -# Programming -# Use python-pytest-xdist plugin -#alias pytest='pytest --numprocesses=$(nproc)' -alias pyarchive='git archive -o rbackup-"$(python setup.py --version)".tar.gz --prefix=rbackup-"$(python setup.py --version)"/' - -# ssh -alias scpe='scp -i "${HOME}/.ssh/empress"' - -# system -alias bootloader='cd /boot/loader/entries' -alias myip='curl ifconfig.me' -alias restartfans='sudo systemctl restart fancontrol.service' - -# zsh -alias zdotdir='cd -- ${ZDOTDIR:-${HOME}/.zsh}' -alias zshaliases='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/00-aliases.zsh' -alias zbindings='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/keybindings.zsh' -alias zconf='cd -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d' -alias zfuncs='cd -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/functions' -alias zhist='${EDITOR} -- ${HISTFILE}' -alias zmod='cd -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/modules' -alias zpath='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/path.zsh' -alias zprompt='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/conf.d/prompt.zsh' -alias zshrc='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/.zshrc' -alias zshrefresh='source -- ${ZDOTDIR:-${HOME}/.zsh}/.zshrc' -alias zshenv='${EDITOR} -- ${ZDOTDIR:-${HOME}/.zsh}/.zshenv' - -# ---------- Parameterized Aliases ---------- -lsbin() { - if [[ -n $1 ]]; then - pacman -Qql $1 | rg bin - else - return 0 - fi -} - -rgenv () { - if [[ -n $1 ]]; then - env | rg --ignore-case $1 - else - return 0 - fi -} - -stow-config () { - local dotfile_dir="${HOME}/Dotfiles" - - for conf in "${@}"; do - if [[ -n ${conf} ]]; then - mkdir --parents "${dotfile_dir}/${conf}/.config" - mv "${XDG_CONFIG_HOME}/${conf}" "${dotfile_dir}/${conf}/.config" - cd "${dotfile_dir}" && stow "${conf}" - cd - - else - continue - fi - done -} - -getwifipassword() { - security find-generic-password -ga "$1" | rg "password" -} - diff --git a/zsh-macos/.config/zsh-macos/conf.d/fzf.zsh b/zsh-macos/.config/zsh-macos/conf.d/fzf.zsh deleted file mode 100644 index 7a582ba..0000000 --- a/zsh-macos/.config/zsh-macos/conf.d/fzf.zsh +++ /dev/null @@ -1,10 +0,0 @@ -# Setup fzf -# --------- - -# Auto-completion -# --------------- -[[ $- == *i* ]] && source "/usr/local/Cellar/fzf/0.35.1/shell/completion.zsh" - -# Key bindings -# ------------ -source "/usr/local/Cellar/fzf/0.35.1/shell/key-bindings.zsh" diff --git a/zsh-macos/.config/zsh-macos/conf.d/path.zsh b/zsh-macos/.config/zsh-macos/conf.d/path.zsh deleted file mode 100644 index 731a783..0000000 --- a/zsh-macos/.config/zsh-macos/conf.d/path.zsh +++ /dev/null @@ -1,4 +0,0 @@ -# PATH variable configuration -path=("${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path) - -export PATH diff --git a/zsh-macos/.config/zsh-macos/.zshrc b/zsh/.config/zsh/.zshrc similarity index 96% rename from zsh-macos/.config/zsh-macos/.zshrc rename to zsh/.config/zsh/.zshrc index 4188e7e..ff0c4cf 100755 --- a/zsh-macos/.config/zsh-macos/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -55,7 +55,7 @@ autoload -Uz cf # Make a directory, then change into it mkcd() { - [[ ! -d "${1}" ]] && gmkdir --parents -- "${1}" + [[ ! -d "${1}" ]] && mkdir --parents -- "${1}" cd "${1}" || exit } diff --git a/zsh/.config/zsh/conf.d/00-keybindings.zsh b/zsh/.config/zsh/conf.d/00-keybindings.zsh new file mode 100644 index 0000000..dc9637e --- /dev/null +++ b/zsh/.config/zsh/conf.d/00-keybindings.zsh @@ -0,0 +1,4 @@ +# bindkey -M viins '^r' history-incremental-search-backward +# bindkey -M vicmd '^r' history-incremental-search-backward + +# vim: syntax=zsh diff --git a/zsh-macos/.config/zsh-macos/conf.d/README b/zsh/.config/zsh/conf.d/README similarity index 100% rename from zsh-macos/.config/zsh-macos/conf.d/README rename to zsh/.config/zsh/conf.d/README diff --git a/zsh/.config/zsh/conf.d/completion.zsh b/zsh/.config/zsh/conf.d/completion.zsh new file mode 100644 index 0000000..03006d7 --- /dev/null +++ b/zsh/.config/zsh/conf.d/completion.zsh @@ -0,0 +1,27 @@ +## zsh-completion-generator +#GENCOMPL_FPATH="${HOME}/zsh-completions" +#source '/usr/share/zsh-completion-generator/zsh-completion-generator.plugin.zsh' + +autoload -Uz compinit +compinit + +# Tab completion menu +zstyle ':completion:*' menu select +zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS} + +zstyle ':completion:*:*:kill:*' menu yes select +zstyle ':completion:*:kill:*' force-list always + +zstyle ':completion:*:*:killall:*' menu yes select +zstyle ':completion:*:killall:*' force-list always + +# Disabling this option enables tab completion for aliases +#setopt complete_aliases + +# Case insensitive completion +zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*' + +# Automatically load new executables +zstyle ':completion:*' rehash true + +# vim: syntax=zsh diff --git a/zsh/.config/zsh/conf.d/kp.zsh b/zsh/.config/zsh/conf.d/kp.zsh new file mode 100644 index 0000000..afcaa08 --- /dev/null +++ b/zsh/.config/zsh/conf.d/kp.zsh @@ -0,0 +1,14 @@ +### PROCESS +# mnemonic: [K]ill [P]rocess +# show output of "ps -ef", use [tab] to select one or multiple entries +# press [enter] to kill selected processes and go back to the process list. +# or press [escape] to go back to the process list. Press [escape] twice to exit completely. + +kp() { + local pid=$(ps -ef | sed 1d | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[kill:process]'" | awk '{print $2}') + + if [[ -n "${pid}" && "${pid}" != "x" ]]; then + echo ${pid} | xargs kill -${1:-9} + kp + fi +} diff --git a/zsh/.config/zsh/conf.d/options b/zsh/.config/zsh/conf.d/options new file mode 100644 index 0000000..c994936 --- /dev/null +++ b/zsh/.config/zsh/conf.d/options @@ -0,0 +1,14 @@ +# automatically cd into a given directory +setopt autocd + +# history options +setopt append_history +setopt hist_ignore_all_dups + +# command correction +setopt correctall + +# prevent accidental overwriting of a file +setopt noclobber + +# vim: syntax=zsh diff --git a/zsh/.config/zsh/conf.d/prompt.zsh b/zsh/.config/zsh/conf.d/prompt.zsh new file mode 100644 index 0000000..9349f4f --- /dev/null +++ b/zsh/.config/zsh/conf.d/prompt.zsh @@ -0,0 +1,35 @@ +# allows substitution in the prompt +setopt PROMPT_SUBST + +# ========== VCS info ========== +autoload -Uz vcs_info +zstyle ':vcs_info:*' enable git +zstyle ':vcs_info:*' check-for-changes true +#zstyle ':vcs_info:git*' formats "%{$fg[grey]%} %{$fg[blue]%}%b%{$reset_color%}%m %u %c%{$reset_color%}" +zstyle ':vcs_info:git*' formats "%{$fg[grey]%}%{$fg[blue]%}%b%{$reset_color%}%m %u %c%{$reset_color%}" + +# ========== Vim Command Mode ========== +vim_ins_mode='ins' +vim_cmd_mode='cmd' +vim_mode=${vim_ins_mode} + +zle-keymap-select() { + vim_mode="${${KEYMAP/vicmd/${vim_cmd_mode}}/(main|viins)/${vim_ins_mode}}" + zle reset-prompt +} +zle -N zle-keymap-select + +zle-line-finish() { + vim_mode=${vim_ins_mode} +} +zle -N zle-line-finish + +# ========== Final Prompt ========== +precmd() { + vcs_info +} + +#PS1='%F{blue}%n%f@%m %F{green}%3~%f > ' +#RPS1='%F{green}${vim_mode}%f ${vcs_info_msg_0_} [%F{red}%?%f]' +PS1='%F{green}%3~%f %F{blue}>%f ' +RPS1='${vcs_info_msg_0_} [%F{red}%?%f]' diff --git a/zsh/.config/zsh/conf.d/sudo.zsh b/zsh/.config/zsh/conf.d/sudo.zsh new file mode 100644 index 0000000..eaa672c --- /dev/null +++ b/zsh/.config/zsh/conf.d/sudo.zsh @@ -0,0 +1,23 @@ +# Press escape twice to prepend the previous command with "sudo" +sudo-command-line() { + [[ -z ${BUFFER} ]] && zle up-history + if [[ ${BUFFER} == sudo\ * ]]; then + LBUFFER="${LBUFFER#sudo }" + elif [[ ${BUFFER} == $EDITOR\ * ]]; then + LBUFFER="${LBUFFER#$EDITOR }" + LBUFFER="sudoedit $LBUFFER" + elif [[ ${BUFFER} == sudoedit\ * ]]; then + LBUFFER="${LBUFFER#sudoedit }" + LBUFFER="$EDITOR $LBUFFER" + else + LBUFFER="sudo $LBUFFER" + fi +} + +zle -N sudo-command-line + +# Defined shortcut keys: [Esc] [Esc] +bindkey -M viins "\e\e" sudo-command-line +bindkey -M vicmd "\e\e" sudo-command-line + +# vim: syntax=zsh diff --git a/zsh/.config/zsh/conf.d/tmux.zsh b/zsh/.config/zsh/conf.d/tmux.zsh new file mode 100644 index 0000000..9b59e9e --- /dev/null +++ b/zsh/.config/zsh/conf.d/tmux.zsh @@ -0,0 +1,13 @@ +## load a tmux session +_load_tmux() { + if [[ -n "${TMUX}" ]]; then + echo "Already in a tmux session." + else + tmux + fi +} + +zle -N _load_tmux +bindkey -M viins "^y" _load_tmux + +# vim: syntax=zsh