aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-06-05 05:02:10 +0000
committerBlaž Hrastnik2020-06-05 05:04:30 +0000
commit10d53f3ef0f519dc6b55f8a882a32ec7b1c4e4e1 (patch)
treeed3215931ef256ad80ee123e03f59ba1a8c31fd9 /helix-core/src/lib.rs
parent387fb57c94a5269b5ff560891fdee53a2f3fc554 (diff)
Add primitives for converting between char offset indices and coords.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index 8675fc6f..7a0518d8 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -5,7 +5,7 @@ mod selection;
mod state;
mod transaction;
-pub use ropey::Rope;
+pub use ropey::{Rope, RopeSlice};
pub use tendril::StrTendril as Tendril;
pub use buffer::Buffer;