3

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?

Geier
  • 722
  • 5
  • 15

1 Answers1

3

You can try with the diffview package: https://github.com/emacsmirror/diffview

configuration

(require 'diffview)

execution

M-x diffview-current

djangoliv
  • 3,199
  • 16
  • 32