aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-05-28 05:45:44 +0000
committerBlaž Hrastnik2020-05-28 05:45:44 +0000
commitb5c38812e923581a31eb5d38ddb96d44afd6505d (patch)
tree815aaf51e0ce1420d2a13d5961e663f4f2be29ac /helix-core/src/lib.rs
parent23109f15129e3c3e89181164197c384861324b48 (diff)
address clippy warnings
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index 7b584401..e027f943 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -3,6 +3,9 @@ mod selection;
mod state;
mod transaction;
+pub use ropey::Rope;
+pub use tendril::StrTendril as Tendril;
+
pub use buffer::Buffer;
pub use selection::Range as SelectionRange;