diff options
author | Gavin Huang <gravof@gmail.com> | 2011-10-18 11:46:45 +0800 |
---|---|---|
committer | Gavin Huang <gravof@gmail.com> | 2011-10-18 11:46:45 +0800 |
commit | 7553d0171f7d1fe070a70af2c863fdadf6d7d5ac (patch) | |
tree | 2dfcfcc882b2f9b33f2d64a1ed58bd7cb5c5af6f /plugins | |
parent | 757fa3314d1c041ab715dbda838f3e9b2ff9ce17 (diff) | |
download | zsh-7553d0171f7d1fe070a70af2c863fdadf6d7d5ac.tar.gz zsh-7553d0171f7d1fe070a70af2c863fdadf6d7d5ac.tar.bz2 zsh-7553d0171f7d1fe070a70af2c863fdadf6d7d5ac.zip |
Replace "git-diff" with "git diff" in the git plugin
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 183c56c1c..89b3259fe 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 |