mirror of
https://github.com/clap-rs/clap
synced 2025-01-05 17:28:42 +00:00
e782775229
Found while trying to add Nushell completions to [`jj`](https://github.com/martinvonz/jj).
30 lines
544 B
Text
30 lines
544 B
Text
module completions {
|
|
|
|
export extern my-app [
|
|
-c
|
|
-v
|
|
--help(-h) # Print help
|
|
]
|
|
|
|
# Subcommand with a second line
|
|
export extern "my-app test" [
|
|
-d
|
|
-c
|
|
--help(-h) # Print help
|
|
]
|
|
|
|
# Print this message or the help of the given subcommand(s)
|
|
export extern "my-app help" [
|
|
]
|
|
|
|
# Subcommand with a second line
|
|
export extern "my-app help test" [
|
|
]
|
|
|
|
# Print this message or the help of the given subcommand(s)
|
|
export extern "my-app help help" [
|
|
]
|
|
|
|
}
|
|
|
|
export use completions *
|