1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-23 01:46:14 +00:00
prezto/plugins/brew/brew.plugin.zsh

20 lines
409 B
Bash
Raw Normal View History

2011-08-31 03:16:15 +00:00
# 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'
2011-08-31 03:16:15 +00:00