mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 07:12:32 +00:00
17 lines
337 B
Text
17 lines
337 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
|
|
--version(-V) # Print version information
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|