nu_plugin_dialog

Crates.ionu_plugin_dialog
lib.rsnu_plugin_dialog
version0.2.0
sourcesrc
created_at2023-04-08 15:36:46.29826
updated_at2023-04-10 09:50:45.379018
descriptionA nushell plugin for user interaction
homepage
repositoryhttps://github.com/Trivernis/nu-plugin-dialog
max_upload_size
id833643
size90,736
Julius Riegel (Trivernis)

documentation

README

nu-plugin-dialog

asciicast

This plugin adds more options to prompt for user input to nushell. It mainly uses the dialoguer crate for prompts.

Example Usage

# 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+

Commit count: 11

cargo fmt