clap/tests/snapshots/value_hint.nu
2022-11-11 22:06:05 +08:00

26 lines
462 B
Text

module completions {
def "my-app choice" [] {
[ "bash" "fish" "zsh" ]
}
export extern my-app [
--choice: string@"my-app choice"
--unknown: string
--other: string
--path(-p): string
--file(-f): string
--dir(-d): string
--exe(-e): string
--cmd-name: string
--cmd(-c): string
command_with_args?: string
--user(-u): string
--host(-H): string
--url: string
--email: string
]
}
use completions *