init
This commit is contained in:
20
.zprezto/modules/utility/functions/make
Normal file
20
.zprezto/modules/utility/functions/make
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# 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 "$@"
|
Reference in New Issue
Block a user