grep.fish: don't set GREP_COLOR

grep will fall back to the default colors.

Closes #1316.
This commit is contained in:
David Adam 2014-11-25 08:48:10 +08:00
parent efc3846fcf
commit 190cac07a3

View File

@ -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