Is there a way to show a prompt such that the user...
# clikt
c
Is there a way to show a prompt such that the user can select multiple options from the prompt? Something similar to this, but imagine if I wanted to allow selecting multiple languages.
I've seen some
npm create
family of tools that do this - they show what look like checkboxes in the terminal and you can use a combination of cursor keys and
Space
to select/deselect. That would be nice but I'm also okay with a more basic solution (like the user entering a comma-separated list of numbers)
a
Mordant (which clikt uses for i/o) doesn't have any support for cursor input right now.
gratitude thank you 1