diff --git a/src/clap_app.rs b/src/clap_app.rs index 1e81618e..21fb0493 100644 --- a/src/clap_app.rs +++ b/src/clap_app.rs @@ -332,6 +332,7 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { .takes_value(true) .value_name("width") .hidden_short_help(true) + .allow_hyphen_values(true) .validator( |t| { let is_offset = t.starts_with('+') || t.starts_with('-');