Rename exclude options + minor code reformat

This commit is contained in:
zawz 2020-11-06 17:43:37 +01:00
parent a777608f08
commit dda4a87b28
2 changed files with 17 additions and 17 deletions

View file

@ -28,8 +28,8 @@ ztd::option_set gen_options()
ztd::option("\r [var/fct processing]"),
ztd::option("minimize-var", false, "Minimize variable names"),
ztd::option("minimize-fct", false, "Minimize function names"),
ztd::option("var-exclude", true, "List of matching regex to ignore for variable processing", "list"),
ztd::option("fct-exclude", true, "List of matching regex to ignore for function processing", "list"),
ztd::option("exclude-var", true, "List of matching regex to ignore for variable processing", "list"),
ztd::option("exclude-fct", true, "List of matching regex to ignore for function processing", "list"),
ztd::option("list-var", false, "List all variables invoked in the script"),
ztd::option("list-fct", false, "List all functions invoked in the script"),
ztd::option("list-cmd", false, "List all functions invoked in the script"),