diff options
author | Shafkath Shuhan | 2021-06-23 06:03:34 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-23 06:40:27 +0000 |
commit | fd98e743e888e8fbddf4987213afbb19dd148fd7 (patch) | |
tree | 084b7ccccb5b9ddac506c157a57fc99747ffd0f7 /helix-core/src | |
parent | 9706f1121de673950d8e0472062a32f18d527ad2 (diff) |
Handle non-UTF8 files
Diffstat (limited to 'helix-core/src')
-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 7d51f88c..ae135b00 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -101,7 +101,7 @@ pub use etcetera::home_dir; use etcetera::base_strategy::{choose_base_strategy, BaseStrategy}; -pub use ropey::{Rope, RopeSlice}; +pub use ropey::{Rope, RopeBuilder, RopeSlice}; pub use tendril::StrTendril as Tendril; |