clap/src
Kevin K 5e2af8c96a
setting: adds a setting to disable args being allowed between subcommands (ArgsNegateSubcommands)
Specifies that use of a valid [argument] negates [subcomands] being used after. By default
`clap` allows arguments between subcommands such as
`<cmd> [cmd_args] <cmd2> [cmd2_args] <cmd3> [cmd3_args]`. This setting disables that
functionality and says that arguments can only follow the *final* subcommand. For instance
using this setting makes only the following invocations possible:

* `<cmd> <cmd2> <cmd3> [cmd3_args]`
* `<cmd> <cmd2> [cmd2_args]`
* `<cmd> [cmd_args]`

Closes #793
2016-12-30 23:21:28 -05:00
..
app setting: adds a setting to disable args being allowed between subcommands (ArgsNegateSubcommands) 2016-12-30 23:21:28 -05:00
args chore: clippy run 2016-12-30 22:08:28 -05:00
completions style: standardizes debug calls and output 2016-12-29 23:34:46 -05:00
errors.rs chore: rustfmt run 2016-11-20 14:47:04 -05:00
fmt.rs style: standardizes debug calls and output 2016-12-29 23:34:46 -05:00
lib.rs docs: fixes the doc landing page 2016-11-20 21:27:17 -05:00
macros.rs style: standardizes debug calls and output 2016-12-29 23:34:46 -05:00
osstringext.rs style: standardizes debug calls and output 2016-12-29 23:34:46 -05:00
strext.rs style: rustfmt run 2016-05-06 17:52:23 -04:00
suggestions.rs Fix linting errors from rustc 1.14.0 2016-10-04 12:26:51 -04:00
usage_parser.rs style: standardizes debug calls and output 2016-12-29 23:34:46 -05:00