mirror of
https://github.com/clap-rs/clap
synced 2024-12-17 08:03:59 +00:00
18 lines
470 B
Text
18 lines
470 B
Text
module completions {
|
|
|
|
# testing nushell completions
|
|
export extern my-app [
|
|
--flag(-f) # cmd flag
|
|
--flg # cmd flag
|
|
-F # cmd flag
|
|
--option(-o): string # cmd option
|
|
--opt: string # cmd option
|
|
-O: string # cmd option
|
|
positional?: string
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|