AJ Alt

Results 88 comments of AJ Alt

I don't generally have library-specific extensions since calling `.convert { it.toWhatever }` seems easy enough. But since paths have some extra validation functionality like `canBeFolder`, it might make sense to...

I might be misunderstanding the request, but if you want all the options in the group to be required all the time, you don't need `coocurring`. Just do `val group...

No, I'm not sure how that would work. Options aren't ordered, so if you called the group option more than once, how would we know which instance of the group...

The problem is that options aren't ordered, so trying to parse repeated groups would be ambiguous: ``` myCmd --valueAargs1=x --valueAargs2=y --groupedOpt=valueA --valueAargs2=z --groupedOpt=valueA --valueAargs2=a ```

Yes. `multiple` would mean that a group can be specified more than once, so there's no way to know which instance of a given group any invocation of one of...

No, but you can pass information between subcommands with a [context object](https://ajalt.github.io/clikt/commands/#nested-handling-and-contexts)

If this is still an issue on the latest, release, please open a new issue