Merge pull request #7438 from atetubou/create_completion

completions/bash: add flags for create
This commit is contained in:
Mike McQuaid 2020-04-26 13:56:55 +01:00 committed by GitHub
commit 7b48dd59b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,7 +147,25 @@ _brew_create() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
-*)
__brewcomp "--autotools --cmake --meson --no-fetch --HEAD --set-name --set-version --tap --force --verbose --debug --help"
__brewcomp "
--HEAD
--autotools
--cmake
--debug
--force
--go
--help
--meson
--no-fetch
--perl
--python
--ruby
--rust
--set-name
--set-version
--tap
--verbose
"
return
;;
esac