From c664c4527083217a6f2813d792cf55650015f77b Mon Sep 17 00:00:00 2001 From: Michael Seibt Date: Thu, 25 Jan 2024 21:29:44 +0100 Subject: [PATCH] feat(FormStatusOutputLog): Normalize line endings and vertical tabs Refs: #10307 --- src/app/GitUI/FormStatusOutputLog.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/GitUI/FormStatusOutputLog.cs b/src/app/GitUI/FormStatusOutputLog.cs index 56f177b39ea..2c290978c7a 100644 --- a/src/app/GitUI/FormStatusOutputLog.cs +++ b/src/app/GitUI/FormStatusOutputLog.cs @@ -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);