configs  Artifact [39b2ede27d]

Artifact 39b2ede27d7514af24b886cd3405d7d64968bb89a663adf342c486252964d07c:

  • File config/fish/functions/make.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: 272)


# Automatically use bmake instead of make when using pkgsrc
function make
	if which bmake >/dev/null ^&1 && \
	    string match -q -r '/pkgsrc$|/pkgsrc/' $PWD
		# pkgsrc does not like MAKEFLAGS including -j
		env MAKEFLAGS= bmake $argv
	else
		command make $argv
	end
end