kotlin-argparser icon indicating copy to clipboard operation
kotlin-argparser copied to clipboard

Easy to use and concise yet powerful and robust command line argument parsing for Kotlin

Results 33 kotlin-argparser issues
Sort by recently updated
recently updated
newest added

On any SystemExitException *except* for --help there is no obvious way I could find to print the help text. In general on error I'd like to print the help text....

enhancement

I want display table like message with several nested spaces for indentaion, e.g. ``` AA BB .. CC DD EE .. FF ........... F G .. H ``` But multiple...

If use cascade application running helps to proceed arguments for Application Runner and Single application

`ArgParser` methods like `adding`, `flagging`, etc. should only use the public API, but the `PosixNaming` class is internal.

bug

Sub commands (as used by `git` or `p4`, for example) would be nice: myCommand --foo --bar subcommand --baz --quux The arguments after the subcommand should be disjoint from those of...

enhancement

Not sure whether it's something that should be part of the core of argparser but I came across a usecase which consists of multiple arguments (flags) being collected to obtain...

enhancement

Fix #9 Implement basic functionallity for generating bash/zsh autocompletion script. Note: The implementation of Delegate:toAutoCompletion is maybe not the best way to do this. But I needed a way to...

As suggested by @mikehearn: > It'd be great if you could provide some screenshots showing what a program that uses argparse looks like to the user, both help text and...

enhancement

The `--help` for GNU `ls` looks like: ``` --color[=WHEN] colorize the output; WHEN can be 'always' (default if omitted), 'auto', or 'never'; more info below ``` You can say: -...

enhancement

It would be nice to have a parser mode which parses all arguments as long arguments regardless of the amount of dashes, so you could have a parser that parses...

enhancement