1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 20:49:44 +00:00
prezto/modules/utility/functions/make
2012-06-13 14:50:05 -04:00

22 lines
308 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 "$@"
else
command make "$@"
fi
else
command make "$@"
fi
}
make "$@"