Fix rhbz #1173924
parent
547de75695
commit
896ea832e0
@ -0,0 +1,28 @@
|
|||||||
|
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
|
||||||
|
|
@ -0,0 +1,29 @@
|
|||||||
|
From 190cac07a3ff7cd2c65ac24b600808e7c1674412 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Adam <zanchey@ucc.gu.uwa.edu.au>
|
||||||
|
Date: Tue, 25 Nov 2014 08:48:10 +0800
|
||||||
|
Subject: [PATCH] grep.fish: don't set GREP_COLOR
|
||||||
|
|
||||||
|
grep will fall back to the default colors.
|
||||||
|
|
||||||
|
Closes #1316.
|
||||||
|
---
|
||||||
|
share/functions/grep.fish | 3 ---
|
||||||
|
1 file changed, 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/share/functions/grep.fish b/share/functions/grep.fish
|
||||||
|
index cd7c31baffcf..73f21922dc6f 100644
|
||||||
|
--- a/share/functions/grep.fish
|
||||||
|
+++ b/share/functions/grep.fish
|
||||||
|
@@ -3,9 +3,6 @@
|
||||||
|
#
|
||||||
|
|
||||||
|
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
|
||||||
|
function grep
|
||||||
|
command grep --color=auto $argv
|
||||||
|
end
|
||||||
|
--
|
||||||
|
2.1.0
|
||||||
|
|
Loading…
Reference in new issue