diff options
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index f9e987a6..c7c020d6 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -1,5 +1,4 @@ #![allow(unused)] -mod buffer; pub mod commands; mod graphemes; mod selection; @@ -9,8 +8,6 @@ mod transaction; pub use ropey::{Rope, RopeSlice}; pub use tendril::StrTendril as Tendril; -pub use buffer::Buffer; - pub use selection::Range as SelectionRange; pub use selection::Selection; |