1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-02-08 19:25:21 +00:00

22 lines
311 B
Plaintext
Raw Normal View History

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