diff options
author | Robby Russell <robby@planetargon.com> | 2011-04-12 10:19:15 +0200 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-04-12 10:19:15 +0200 |
commit | b3a78d2b287cc9789d1c791a91448c40dcab2e23 (patch) | |
tree | 627d3fdb16132833f314966b0c3241b61804d1da /plugins | |
parent | d11fb9d47c85b623831919f1910dd862e600c63d (diff) | |
download | zsh-b3a78d2b287cc9789d1c791a91448c40dcab2e23.tar.gz zsh-b3a78d2b287cc9789d1c791a91448c40dcab2e23.tar.bz2 zsh-b3a78d2b287cc9789d1c791a91448c40dcab2e23.zip |
Using git-diff instead of git diff
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 85eabced0..bc340e86b 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -9,7 +9,7 @@ alias gup='git fetch && git rebase' compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push -gdv() { git diff -w "$@" | view - } +gdv() { git-diff -w "$@" | view - } compdef _git gdv=git-diff alias gc='git commit -v' compdef _git gc=git-commit |