1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 13:30:28 +00:00

Fix gdv: make it a function, and use view.

I've changed it to use `view` instead of `vim -R` to make it hopefully
more editor-agnostic.
This commit is contained in:
Daniel Hahler 2011-04-04 00:54:43 +02:00
parent bb609fce12
commit d15d88cf81

View File

@ -12,7 +12,7 @@ compdef _git gp=git-push
alias gd='git diff | mate' alias gd='git diff | mate'
# WTF is mate?? # WTF is mate??
compdef _git gd=git-diff compdef _git gd=git-diff
alias gdv='git diff -w "$@" | vim -R -' gdv() { git diff -w "$@" | view - }
compdef gdv=git compdef gdv=git
alias gc='git commit -v' alias gc='git commit -v'
compdef gc=git compdef gc=git