I needed to check the differences between 4 files. I wanted something like sdiff, but better UX. After a bit of looking around, turns out the right answer has been staring me in the face. vim ships with that ability out of the box!

vim -d file-A file-B file-C file-D

That’s it! 🤯