This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/plugins/brew/brew.plugin.zsh
2012-01-23 20:40:15 -05:00

20 lines
409 B
Bash

# Complete brew.
completion_file="${0:h}/_brew"
if [[ ! -e "$completion_file" ]]; then
if [[ -L "$completion_file" ]]; then
unlink "$completion_file" 2> /dev/null
fi
if (( $+commands[brew] )); then
ln -s \
"$(brew --prefix)/Library/Contributions/brew_zsh_completion.zsh" \
"$completion_file" \
2> /dev/null
fi
fi
unset completion_file
# Aliases
alias brews='brew list -1'