Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emacs technique for comparing sections of documents?

Tags:

I'd like to be able to open two windows in Emacs, select a region of text in each window, and get a comparison of the difference between the two selections.

This would be very handy for a large-scale maintenance project, where I'm working on a version tree with multiple branches, lots of copy/paste, and code that is being moved around sporadically.

I've found a paid-for tool that does provide this function (Ultracompare), but it's windows-specific, and I need a solution that runs on Solaris/Linux.

like image 536
gmc444 Avatar asked Oct 13 '10 21:10

gmc444


1 Answers

I think M-x ediff-regions-wordwise does what you want.

Run ediff-regions-wordwise and Emacs will prompt for each buffer, then prompt you to select (or confirm) a region in the buffer.

And, bonus, Emacs runs on Windows too!

like image 167
Dave Bacher Avatar answered Oct 21 '22 09:10

Dave Bacher