diff options
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index bd5f8012..5f61f05a 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -76,7 +76,7 @@ pub struct Document { diagnostics: Vec<Diagnostic>, language_server: Option<Arc<helix_lsp::Client>>, - line_ending: LineEnding, + pub line_ending: LineEnding, } use std::fmt; |