clap/clap_complete_nushell/examples/nushell_completion.rs
2023-05-23 08:48:39 -05:00

12 lines
335 B
Rust

use clap::Command;
use clap_complete::generate;
use clap_complete_nushell::Nushell;
use std::io;
fn main() {
let mut cmd = Command::new("myapp")
.subcommand(Command::new("test").subcommand(Command::new("config")))
.subcommand(Command::new("hello"));
generate(Nushell, &mut cmd, "myapp", &mut io::stdout());
}