Note that there are some explanatory texts on larger screens.

plurals
  1. POView "cvs diff" output in two columns with vim
    primarykey
    data
    text
    <p>I have "cvs diff" output (for all files in project) in unified diff format. Format could be like this:</p> <pre><code>Index: somefile.cpp =================================================================== RCS file: /CVS_repo/SomeProject/somefile.cpp,v retrieving revision 1.19 diff -r1.19 somefile.cpp 31c31 &lt; return "Read line four times"; --- &gt; return "Read line five times"; 36c36 &lt; return "Make a bad thing"; --- &gt; return "Make a good thing"; Index: otherfile.cpp =================================================================== RCS file: /CVS_repo/SomeProject/otherfile.cpp,v retrieving revision 1.19 &lt; ........ --- &gt; ........ </code></pre> <p>or even like this:</p> <pre><code>Index: somefile.cpp =================================================================== RCS file: /CVS_repo/SomeProject/somefile.cpp,v retrieving revision 1.19 diff -u -r1.19 somefile.cpp --- somefile.cpp 13 Mar 2013 08:45:18 -0000 1.19 +++ somefile.cpp 26 Mar 2013 08:10:33 -0000 @@ -28,12 +28,12 @@ //--------------------------------------------------------------------------- extern "C" char *FuncGetSomeText() { - return "Read line four times"; + return "Read line five times"; } //--------------------------------------------------------------------------- extern "C" char *FuncGetAwesomeText() { - return "Make a bad thing"; + return "Make a good thing"; } //--------------------------------------------------------------------------- Index: otherfile.cpp =================================================================== RCS file: /CVS_repo/SomeProject/otherfile.cpp,v retrieving revision 1.19 diff -u -r1.19 otherfile.cpp --- otherfile.cpp 13 Mar 2013 08:45:18 -0000 1.19 +++ otherfile.cpp 26 Mar 2013 08:10:33 -0000 @@ -28,12 +28,12 @@ //--------------------------------------------------------------------------- extern "C" char *Func() { - ....... + ....... } //--------------------------------------------------------------------------- </code></pre> <p>Is there any way to view this text side-by-side with vim? Or maybe it's possible to change default diff tool in cvs to vimdiff?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload