get colorful side-by-side diffs of files in svn with vim
My Clippings September 4th, 2009 by System
Automatically pulled from My Clippings on NewsGator Online
$ vimdiff <(svn cat "$1") "$1"
This will diff your local version of the file with the latest version in svn. I put this in a shell function like so:
svd() { vimdiff <(svn cat "$1") "$1"; }
by David Winterbottom (codeinthehole.com)

