diff options
author | Jan Hrastnik | 2021-06-14 13:09:54 +0000 |
---|---|---|
committer | Jan Hrastnik | 2021-06-16 15:13:41 +0000 |
commit | a4f5a0134e308ffad318ab6920fe1ed0264a93cb (patch) | |
tree | ae7ffa85fd3413e0fafc53443c98d6ddae34149c /helix-view/src | |
parent | a9a718c3cad3af7b9fa38cd1aaa6ceb6c7126130 (diff) |
trying out line ending helper functions in commands.rs
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; |