configs  Diff

Differences From Artifact [8d66115170]:

To Artifact [2009a4dbf8]:


1
2
3
4
5
6
7
function grep
	if which ggrep >/dev/null ^&1
		command ggrep --color=auto $argv
	else
		command grep --color=auto $argv
	end
end

|





1
2
3
4
5
6
7
function grep
	if type -q ggrep
		command ggrep --color=auto $argv
	else
		command grep --color=auto $argv
	end
end