You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
660 B
Markdown

# nu-plugin-dialog
[![asciicast](https://asciinema.org/a/HGEbzIVAi9YZwmIvoJOzfXuLP.svg)](https://asciinema.org/a/HGEbzIVAi9YZwmIvoJOzfXuLP)
This plugin adds more options to prompt for user input to nushell.
It mainly uses the [dialoguer](https://github.com/console-rs/dialoguer) crate for prompts.
## Example Usage
```nu
# select a file
let selected_file = ( ls / | get name | ask select $in --fuzzy --prompt "Select a file" )
# ask for confirmation
let quit = ( ask confirm "Are you sure that you want to quit?" --default false )
if $quit {
exit
}
```
For more information run `ask --help` or pass `--` help to the subcommands.
## License
CNPLv7+