diff options
| author | Adam Vandenberg | 2010-05-30 13:00:51 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-30 13:00:51 -0700 |
| commit | b0bc592e17718d329b263ad5f8d44aebefa2271c (patch) | |
| tree | 022d0561763f59da98d5fa595243a991e9229945 /Library | |
| parent | cc34c0c3929e8ac4ad5bf9aa86e55b4c73cf8436 (diff) | |
| download | brew-b0bc592e17718d329b263ad5f8d44aebefa2271c.tar.bz2 | |
Tweak the bash completion script.
* Add --config
* Alphabetize various lists
* Remove some local temp variables
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Contributions/brew_bash_completion.sh | 38 |
1 files changed, 17 insertions, 21 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index eace3e88d..c23c3e05d 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -6,46 +6,42 @@ _brew_to_completion() { local actions cur prev prev_index - local cellar_contents formulae which_cellar brew_base + local cellar_contents formulae COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" - - # We only complete unabbreviated commands... - actions="cat cleanup configure create deps doctor edit generate homepage info install list link log outdated prune remove search unlink update uses" - - if [[ ( ${COMP_CWORD} -eq 1 ) && ( ${COMP_WORDS[0]} == brew ) ]] ; then - # Subcommand list + + # We usually only complete unabbreviated commands. + actions="--config cat cleanup configure create deps doctor edit generate home info install link list log outdated prune remove search unlink update uses" + + if [[ ( ${COMP_CWORD} -eq 1 ) && ( ${COMP_WORDS[0]} == brew ) ]]; then + # Subcommand list. COMPREPLY=( $(compgen -W "${actions}" -- ${cur}) ) return 0 else - # Subcommands - brew_base=`brew --repository` - - # We want the non-switch previous word + # Find the previous non-switch word prev_index=$((COMP_CWORD - 1)) prev="${COMP_WORDS[prev_index]}" - while [[ $prev == -* ]] - do + while [[ $prev == -* ]]; do prev_index=$((prev_index - 1)) prev="${COMP_WORDS[prev_index]}" done - + case ${prev} in - # Commands that take a formula... - cat|deps|edit|home|homepage|install|log|uses) - formulae=`ls ${brew_base}/Library/Formula/ | sed "s/\.rb//g"` + # Commands that take a formula. + cat|deps|edit|home|homepage|info|install|log|uses) + formulae=$(ls $(brew --repository)/Library/Formula/ | sed "s/\.rb//g") COMPREPLY=( $(compgen -W "${formulae}" -- ${cur}) ) return 0 ;; - # Commands that take an existing brew... - abv|cleanup|info|list|link|ls|ln|rm|remove|uninstall|unlink) - cellar_contents=`ls ${brew_base}/Cellar/` + # Commands that take an existing brew. + abv|cleanup|link|list|ln|ls|remove|rm|uninstall|unlink) + cellar_contents=$(ls $(brew --cellar)) COMPREPLY=( $(compgen -W "${cellar_contents}" -- ${cur}) ) return 0 ;; - + esac fi } |
