Script:1797
Talk0
1,599pages on
this wiki
this wiki
Revision as of 08:27, May 15, 2012 by JohnBeckett (Talk | contribs)
Use this page to discuss script 1797 svnvimdiff: svn diff + vimdiff
- Add constructive comments, bug reports, or discuss improvements (see the guideline).
- Do not document the script here (the author should do that on vim.org).
- This page may be out of date: check the script's vim.org page above, and its release notes.
Patch for tempfile
Edit
The svnvimdiff script requires tempfile command. But it doesn't exist in my CentOS and FreeBSD system. So I modified the script:
#patch=`tempfile -p $suffix` #orig=`tempfile -p $suffix` patch=`mktemp -t $suffix.XXXXXXXXXX` orig=`mktemp -t $suffix.XXXXXXXXXX`