20 lines
275 B
Plaintext
20 lines
275 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
|
|
}
|
|
|
|
make "$@"
|
|
|