mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Added bruno completions (#10388)
* Added bruno completions * Modified format completion to include formats as closed list arguments
This commit is contained in:
parent
ce92472af1
commit
8bbf760860
15
share/completions/bru.fish
Normal file
15
share/completions/bru.fish
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
complete -c bru -s h -l help -d "Show help"
|
||||
complete -c bru -l version -d "Show version number"
|
||||
|
||||
complete -c bru -a run -d "Run a request"
|
||||
|
||||
complete -c bru -s r --condition '__fish_seen_subcommand_from run' -d "Indicates a recursive run"
|
||||
complete -c bru -l cacert --condition '__fish_seen_subcommand_from run' -d "CA certificate to verify peer against"
|
||||
complete -c bru -l env --condition '__fish_seen_subcommand_from run' -d "Environment variables"
|
||||
complete -c bru -l env-var --condition '__fish_seen_subcommand_from run' -d "Overwrite a single environment variable, multiple usages possible"
|
||||
complete -c bru -s o -l output --condition '__fish_seen_subcommand_from run' -d "Path to write file results to"
|
||||
complete -c bru -s f -l format --condition '__fish_seen_subcommand_from run' -d "Format of the file results" -xa "json junit html"
|
||||
complete -c bru -l insecure --condition '__fish_seen_subcommand_from run' -d "Allow insecure connections"
|
||||
complete -c bru -l tests-only --condition '__fish_seen_subcommand_from run' -d "Only run requests that have a test"
|
||||
complete -c bru -l bail --condition '__fish_seen_subcommand_from run' -d "Stop execution after a failure of a request, test or assertion"
|
Loading…
Reference in New Issue
Block a user