aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-09 21:52:18 +0200
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-09 21:52:18 +0200
commitbffeb664cc5cabc4196106d50d830aaf029d06e9 (patch)
treeba266e57dad24525c3801e287d2ebabac7261893 /share/functions
parentb85a8bbbfed56f603dca5d6da85858f9c973b669 (diff)
Add __fish_sgrep
Missed in b85a8bb because of `git commit -a`. Fixes #2372
Diffstat (limited to 'share/functions')
-rw-r--r--share/functions/__fish_sgrep.fish5
1 files changed, 5 insertions, 0 deletions
diff --git a/share/functions/__fish_sgrep.fish b/share/functions/__fish_sgrep.fish
new file mode 100644
index 00000000..36c77389
--- /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