From 0c4679f8923a4fa766f7e4d2edd73601d33de27f Mon Sep 17 00:00:00 2001 From: Sharun <715417+sharunkumar@users.noreply.github.com> Date: Thu, 25 Jan 2024 03:16:42 -0500 Subject: [PATCH] bugfix: fix LineEnding for windows --- crates/text/src/text.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/text/src/text.rs b/crates/text/src/text.rs index fd23d3dca4..acc170a508 100644 --- a/crates/text/src/text.rs +++ b/crates/text/src/text.rs @@ -2634,7 +2634,7 @@ impl Default for LineEnding { return Self::Unix; #[cfg(not(unix))] - return Self::CRLF; + return Self::Windows; } }