Merge pull request #3165 from hbin/fix-alias-afind-osx

The executable command on Mac OSX is 'ack' rather than 'ack-grep'.
master
Robby Russell 11 years ago
commit 5d24ba4228
  1. 7
      lib/misc.zsh

@ -22,7 +22,12 @@ alias _='sudo'
alias please='sudo'
## more intelligent acking for ubuntu users
alias afind='ack-grep -il'
if which ack-grep > /dev/null;
then
alias afind='ack-grep -il'
else
alias afind='ack -il'
fi
# only define LC_CTYPE if undefined
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then

Loading…
Cancel
Save