mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
21 lines
427 B
Text
21 lines
427 B
Text
module completions {
|
|
|
|
# Tests completions
|
|
export extern my-app [
|
|
file?: string # some input file
|
|
--config(-c) # some config file
|
|
--conf # some config file
|
|
-C # some config file
|
|
choice?: string
|
|
--version(-V) # Print version information
|
|
]
|
|
|
|
# tests things
|
|
export extern "my-app test" [
|
|
--case: string # the case to test
|
|
--version(-V) # Print version information
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|