picocli
picocli copied to clipboard
Picocli is a modern framework for building powerful, user-friendly, GraalVM-enabled command line apps with ease. It supports colors, autocompletion, subcommands, and more. In 1 source file so apps ca...
maybe this is already possible but I didn't see it, I'd like to be able to access all options passed, or maybe just the ones not configured with picocli. I'm...
When I e.g. ```java System.setProperty("picocli.usage.width", "asdf"); ``` and then print the usage help, the output gets spammed: ``` [picocli WARN] Invalid picocli.usage.width value 'asdf'. Using usage width 80. [picocli WARN]...
This is in the same setup I have described in #1402 (using picocli in Minecraft). I've implemented type converters for things such as player names/UUIDs --> `Player`, however I'd also...
Hi, is there a way to hide commands dynamically? I use picocli with jline3 and want to show some commands only if a connection with a server is established. Best...
In interactive mode (using picocli with jline3) the help is displayed only at first level of commands. Subcommand help is not displayed. The issue seems to be in _org.jline.console.impl.SystemRegistryImpl#help_ method...
### Context: Similarly to issue [736](https://github.com/remkop/picocli/issues/736) I would like to manage my options in runtime. What differs from issue [736](https://github.com/remkop/picocli/issues/736) is that my options are wrapped in an Argument Group....
Hi, Maybe I missed something but when one of my positional parameters can not be converted/validated, I get an `Unmatched argument at index ...` instead of a clear error about...
Hi, I am currently working on a project where we have implemented a few custom commands. When I just type `help` command (without any subcommand), it displays two sections. One...
Following up from: https://github.com/remkop/picocli/issues/1137 I am still running in to this with picocli 4.6.1: https://gist.github.com/agibsonccc/0e90c40e765e417d927de3c35ee6fabc I am using graalvm jdk 11: graalvm-ce-java11-21.2.0
I'm looking for more examples of mixing Picocli with JLine for a rich-featured command line tool. My use case is simple: rolling dice expressions (ref: https://github.com/binkley/kotlin-dice) My goals are multiple...