aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-07 02:28:52 +0000
committerBlaž Hrastnik2020-09-07 02:28:52 +0000
commit8b3e152126ec8f0e67dad378dc62c734ea97a4b0 (patch)
tree5109f5fb4a7709eafd2fb3b493c6e7d56e269e5a /helix-core/src/lib.rs
parent579b6899f1fe7f0a06857c4528f55f316e2975e9 (diff)
cleanup: Make Buffer just a part of State.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs3
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;