Remko Popma

Results 381 comments of Remko Popma

@soccermitchy Apologies for my late reply; I was traveling with family. To be honest, I am not sure that I understand what problem you are trying to solve, but I...

@soccermitchy Did you have a chance to try the model transformer and have you found a solution for your use case?

Hi @eqvis, One idea is to use a custom `IHelpSectionRenderer`, see this example: https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/customhelp/ConditionallyShowSubcommands.java Another idea is to use a custom `IHelpFactory`, see this example: https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/customhelp/AlphabeticSubcommands.java I hope this helps....

Yes, that is one idea. Partial completion candidates may be a bit harder to filter out, but probably doable. For example, you want to filter out subcommand "mysub". Assume that...

Hi @eqvis, do you have any follow-up questions on this, or can this ticket be closed?

@eqvis Just took another look at this issue again (thanks for your patience), and had this idea: have you tried changing the `hidden` attribute on the usage help message? Internally...

Hi @kaushalkumar, thank you for your patience. I finally got around to looking at this issue. JLine3's SystemRegistryImpl - looking at the code, I agree that it only looks at...

I can see how this could be useful. Will you be able to provide a pull request for this?

@sbernard31 Thank you for the clarification. Picocli cannot make that statement because picocli allows multiple positional parameters to be defined with overlapping ranges: it is perfectly valid (although unusual) to...

Several things come to mind. First, do you feel like working on this? I am willing to review pull requests to improve this situation. I currently don't have time to...