Vim Tips Wiki
Advertisement

Duplicate tip

This tip is very similar to the following:

These tips need to be merged – see the merge guidelines.

Previous TipNext Tip

Tip: #818 - Integrate Vim diff with TortoiseCVS

Created: November 9, 2004 13:01 Complexity: basic Author: Alejandro Calbazana Version: 5.7 Karma: 20/8 Imported from: Tip#818

Under Windows, you can use TortoiseCVS along with Vim/GVim as the diff tool of choice:

1. Create a .bat file containing the following and put it in your path:

@echo off
"C:\Program Files\Vim\vim63\GVim.exe" -d %1 %2

2. Add this .bat file as the diff utility under TortoiseCVS->Preferences->Tools->External Diff Application.

Comments

You don't have to create a .bat file to do this.

  1. Just enter "C:\Program Files\Vim63\GVim.exe" as "Diff application".
  2. Set "Two-way diff parameters" as -d "%1" "%2".

Not that vim isn't good at diff'ing, but I use ExamDiff Pro (http://www.prestosoft.com) for Diff-ing with TortoiseCVS.. Not free, but the display/ease of merging is great.


I use WinMerge (http://www.winmerge.org). It's great.


I'm using Meta-Diff (see http://meta-diff.sourceforge.net/). It's configured to use Vim for source files, Examdiff for other text files, CSDiff for Word documents etc. :)


Advertisement