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

if echo | command grep --color=auto "" >/dev/null 2>&1
	function grep
		command grep --color=auto $argv
	end
end