[#149] Move diff, wdiff, make into their own files
This commit is contained in:
parent
aa36596287
commit
45ab153c64
23
modules/utility/functions/diff
Normal file
23
modules/utility/functions/diff
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#
|
||||||
|
# Highlights diff output.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
|
#
|
||||||
|
|
||||||
|
if zstyle -t ':omz:module:utility:diff' color; then
|
||||||
|
function diff {
|
||||||
|
if (( $+commands[colordiff] )); then
|
||||||
|
"$commands[diff]" --unified "$@" | colordiff --difftype diffu
|
||||||
|
elif (( $+commands[git] )); then
|
||||||
|
git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
|
||||||
|
else
|
||||||
|
"$commands[diff]" --unified "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
else
|
||||||
|
unfunction diff
|
||||||
|
fi
|
||||||
|
|
||||||
|
diff --unified "$@"
|
||||||
|
|
21
modules/utility/functions/make
Normal file
21
modules/utility/functions/make
Normal 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 "$@"
|
||||||
|
|
30
modules/utility/functions/wdiff
Normal file
30
modules/utility/functions/wdiff
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#
|
||||||
|
# Highlights wdiff output.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
|
#
|
||||||
|
|
||||||
|
if zstyle -t ':omz:module:utility:wdiff' color; then
|
||||||
|
function wdiff {
|
||||||
|
if (( $+commands[wdiff] )); then
|
||||||
|
"$commands[wdiff]" \
|
||||||
|
--avoid-wraps \
|
||||||
|
--start-delete="$(print -n $FG[red])" \
|
||||||
|
--end-delete="$(print -n $FG[none])" \
|
||||||
|
--start-insert="$(print -n $FG[green])" \
|
||||||
|
--end-insert="$(print -n $FG[none])" \
|
||||||
|
"$@" \
|
||||||
|
| sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g'
|
||||||
|
elif (( $+commands[git] )); then
|
||||||
|
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
|
||||||
|
else
|
||||||
|
print "zsh: command not found: $0" >&2
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
else
|
||||||
|
unfunction wdiff
|
||||||
|
fi
|
||||||
|
|
||||||
|
wdiff "$@"
|
||||||
|
|
@ -107,47 +107,6 @@ else
|
|||||||
alias topc='top -o cpu'
|
alias topc='top -o cpu'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Diff
|
|
||||||
if zstyle -t ':omz:module:utility:diff' color; then
|
|
||||||
function diff {
|
|
||||||
if (( $+commands[colordiff] )); then
|
|
||||||
"$commands[diff]" --unified "$@" | colordiff --difftype diffu
|
|
||||||
elif (( $+commands[git] )); then
|
|
||||||
git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
|
|
||||||
else
|
|
||||||
"$commands[diff]" --unified "$@"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function wdiff {
|
|
||||||
if (( $+commands[wdiff] )); then
|
|
||||||
"$commands[wdiff]" \
|
|
||||||
--avoid-wraps \
|
|
||||||
--start-delete="$(print -n $FG[red])" \
|
|
||||||
--end-delete="$(print -n $FG[none])" \
|
|
||||||
--start-insert="$(print -n $FG[green])" \
|
|
||||||
--end-insert="$(print -n $FG[none])" \
|
|
||||||
"$@" \
|
|
||||||
| sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g'
|
|
||||||
elif (( $+commands[git] )); then
|
|
||||||
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
|
|
||||||
else
|
|
||||||
print "zsh: command not found: $0" >&2
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Make
|
|
||||||
if zstyle -t ':omz:module:utility:make' color; then
|
|
||||||
function make {
|
|
||||||
if (( $+commands[colormake] )); then
|
|
||||||
colormake "$@"
|
|
||||||
else
|
|
||||||
"$commands[make]" "$@"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
if (( $+commands[ack] )) alias afind='nocorrect ack'
|
if (( $+commands[ack] )) alias afind='nocorrect ack'
|
||||||
if (( $+commands[ebuild] )) alias ebuild='nocorrect ebuild'
|
if (( $+commands[ebuild] )) alias ebuild='nocorrect ebuild'
|
||||||
|
Reference in New Issue
Block a user