input list for platform

Interactive list selection.

Signature

> input list {flags} (prompt)

Flags

  • --multi, -m: Use multiple results, you can press a to toggle all options on/off
  • --fuzzy, -f: Use a fuzzy select.

Parameters

  • prompt: the prompt to display

Input/output types:

inputoutput
list<any>list<any>

Examples

Return a single value from a list

> [1 2 3 4 5] | input list 'Rate it'

Return multiple values from a list

> [Banana Kiwi Pear Peach Strawberry] | input list --multi 'Add fruits to the basket'

Return a single record from a table with fuzzy search

> ls | input list --fuzzy 'Select the target'

Notes

Abort with esc or q.