clap/clap_complete_nushell/tests/snapshots/basic.nu

31 lines
506 B
Text
Raw Normal View History

2022-10-22 15:27:04 +00:00
module completions {
export extern my-app [
-c
-v
2023-05-23 13:50:43 +00:00
--help(-h) # Print help
2022-10-22 15:27:04 +00:00
]
# Subcommand
export extern "my-app test" [
-d
-c
2023-05-23 13:50:43 +00:00
--help(-h) # Print help
]
# Print this message or the help of the given subcommand(s)
export extern "my-app help" [
]
# Subcommand
export extern "my-app help test" [
]
# Print this message or the help of the given subcommand(s)
export extern "my-app help help" [
2022-10-22 15:27:04 +00:00
]
}
export use completions *