mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 15:52:44 +00:00
18 lines
337 B
Text
18 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 *
|