diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-04 10:00:37 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-04 10:00:37 -0700 |
commit | f104d1624db764500f74e97d1161acc4aefec8d2 (patch) | |
tree | af6eb6753413873961f6e1a99dbb42cd09f42212 /lib | |
parent | 920ab071cb5d7d0cf0c71dab934e5856b95b68fb (diff) | |
parent | 2d9df4468f5650d0d16cc789c96d828fb0dff4aa (diff) | |
download | zsh-f104d1624db764500f74e97d1161acc4aefec8d2.tar.gz zsh-f104d1624db764500f74e97d1161acc4aefec8d2.tar.bz2 zsh-f104d1624db764500f74e97d1161acc4aefec8d2.zip |
Merge pull request #4455 from swvjeff/master
Fix 'ack-grep' bug for non-ubuntu users
Diffstat (limited to 'lib')
-rw-r--r-- | lib/misc.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/misc.zsh b/lib/misc.zsh index 223d61509..8ff076e77 100644 --- a/lib/misc.zsh +++ b/lib/misc.zsh @@ -22,7 +22,7 @@ alias _='sudo' alias please='sudo' ## more intelligent acking for ubuntu users -if which ack-grep > /dev/null; +if which ack-grep &> /dev/null; then alias afind='ack-grep -il' else |