aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/grep.fish
blob: 60e83b204a2f6c9d1af9f5ac30ac9756e89721cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Match colors for grep, if supported
#

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