diff options
author | Blaž Hrastnik | 2020-06-05 05:02:10 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-06-05 05:04:30 +0000 |
commit | 10d53f3ef0f519dc6b55f8a882a32ec7b1c4e4e1 (patch) | |
tree | ed3215931ef256ad80ee123e03f59ba1a8c31fd9 /helix-core/src/lib.rs | |
parent | 387fb57c94a5269b5ff560891fdee53a2f3fc554 (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.rs | 2 |
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; |