在短值中使用多个字母
Use more than one letter in short-value
我正在使用 clap
来解析参数。我想在参数中使用单破折号 (-) 和多个字符,例如 -Fmin 1
。添加 long("Fmin")
给了我,但有两个破折号 (--)。
我知道同时使用单个破折号和单个字符是一种规范。但是在使用 short() 形式时是否可以让 clap 使用多个字符?或者覆盖长格式,使其默认为单个破折号?
let matches = App::new("clap")
.arg(Arg::with_name("Fmin")
.required(false)
.takes_value(true)
.short("Fmin")
.multiple(false)
.possible_values(&["min"])
)
.get_matches();
is it possible to have clap use more than a single character when using the short() form? Or override the long-form so it defaults to a single dash?
根据 this issue 判断,clap 尚不支持单连字符长选项。
我正在使用 clap
来解析参数。我想在参数中使用单破折号 (-) 和多个字符,例如 -Fmin 1
。添加 long("Fmin")
给了我,但有两个破折号 (--)。
我知道同时使用单个破折号和单个字符是一种规范。但是在使用 short() 形式时是否可以让 clap 使用多个字符?或者覆盖长格式,使其默认为单个破折号?
let matches = App::new("clap")
.arg(Arg::with_name("Fmin")
.required(false)
.takes_value(true)
.short("Fmin")
.multiple(false)
.possible_values(&["min"])
)
.get_matches();
is it possible to have clap use more than a single character when using the short() form? Or override the long-form so it defaults to a single dash?
根据 this issue 判断,clap 尚不支持单连字符长选项。