diff options
-rw-r--r-- | helix-core/src/line_ending.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/line_ending.rs b/helix-core/src/line_ending.rs index 809dffc0..bcfecaf6 100644 --- a/helix-core/src/line_ending.rs +++ b/helix-core/src/line_ending.rs @@ -62,4 +62,4 @@ pub fn auto_detect_line_ending(doc: &Rope) -> Option<LineEnding> { #[cfg(target_os = "windows")] pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::Crlf; #[cfg(not(target_os = "windows"))] -pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::Lf;
\ No newline at end of file +pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::LF;
\ No newline at end of file |