clapcompletenushell

Generates Nushell completions for clap based CLIs

Crates.io Crates.io License docs.rs Build Status

Examples

myapp.rs

```rust use clap::{builder::PossibleValue, Arg, ArgAction, Command, ValueHint}; use clapcomplete::generate; use clapcomplete_nushell::Nushell; use std::io;

fn main() { let mut cmd = Command::new("myapp") .version("3.0") .propagateversion(true) .about("Tests completions") .arg( Arg::new("file") .valuehint(ValueHint::FilePath) .help("some input file"), ) .arg( Arg::new("config") .action(ArgAction::Count) .help("some config file") .short('c') .visibleshortalias('C') .long("config") .visiblealias("conf"), ) .arg(Arg::new("choice").valueparser(["first", "second"])) .subcommand( Command::new("test").about("tests things").arg( Arg::new("case") .long("case") .action(ArgAction::Set) .help("the case to test"), ), ) .subcommand( Command::new("somecmd") .about("top level subcommand") .subcommand( Command::new("subcmd").about("sub-subcommand").arg( Arg::new("config") .long("config") .action(ArgAction::Set) .value_parser([PossibleValue::new("Lest quotes aren't escaped.")]) .help("the other case to test"), ), ), );

generate(Nushell, &mut cmd, "myapp", &mut io::stdout());

} ```

myapp.nu

```nu module completions {

def "nu-complete myapp choice" [] { [ "first" "second" ] }

# Tests completions export extern myapp [ file?: string # some input file --config(-c) # some config file --conf # some config file -C # some config file choice?: string@"nu-complete myapp choice" --version(-V) # Print version information ]

# tests things export extern "myapp test" [ --case: string # the case to test --version(-V) # Print version information ]

# top level subcommand export extern "myapp some_cmd" [ --version(-V) # Print version information ]

def "nu-complete myapp somecmd subcmd config" [] { [ "\"Lest quotes aren't escaped.\"" ] }

# sub-subcommand export extern "myapp somecmd subcmd" [ --config: string@"nu-complete myapp somecmd subcmd config" # the other case to test --version(-V) # Print version information ]

}

use completions * ```