1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-08 23:53:52 +00:00
prezto/modules/utility/functions/make
2012-06-13 14:09:57 -04:00

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 "$@"