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

if command grep --color=auto --help 1>/dev/null 2>/dev/null
	function grep
		command grep --color=auto $argv
	end
end