Ignore user-defined grep aliases

This commit is contained in:
Miles Whittaker
2014-09-14 00:53:53 -04:00
parent 175fe158ed
commit ce53b9b2a5
4 changed files with 10 additions and 10 deletions

View File

@@ -476,7 +476,7 @@ speed of the traversal.
```sh
# Copy the original fzf function to __fzf
declare -f __fzf > /dev/null ||
eval "$(echo "__fzf() {"; declare -f fzf | grep -v '^{' | tail -n +2)"
eval "$(echo "__fzf() {"; declare -f fzf | \grep -v '^{' | tail -n +2)"
# Use git ls-tree when possible
fzf() {