Remko Popma
Remko Popma
Hi @LorenKeagle, thank you for raising this! This seems related to https://github.com/remkop/picocli/issues/1182 # Status To summarize the discussion in #1182: as of picocli 4.5.1, inherited options do not combine well...
@LorenKeagle Glad to hear you got something that is working. 👍 Ultimately that is what matters! 😄
@tomdcc Thank you for raising this! I think you can achieve your requirements with a mixin (see example below), so I did not understand this part of your comment: >...
@pio-kol @tomdcc Thanks for the clarification. It took a bit of creative puzzling, but I have been able to come up with a solution that meets your requirements and works...
Yes, this can be done; PropertiesDefaultProvider could be modified to use the same logic as used for resource bundles. That said, for picocli-4.1 the workaround is to use `split` on...
@JavaDev99, @r2mzes's comment is correct. Currently picocli's repeatable subcommands [do not support](https://picocli.info/#_repeatable_subcommands_specification) this. I will look into whether it is feasible to support this.
Sorry I have had little time to look into this... Would the problem be resolved by putting the `@ArgGroup` annotation on the `SpecificOptions` class?
Can you explain the use case a bit? Why do you want to do this?
Interesting, yes, it may be possible to improve the `AutoComplete::complete` method that drives completion in JLine. See https://github.com/remkop/picocli/blob/2602687133731cbbea15e63603c4dcb042e6508a/src/main/java/picocli/AutoComplete.java#L776 for details. Will you be able to provide a pull request for...
Hi @notwhoyouthinkiam, can you try again with picocli 4.3.2? There have been some improvements in this area in [4.3.0](https://github.com/remkop/picocli/releases#4.3.0-fixes), things may be a bit better in the latest version.