make 259 B

123456789101112131415161718
  1. #
  2. # Highlights make output.
  3. #
  4. # Authors:
  5. # Sorin Ionescu <sorin.ionescu@gmail.com>
  6. #
  7. # function make {
  8. if zstyle -t ':prezto:module:utility:make' color \
  9. && (( $+commands[colormake] )); then
  10. command colormake "$@"
  11. else
  12. command make "$@"
  13. fi
  14. # }