2012-06-03 14:16:47 -04:00
|
|
|
#
|
|
|
|
# Highlights make output.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-06-03 17:53:02 -04:00
|
|
|
function make {
|
|
|
|
if zstyle -t ':omz:module:utility:make' color; then
|
2012-06-03 14:16:47 -04:00
|
|
|
if (( $+commands[colormake] )); then
|
|
|
|
colormake "$@"
|
2012-06-13 14:08:57 -04:00
|
|
|
else
|
|
|
|
command make "$@"
|
2012-06-03 14:16:47 -04:00
|
|
|
fi
|
2012-06-03 17:53:02 -04:00
|
|
|
else
|
|
|
|
command make "$@"
|
|
|
|
fi
|
|
|
|
}
|
2012-06-03 14:16:47 -04:00
|
|
|
|
2012-06-13 12:34:06 -04:00
|
|
|
make "$@"
|
|
|
|
|