1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 10:51:41 +00:00

[#149] Move diff, wdiff, make into their own files

This commit is contained in:
Sorin Ionescu
2012-06-03 14:16:47 -04:00
parent aa36596287
commit 45ab153c64
4 changed files with 74 additions and 41 deletions

View File

@ -0,0 +1,21 @@
#
# Highlights make output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
if zstyle -t ':omz:module:utility:make' color; then
function make {
if (( $+commands[colormake] )); then
colormake "$@"
else
"$commands[make]" "$@"
fi
}
else
unfunction make
fi
make "$@"