You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
781 B
29 lines
781 B
10 years ago
|
From efc3846fcfa6f0bae8312645c41b132c6156b3d1 Mon Sep 17 00:00:00 2001
|
||
|
From: David Adam <zanchey@ucc.gu.uwa.edu.au>
|
||
|
Date: Tue, 25 Nov 2014 08:47:30 +0800
|
||
|
Subject: [PATCH] grep.fish: don't use GREP_OPTIONS as it is deprecated
|
||
|
|
||
|
Closes #1825.
|
||
|
---
|
||
|
share/functions/grep.fish | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/share/functions/grep.fish b/share/functions/grep.fish
|
||
|
index b0dc9586ce21..cd7c31baffcf 100644
|
||
|
--- a/share/functions/grep.fish
|
||
|
+++ b/share/functions/grep.fish
|
||
|
@@ -6,8 +6,8 @@ if command grep --color=auto --help 1>/dev/null 2>/dev/null
|
||
|
if not set -q GREP_COLOR
|
||
|
set -gx GREP_COLOR '97;45'
|
||
|
end
|
||
|
- if not set -q GREP_OPTIONS
|
||
|
- set -gx GREP_OPTIONS --color=auto
|
||
|
+ function grep
|
||
|
+ command grep --color=auto $argv
|
||
|
end
|
||
|
end
|
||
|
|
||
|
--
|
||
|
2.1.0
|
||
|
|