mirror of
https://github.com/clap-rs/clap
synced 2024-11-15 00:57:15 +00:00
f9e692548e
Prior to this change, values were always delimited by default. This was causing issues with code where the arg had a single value, and contained valid commas and shouldn't be delimited. This commit changes the rules slightly so that values are not delimited by default, *unless* one of the methods which implies multiple values was used (max_values, value_names, etc.). This means single value args should *not* be delimited by default. If one wishes to use the old way, they can add `Arg::use_delimiter(true)` to such code. Closes #655 |
||
---|---|---|
.. | ||
app | ||
args | ||
completions.rs | ||
errors.rs | ||
fmt.rs | ||
lib.rs | ||
macros.rs | ||
osstringext.rs | ||
strext.rs | ||
suggestions.rs | ||
usage_parser.rs |