2012-06-03 20:16:47 +02:00
|
|
|
#
|
|
|
|
# Highlights make output.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2021-05-10 23:35:26 +02:00
|
|
|
# function make {
|
2012-06-03 20:16:47 +02:00
|
|
|
|
2021-05-10 23:35:26 +02:00
|
|
|
if zstyle -t ':prezto:module:utility:make' color \
|
|
|
|
&& (( $+commands[colormake] )); then
|
|
|
|
command colormake "$@"
|
|
|
|
else
|
|
|
|
command make "$@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# }
|