Skip to content

Commit

Permalink
feat(FormStatusOutputLog): Normalize line endings
Browse files Browse the repository at this point in the history
and vertical tabs

Refs: gitextensions#10307
  • Loading branch information
mstv committed Jun 4, 2024
1 parent 89ebe3d commit c664c45
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/GitUI/FormStatusOutputLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public void Append(string text)
throw new ArgumentNullException(nameof(text));
}

text = text.Replace('\v', '\n').ReplaceLineEndings();
lock (_outputString)
{
_outputString.Append(text);
Expand Down

0 comments on commit c664c45

Please sign in to comment.