From bffeb664cc5cabc4196106d50d830aaf029d06e9 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Wed, 9 Sep 2015 21:52:18 +0200 Subject: [PATCH] Add __fish_sgrep Missed in b85a8bb because of `git commit -a`. Fixes #2372 --- share/functions/__fish_sgrep.fish | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 share/functions/__fish_sgrep.fish diff --git a/share/functions/__fish_sgrep.fish b/share/functions/__fish_sgrep.fish new file mode 100644 index 000000000..36c77389a --- /dev/null +++ b/share/functions/__fish_sgrep.fish @@ -0,0 +1,5 @@ + +function __fish_sgrep -d "Call grep without honoring GREP_OPTIONS settings" + set -l GREP_OPTIONS + command grep $argv +end