Add __fish_sgrep

Missed in b85a8bb because of `git commit -a`.

Fixes #2372
This commit is contained in:
Fabian Homborg 2015-09-09 21:52:18 +02:00
parent b85a8bbbfe
commit bffeb664cc

View file

@ -0,0 +1,5 @@
function __fish_sgrep -d "Call grep without honoring GREP_OPTIONS settings"
set -l GREP_OPTIONS
command grep $argv
end