I'm currently trying to improve a Spring Shell application, and one of thing that would make it considerably better would be if it would support tab-completion for values as well as the options.
As an example, if my CLI had a command getInfo --name <name>
, where <name>
is a name from a finite set of names in the DB, it would be handy to be able to do
> getInfo --name Lu<tab>
Lucy Luke Lulu
> getInfo --name Luk<tab>
> getInfo --name Luke
Is there any way to do this using the existing Spring Shell tooling? I've had a poke around in the documentation and can't find anything about autocompleting values..
Cheers!
For Spring Shell 2, you need to implement the
ValueProvider
interface.