Remko Popma
Remko Popma
Hi @notwhoyouthinkiam, can you try again with picocli 4.6.3? There have been many autocompletion improvements since 4.2.0, and this may no longer be a problem.
Hi James, thanks for your question! Yes, this facility already exists in picocli's programmatic API, see the **Programmatic API** and **Bindings** part of my answer below, but I do wonder...
@jameskleeh Did this answer your question?
Ok, let me know if you run into any snags or have questions. The programmatic API docs are not as detailed as the main user manual; let me know if...
Wild idea: depending on how many commands and options your application has, it may be just as easy to generate the source code. Building such a code generator is on...
I agree that 2-9 seconds is a long time to start up. Looking at the profiler screenshots, I see ~150ms for picocli initialization, and 186ms for the command execution. The...
> I'm not even sure I use jansi that an optional dependency? I personally mostly use Linux and I certainly didn't need it there. On what OS did you profile...
There is a list-like facility for unmatched parameters: see [Unmatched Input](https://picocli.info/#_unmatched_input). The easiest way to use this is with the `@Unmatched` annotation: ```java class MyApp { @Unmatched List unmatched; }...
Yes, if you have a positional parameter list or array defined that captures all indices, then the `@Unmatched` list will only contain "unknown options": args that "resemble" options but are...
Good point. Thank you for raising this! Will you be able to provide a pull request for this?