Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any n-way diff tools with vertical compare?

I started using diffuse, which you can use to compare multiple files together with, but it's some what useless since you can't horizontally compare lines when you have like 20 files you need to compare together, I was thinking maybe one line from all twenty files displayed horizontally.

like image 789
leeand00 Avatar asked Nov 05 '22 14:11

leeand00


1 Answers

The editor Vim can do what you are asking. It's a traditionally UNIX program that has been ported to nearly every operating system under the sun, and it's free - yay. In gVim:

  1. Open file A
  2. Choose File -> Split Diff with... and select file B
  3. Choose File -> Split Diff with... and select file C

etc.

like image 81
ArIck Avatar answered Nov 11 '22 15:11

ArIck