aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/grep.fish
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-11-25 08:48:10 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-11-25 08:48:16 +0800
commit190cac07a3ff7cd2c65ac24b600808e7c1674412 (patch)
treed57a1a0f5fd0afc6044547a6c631eeabc31e6396 /share/functions/grep.fish
parentefc3846fcfa6f0bae8312645c41b132c6156b3d1 (diff)
grep.fish: don't set GREP_COLOR
grep will fall back to the default colors. Closes #1316.
Diffstat (limited to 'share/functions/grep.fish')
-rw-r--r--share/functions/grep.fish3
1 files changed, 0 insertions, 3 deletions
diff --git a/share/functions/grep.fish b/share/functions/grep.fish
index cd7c31ba..73f21922 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