]> arthur.barton.de Git - brew-completion.git/blobdiff - brew-completion.sh
Added option "--git" to brew "install" command
[brew-completion.git] / brew-completion.sh
index 303e2193041e5816c5242a021030e6d07f6b3ee9..e79a16e16fec6ca5f0aa563655ab155b9b82a5ac 100644 (file)
@@ -48,25 +48,25 @@ _brew()
        done
 
        case "$cmd" in
-               "cleanup"|"edit"|"home"|"log"|"prune" \
+               "cat"|"cleanup"|"deps"|"edit"|"home"|"log"|"prune"|"uses" \
                |"--cache"|"--cellar"|"--prefix")
                        _brew_formula "$cur"
                        return 0
                        ;;
-               "link"|"remove"|"uninstall"|"unlink")
+               "link"|"remove"|"rm"|"uninstall"|"unlink")
                        _brew_formula_installed "$cur"
                        return 0
                        ;;
                "create")
                        if [[ "$cur" == -* ]]; then
-                               COMPREPLY=( $(compgen -W '--macports' \
-                                       -- "$cur") )
+                               COMPREPLY=( $(compgen -W '--macports --fink \
+                                       --cache' -- "$cur") )
                        fi
                        return 0
                        ;;
                "info")
                        if [[ "$cur" == -* ]]; then
-                               COMPREPLY=( $(compgen -W '--github' \
+                               COMPREPLY=( $(compgen -W '--all --github' \
                                        -- "$cur") )
                        else
                                _brew_formula "$cur"
@@ -75,7 +75,7 @@ _brew()
                        ;;
                "install")
                        if [[ "$cur" == -* ]]; then
-                               COMPREPLY=( $(compgen -W '--HEAD -H \
+                               COMPREPLY=( $(compgen -W '--git --HEAD -H \
                                        --debug -d --interactive -i
                                        --verbose -v --ignore-dependencies' \
                                        -- "$cur") )
@@ -110,9 +110,10 @@ _brew()
                        --help --prefix --version -v -H' \
                        -- "$cur") )
        elif [ "$cmd" = "" ]; then
-               COMPREPLY=( $(compgen -W 'cleanup create edit home info \
-                       install link list log outdated prune remove search \
-                       uninstall unlink update $EXTCMD' -- "$cur") )
+               COMPREPLY=( $(compgen -W 'cat cleanup create deps edit home \
+                       info install link list log outdated prune remove rm \
+                       search uninstall unlink update uses $EXTCMD' \
+                       -- "$cur") )
        fi
 }
 complete -F _brew brew