diffplex
diffplex copied to clipboard
DiffPlex is Netstandard 1.0+ C# library to generate textual diffs.
Please add a ToString override or [DebuggerDisplay] on the Model.DiffPiece e.g. $"Pos:{Pos,-6} Subs:{SubPieces.Count,-6} {Type,-16} {Text}" Then expanding a DiffPaneModel's Lines would actually show most of what you need.
Is there a way to include Subpieces in InlineDiffBuilder? I'm trying to create inline diff view but I want to higlight the changes on word level instead of line level....
I have been looking at the results that the side by side diff model returns. I have noticed that the position of modifications / imaginary lines on both sides appears...
Hi, I am using Visual Studio 2019 on Windows 10 and try to compile and run the WebDiffer project on browser but it just keeps loading forever. I changed the...
For example, I would like comparing "foo bar baz" and "foo bar fizz bazinga" to show a diff with inserting "fizz" and "inga", rather than inserting "fi" and "zinga". In...
We know deleted, inserted, and modified lines for now. Is there any way to understand moved lines also? like notepad++ compare plugin
Using ASP.NET Core 3.1.8 Deployed website of DiffPlex to IIS but keep seeing: `HTTP Error 500.37 - ANCM Failed to Start Within Startup Time Limit.` I've also increased `requestTimeout` in...
Old Text: "The blue aircraft shall, as soon as" New Text: "The aircraft of WW2 era shall, as soon as" It marks word "aircraft" as deleted in Old Text and...
I'm trying the following code snippet: ``` var prev = "a b"; var current = "a b c"; var differ = new Differ(); var result = differ.CreateWordDiffs(prev, current, false, new...
I'm trying to understand the semantics of word to word diff in diffplex w.r.t. wdiff. Output from wdiff: > ➜ git:(diffplex) ✗ echo "a b" > /tmp/a.txt > ➜ git:(diffplex)...