aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorJan Hrastnik2021-06-16 15:05:14 +0000
committerJan Hrastnik2021-06-16 15:05:14 +0000
commit5eb69183926ab2f781aa08abf587ba338027854b (patch)
treea2da3255e2d45f1db47abe05aa542d7c7a15bcd8 /helix-core/src/lib.rs
parent17f69a03e0bd6c7bee7e26237dc47dfa0e0dd7c9 (diff)
resolved conflict in rebase
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index 91d2bee0..bc25b1be 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -6,6 +6,7 @@ pub mod diagnostic;
pub mod graphemes;
pub mod history;
pub mod indent;
+pub mod line_ending;
pub mod macros;
pub mod match_brackets;
pub mod movement;
@@ -109,4 +110,5 @@ pub use syntax::Syntax;
pub use diagnostic::Diagnostic;
pub use state::State;
+pub use line_ending::{auto_detect_line_ending, default_line_ending, LineEnding};
pub use transaction::{Assoc, Change, ChangeSet, Operation, Transaction};