configs  Artifact [ffd6c6c5b2]

Artifact ffd6c6c5b265636a30f432b018b4a86f479e83c609a3c8d005bf7797f379c72c:

  • File config/fish/functions/fgrep.fish — part of check-in [c22a3e608c] at 2020-01-22 21:38:13 on branch trunk — fish: Slightly change command and operator color

    This is the exact same color in Apple Terminal, but improves legibility
    in Gnome Terminal.

    Also silences stderr from which. (user: js size: 134)


function fgrep
	if which ggrep >/dev/null ^&1
		command ggrep -F --color=auto $argv
	else
		command fgrep --color=auto $argv
	end
end