mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +00:00
Merge pull request #3896 from cakebaker/expand_fix_too_long_line
expand: fix line that's too long
This commit is contained in:
commit
b62b108158
1 changed files with 7 additions and 3 deletions
|
@ -296,19 +296,23 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
.value_name("N, LIST")
|
.value_name("N, LIST")
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
.multiple_occurrences(true)
|
.multiple_occurrences(true)
|
||||||
.help("have tabs N characters apart, not 8 or use comma separated list of explicit tab positions"),
|
.help(
|
||||||
|
"have tabs N characters apart, not 8 or use comma separated list \
|
||||||
|
of explicit tab positions",
|
||||||
|
),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new(options::NO_UTF8)
|
Arg::new(options::NO_UTF8)
|
||||||
.long(options::NO_UTF8)
|
.long(options::NO_UTF8)
|
||||||
.short('U')
|
.short('U')
|
||||||
.help("interpret input file as 8-bit ASCII rather than UTF-8"),
|
.help("interpret input file as 8-bit ASCII rather than UTF-8"),
|
||||||
).arg(
|
)
|
||||||
|
.arg(
|
||||||
Arg::new(options::FILES)
|
Arg::new(options::FILES)
|
||||||
.multiple_occurrences(true)
|
.multiple_occurrences(true)
|
||||||
.hide(true)
|
.hide(true)
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
.value_hint(clap::ValueHint::FilePath)
|
.value_hint(clap::ValueHint::FilePath),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue