Arg::short_alias
short_alias
Section titled “short_alias ”Add an alias, which functions as a hidden short flag.
Example
Section titled “Example”name = "prog"[args]test = { short = 't', short-alias = 'e', action = "set" }
name: progargs: test: short: t short-alias: e action: set
{ "name": "prog", "args": { "test": { "short": "t", "short-alias": "e", "action": "set" } }}
prog -e cool
Output
Section titled “Output”claptrap_test='cool'