prezto/modules/utility/functions/make
2012-06-10 20:04:55 -04:00

18 lines
264 B
Plaintext

#
# Highlights make output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function make {
if zstyle -t ':omz:module:utility:make' color; then
if (( $+commands[colormake] )); then
colormake "$@"
fi
else
command make "$@"
fi
}