I would really like a smarter "compare by content" function, which is able to show the real differences for big files. The problem is that I often have to handle those large files while developing, and from time to time I need to know, for example, which bits/bytes changed from one file to another. A simple "the files differ" is not enough in that case.
would it be possible to implement something like that? It would perfectly okay if it would only work in binary mode but not in text mode.
Then you could, for example, read a 64k block around the differing file position and display that. I imagine that for text mode comparisons, you'd have to start parsing backwards/forwards for linefeeds, which probably isn't very straightforward to do
