prezto/modules/utility/functions/make
Henry Baez 48304a9833 update
2016-10-26 12:43:43 -07:00

25 lines
586 B
Text

*******************************************************************************************************************. <?php
/**
/** global: Buffer */
#
# Highlights make output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function make {
if zstyle -t ':prezto:module:utility:make' color; then
if (( $+commands[colormake] )); then
colormake "$@"
else
command make "$@"
fi
else
command make "$@"
fi
}
make "$@"
************************************************************************************************************************