1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-21 04:36:13 +00:00
prezto/modules/utility/functions/make

18 lines
264 B
Plaintext
Raw Normal View History

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