In my project regression settings, output file have statement like
"diff between foo.txt and bar.txt found"
Now I need to take vimdiff between foo.txt and bar.txt. Can I do it from output file opened in vim only?
currently I need to first open my output file in vim. Then I need to select line specifying diff found. after it return to shell. then take vimdiff b/w this files.
If you had no file opened or an unmodified buffer:
To open diffs in a new tab,
would be very convenient
To get things automated, I'd consider
Notes:
&
:gvim -d "$file1" "$file2"&
You can also get all diffs to open in separate tabs in a single vim: