Skip to content

Commit e34ae5b

Browse files
committed
Add IndentHeuristic option to CompareOptions
1 parent e5fdf1b commit e34ae5b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

LibGit2Sharp/CompareOptions.cs

+6
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ public CompareOptions()
4444
/// By default, <see cref="DiffAlgorithm.Myers"/> will be used.
4545
/// </summary>
4646
public DiffAlgorithm Algorithm { get; set; }
47+
48+
/// <summary>
49+
/// Enable --indent-heuristic Diff option, that attempts to produce more aesthetically pleasing diffs.
50+
/// By default, this option will be false.
51+
/// </summary>
52+
public bool IndentHeuristic { get; set; }
4753
}
4854
}

0 commit comments

Comments
 (0)