Remko Popma

Results 381 comments of Remko Popma

Ok, interesting. You may like the fact that picocli is in a [single source file](https://github.com/remkop/picocli/wiki/FAQ) so applications also have the option to include it as source to avoid the external...

Update: picocli 4.0 adds some features that may be of interest: * repeatable nested [argument groups](https://picocli.info/#_argument_groups) * [negatable options](https://picocli.info/#_negatable_options) ("no-") * [execute](https://picocli.info/#execute) API improves exit code support and reduces boilerplate...

Hi Dennis, sorry I have moved on with my project; I won't be able to assist.

One idea: If you were to publish that DurationConverter, I could point to it from the picocli user manual... It may be good to have a set of community-driven converters.

I suspect this is a Micronaut issue. (Picocli only handles `picocli` annotations and ignores all other annotations.) Maybe Micronaut has special handling for picocli annotations, and this interferes with normal...

Thanks for letting me know! I think those are part of some work in progress, but I haven’t looked at it in a while. I’ll take a closer look when...

> Lastly I haven't looked into what's in the `ArgSpec`, but if I don't need it I'm sure it doesn't hurt to pass it. From the `ArgSpec`, one can get...

I am not opposed to the idea of having a list of type conversion factories, with `add` and `remove` methods instead of `get/set` methods, iterating backwards, and having the existing...

@ahrytsiuk Interesting idea. Will you be able to provide a pull request for this with thorough tests and documentation?

Yes, that looks good. Some other things I noticed (there may be others): * the `ILookup` interface is nested in the `CommandLine.Model.Interpolator` class. I don't think that the `Interpolator` class...