I use the version control system fossil. I'd like to view fossil diff
's output side-by-side in Emacs. The output looks like this:
$ fossil diff
Index: test1.txt
==================================================================
--- test1.txt
+++ test1.txt
@@ -1,1 +1,1 @@
-Old text
+New text
Index: test2.txt
==================================================================
--- test2.txt
+++ test2.txt
@@ -1,1 +1,1 @@
-Old text 2
+New text 2
Is there a way to display this output side-by-side, perhaps with ediff?
fossil diff
output. – Geier Sep 23 '15 at 06:58