diffy icon indicating copy to clipboard operation
diffy copied to clipboard

Tools for finding and manipulating differences between files

Results 21 diffy issues
Sort by recently updated
recently updated
newest added

Hi, First of all, thanks a lot for writing diffy. I appreciate this this tool a lot! I started using it and I miss the ability to specify the original...

I want `--fuzzy` option in patch

The patch program tries to apply all hunks even if some hunk fails and outputs applied data and failed hunk list.

At the moment, in order to create a patch from two files, both of these files must be read and copied into memory at the same time, then a reference...

Right now users are unable to set their own filenames, which appear when displaying a patch or when a merge has conflicts. There should be some interface which makes it...

Usually while comparing Strings, this warning comes up. This is fine when we compare files, still there should be a way to suppress this warning. Here is a similar issue...

Within the documentation most parameters are described as `file`. But it seems like the parameters are actually `strings` (at least in many cases). I think it makes sense to update...

Closes #23 Depends on #22

E.g.: ``` rust let patch = create_file_patch(&original, &modified, original_filename.as_str(), modified_filename.as_str()); ```