Browse Source

[#149] Simplify diff, wdiff, make

master
Sorin Ionescu 12 years ago
parent
commit
761ba12813
  1. 12
      modules/utility/functions/diff
  2. 10
      modules/utility/functions/make
  3. 12
      modules/utility/functions/wdiff

12
modules/utility/functions/diff

@ -5,19 +5,15 @@
# Sorin Ionescu <sorin.ionescu@gmail.com> # Sorin Ionescu <sorin.ionescu@gmail.com>
# #
if zstyle -t ':omz:module:utility:diff' color; then
function diff { function diff {
if zstyle -t ':omz:module:utility:diff' color; then
if (( $+commands[colordiff] )); then if (( $+commands[colordiff] )); then
"$commands[diff]" --unified "$@" | colordiff --difftype diffu command diff --unified "$@" | colordiff --difftype diffu
elif (( $+commands[git] )); then elif (( $+commands[git] )); then
git --no-pager diff --color=auto --no-ext-diff --no-index "$@" git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
else
"$commands[diff]" --unified "$@"
fi fi
}
else else
unfunction diff command diff --unified "$@"
fi fi
}
diff --unified "$@"

10
modules/utility/functions/make

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

12
modules/utility/functions/wdiff

@ -5,10 +5,10 @@
# Sorin Ionescu <sorin.ionescu@gmail.com> # Sorin Ionescu <sorin.ionescu@gmail.com>
# #
if zstyle -t ':omz:module:utility:wdiff' color; then
function wdiff { function wdiff {
if zstyle -t ':omz:module:utility:wdiff' color; then
if (( $+commands[wdiff] )); then if (( $+commands[wdiff] )); then
"$commands[wdiff]" \ command wdiff \
--avoid-wraps \ --avoid-wraps \
--start-delete="$(print -n $FG[red])" \ --start-delete="$(print -n $FG[red])" \
--end-delete="$(print -n $FG[none])" \ --end-delete="$(print -n $FG[none])" \
@ -18,13 +18,9 @@ if zstyle -t ':omz:module:utility:wdiff' color; then
| sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g' | sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g'
elif (( $+commands[git] )); then elif (( $+commands[git] )); then
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@" git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
else
print "zsh: command not found: $0" >&2
fi fi
}
else else
unfunction wdiff command wdiff "$@"
fi fi
}
wdiff "$@"

Loading…
Cancel
Save